1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

Add basic NixOS shell.nix file

This commit is contained in:
James Hillyerd
2018-12-15 08:34:07 -08:00
parent bc427e237f
commit 348eebe418

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
elmPackages.elm
elmPackages.elm-format
go
golint
nodejs
swaks
];
}