blob: c14e4e2b346aa35d61d10de96fad6fb7199ef6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
with import ./nixpkgs.nix {};
{
env = stdenv.mkDerivation {
name = "tools";
buildInputs = with pkgs; with nodePackages; [
nodemon
sqlite
cabal-install
tmux
tmuxinator
haskellPackages.stylish-haskell
];
};
}
|