blob: 8c7d91f1ea4d4c6772fe2c749a0e8032046f3b93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
with import <nixpkgs> {}; {
env = stdenv.mkDerivation {
name = "tools";
buildInputs = with pkgs; with nodePackages; with haskellPackages; [
nodemon
sqlite
cabal-install
tmux
tmuxinator
stylish-haskell
# (import ./stylish-haskell {
# inherit mkDerivation aeson base bytestring containers directory filepath
# fetchFromGitHub haskell-src-exts mtl syb yaml stylish-haskell strict
# optparse-applicative HUnit test-framework test-framework-hunit stdenv;
# })
];
};
}
|