aboutsummaryrefslogtreecommitdiff
path: root/tools.nix
blob: f09ad138ad94d244d350311324f0280813404adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "tools";
    buildInputs = with pkgs; with nodePackages; with haskellPackages; [
      nodemon
      sqlite
      cabal-install
      tmux
      tmuxinator
      (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;
      })
    ];
  };
}