blob: 83ba9fbc1f6e4aece3631bb639030304ce8d2874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
with import <nixpkgs> {}; {
env = stdenv.mkDerivation {
name = "env";
buildInputs = with pkgs; [
elmPackages.elm
cabal-install
cabal2nix
nodejs
sqlite
tmux
tmuxinator
nodePackages.nodemon
(haskellPackages.ghcWithPackages (p: with p; [
scotty
wai
wai-middleware-static
http-types
http-conduit
time
text
blaze-builder
cookie
bytestring
persistent
persistent-sqlite
persistent-template
monad-logger
resourcet
transformers
blaze-html
clay
aeson
clientsession
uuid
mime-mail
mtl
lens
parsec
unordered-containers
containers
email-validate
config-manager
]))
];
};
}
|