diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-02-09 15:31:07 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-02-09 15:31:07 +0530 |
| commit | 2b5ac273c2adee5327f58fb34ac30b66da917347 (patch) | |
| tree | 019fe65d0c3dad39486c7e4b75367f20a47c0b8b /flake.nix | |
| download | uiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.tar.gz uiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.zip | |
Init commit with uiua basic shit
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..151edd3 --- /dev/null +++ b/flake.nix @@ -0,0 +1,14 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + }; + + outputs = { self, nixpkgs }: + let + pkgs = import nixpkgs { system = "x86_64-linux"; }; + in { + devShells.x86_64-linux.default = pkgs.mkShell { + buildInputs = [pkgs.uiua]; + }; + }; +} |
