aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/default.nix b/default.nix
index 1a135c0..9093557 100644
--- a/default.nix
+++ b/default.nix
@@ -1,15 +1,13 @@
{ nixpkgs ? null, compiler ? "ghc865", doBenchmark ? false } :
let
- sysPkg = import <nixpkgs> { };
pinnedPkg = builtins.fetchGit {
name = "nixos-unstable-2019-10-06";
url = https://github.com/nixos/nixpkgs/;
rev = "271fef8a4eb03cd9de0c1fe2f0b7f4a16c2de49a";
};
- npkgs = if nixpkgs == null then
- import pinnedPkg {}
- else
- import nixpkgs {};
+ npkgs = if nixpkgs == null
+ then import pinnedPkg {}
+ else import nixpkgs {};
variant = if doBenchmark then npkgs.pkgs.haskell.lib.doBenchmark else npkgs.pkgs.lib.id;
verismith = npkgs.pkgs.haskellPackages.callCabal2nix "verismith" (./.) {};
in