nek0.eu/default.nix

12 lines
431 B
Nix
Raw Normal View History

2019-12-19 03:42:44 +00:00
{ pkgs ? import <nixpkgs> (import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz))
, haskellCompiler ? "ghc865"
}:
pkgs.haskell-nix.cabalProject {
src = pkgs.haskell-nix.haskellLib.cleanGit { src = ./.; };
ghc = pkgs.buildPackages.pkgs.haskell-nix.compiler.${haskellCompiler};
2019-12-19 16:52:54 +00:00
modules = [
{ packages."fail".components."library".doHaddock = false;
}
];
2019-12-19 03:42:44 +00:00
}