Skip to content

Commit

Permalink
Add support for integer-simple
Browse files Browse the repository at this point in the history
  • Loading branch information
nh2 committed Sep 10, 2018
1 parent fefbd5e commit d4374af
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions survey/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,16 @@ in
overlays = [ (cabal2nix-fix-overlay normalPkgs) ];
}).pkgsMusl,

normalHaskellPackages ? pkgs.haskellPackages,
}:
compiler ? "ghc843",

normalHaskellPackages ?
if integer-simple
# TODO: Check whether `text` still needs to be overridden to use `-finteger-simple`
then pkgs.haskell.packages.integer-simple."${compiler}"
else pkgs.haskell.packages."${compiler}",

integer-simple ? false,
}:

let

Expand Down

0 comments on commit d4374af

Please sign in to comment.