1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-ci: add an override that uses the latest git version

The latest Hackage release is too old to be useful, unfortunately.
This commit is contained in:
Peter Simons 2019-02-24 09:56:29 +01:00
parent c3f38ddd8b
commit bbd82be63e

View file

@ -1222,4 +1222,15 @@ self: super: {
# https://github.com/qfpl/tasty-hedgehog/issues/24
tasty-hedgehog = dontCheck super.tasty-hedgehog;
# The latest release version is ancient. You really need this tool from git.
haskell-ci = addBuildDepend (overrideSrc (dontCheck super.haskell-ci) {
version = "2019.02.22-git";
src = pkgs.fetchFromGitHub {
owner = "haskell-CI";
repo = "haskell-ci";
rev = "3a861aa7d6099296a9ac1003c7218e3ed831ca8c";
sha256 = "0hwfg3ab5mh3xml3nlabbr1x8bhg26gw6sxn8bgb8bh6r0ccq9pi";
};
}) (with self; [base-compat generic-lens microlens optparse-applicative ShellCheck]);
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super