diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:31:29 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:31:29 +0200 |
commit | dd8f119332149a4e3b02dfce79f221f585ca73e1 (patch) | |
tree | 6111a5dbe3d5a6622293503bd206c286d9ca57d9 /shell.nix | |
parent | Add gitignore (diff) | |
download | isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.tar.gz isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.tar.bz2 isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.zip |
Setup nix declarative elm project
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix index 9518e69..ea1c5bb 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,11 @@ { pkgs ? import <nixpkgs> { } }: +let + elmProject = pkgs.callPackage ./elm-project-derivation.nix { }; +in pkgs.mkShell { nativeBuildInputs = with pkgs; [ elmPackages.elm elm2nix + elmProject ]; } |