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