hnix/default.nix

74 lines
2.3 KiB
Nix
Raw Normal View History

2018-04-25 01:43:56 +02:00
{ compiler ? "ghc822" # "ghc842" also works
, doProfiling ? false
, doBenchmark ? false
, doTracing ? false
2018-04-29 03:21:24 +02:00
, doStrict ? false
, rev ? "9d0b6b9dfc92a2704e2111aa836f5bdbf8c9ba42"
, sha256 ? "096r7ylnwz4nshrfkh127dg8nhrcvgpr69l4xrdgy3kbq049r3nb"
, nixpkgs ? import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
inherit sha256; }) {
2018-04-17 06:57:27 +02:00
config.allowUnfree = true;
config.allowBroken = false;
2018-04-17 06:57:27 +02:00
}
# , nixpkgs ? import ((import <nixpkgs> {}).fetchFromGitHub {
# owner = "NixOS"; repo = "nixpkgs"; inherit rev sha256; }) {
}:
2018-04-07 01:23:24 +02:00
2018-04-17 00:10:47 +02:00
let inherit (nixpkgs) pkgs;
2018-04-07 01:23:24 +02:00
2018-04-17 00:10:47 +02:00
haskellPackages = pkgs.haskell.packages.${compiler}.override {
overrides = with pkgs.haskell.lib; self: super:
if compiler == "ghcjs" then {} else
{
cryptohash-md5 = doJailbreak super.cryptohash-md5;
cryptohash-sha1 = doJailbreak super.cryptohash-sha1;
cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
cryptohash-sha512 = doJailbreak super.cryptohash-sha512;
serialise = dontCheck super.serialise;
compact =
if compiler == "ghc842"
then doJailbreak super.compact
else super.compact;
ghc-datasize =
if doProfiling
then null
else pkgs.haskell.lib.overrideCabal super.ghc-datasize (attrs: {
enableLibraryProfiling = false;
enableExecutableProfiling = false;
});
ghc-heap-view =
if doProfiling
then null
else pkgs.haskell.lib.overrideCabal super.ghc-heap-view (attrs: {
enableLibraryProfiling = false;
enableExecutableProfiling = false;
});
};
2018-04-07 01:23:24 +02:00
};
2018-04-17 00:10:47 +02:00
in haskellPackages.developPackage {
root = ./.;
source-overrides = {
};
modifier = drv: pkgs.haskell.lib.overrideCabal drv (attrs: {
testHaskellDepends = attrs.testHaskellDepends ++
[ pkgs.nix pkgs.haskell.packages.ghc822.hpack ];
2018-04-17 00:10:47 +02:00
enableLibraryProfiling = doProfiling;
enableExecutableProfiling = doProfiling;
2018-04-07 01:23:24 +02:00
2018-04-17 00:10:47 +02:00
inherit doBenchmark;
2018-04-29 03:21:24 +02:00
configureFlags =
pkgs.stdenv.lib.optional doTracing "--flags=tracing"
++ pkgs.stdenv.lib.optional doProfiling "--flags=profiling"
++ pkgs.stdenv.lib.optional doStrict "--ghc-options=-Werror";
2018-04-17 00:10:47 +02:00
});
}