blob: eec431d8398ea903bd24e1578e8b7c59baed1736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ ghc, nixpkgs ? (import <nixpkgs> {}) }:
let
inherit (nixpkgs) haskell pkgs;
in haskell.lib.buildStackProject {
inherit ghc;
name = "stackenv";
buildInputs = with pkgs;
[ zlib
];
}
|