diff options
Diffstat (limited to 'haskell-file/shell.nix')
-rw-r--r-- | haskell-file/shell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/haskell-file/shell.nix b/haskell-file/shell.nix new file mode 100644 index 000000000000..f2621d6eac5a --- /dev/null +++ b/haskell-file/shell.nix @@ -0,0 +1,9 @@ +with import <nixpkgs> {}; + +stdenv.mkDerivation { + name = "f-hs"; + buildInputs = [ + (pkgs.haskellPackages.ghcWithPackages (pkgs: [ + ])) + ]; +} |