diff options
| author | LLLL Colonq <llll@colonq> | 2026-05-28 20:16:38 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-05-28 20:16:38 -0400 |
| commit | fa4d63110a3e12d0242b6e6ddcded74d04480f28 (patch) | |
| tree | 330e6ccfe650f1fd9143f9db67b481d4c74a2e05 /2026/examples/raylib/nix/flake.nix | |
Initial commit
Diffstat (limited to '2026/examples/raylib/nix/flake.nix')
| -rw-r--r-- | 2026/examples/raylib/nix/flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2026/examples/raylib/nix/flake.nix b/2026/examples/raylib/nix/flake.nix new file mode 100644 index 0000000..d51dd3a --- /dev/null +++ b/2026/examples/raylib/nix/flake.nix @@ -0,0 +1,17 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + }; + + outputs = { self, nixpkgs, ... }@inputs: + let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in { + devShells.x86_64-linux.default = pkgs.mkShell { + buildInputs = [ + pkgs.emscripten + ]; + }; + }; +} |
