forked from janek/compareware
23 lines
543 B
Nix
23 lines
543 B
Nix
let
|
|
ihp = builtins.fetchGit {
|
|
url = "https://github.com/digitallyinduced/ihp.git";
|
|
rev = "113ce378747ce129f293d5cef504acbb3bca44ca";
|
|
};
|
|
haskellEnv = import "${ihp}/NixSupport/default.nix" {
|
|
ihp = ihp;
|
|
haskellDeps = p: with p; [
|
|
cabal-install
|
|
base
|
|
wai
|
|
text
|
|
hlint
|
|
p.ihp
|
|
];
|
|
otherDeps = p: with p; [
|
|
# Native dependencies, e.g. imagemagick
|
|
];
|
|
projectPath = ./.;
|
|
};
|
|
in
|
|
haskellEnv
|