14 lines
321 B
Nix
14 lines
321 B
Nix
{ ghc, nixpkgs ? (import <nixpkgs> {}) }:
|
|
|
|
let
|
|
inherit (nixpkgs) haskell pkgs;
|
|
in haskell.lib.buildStackProject {
|
|
inherit ghc;
|
|
name = ''stackenv-uuid-crypto'';
|
|
buildInputs = with pkgs;
|
|
[ postgresql zlib.dev ncurses.dev
|
|
haskellPackages.yesod-bin haskellPackages.happy
|
|
haskellPackages.alex
|
|
];
|
|
}
|