haskell-chell: pin build to patience-0.1.x

Newer version are not supported yet.
This commit is contained in:
Peter Simons 2018-11-27 15:54:06 +01:00
parent b13d8eadaa
commit 1e54ee80f2
3 changed files with 18 additions and 0 deletions

View File

@ -1185,4 +1185,7 @@ self: super: {
# });
libnix = dontCheck super.libnix;
# https://github.com/jmillikin/chell/issues/1
chell = super.chell.override { patience = self.patience_0_1_1; };
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

View File

@ -2455,6 +2455,7 @@ extra-packages:
- yesod-persistent < 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- yesod-static ^>= 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- yesod-test ^>= 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
- patience ^>= 0.1 # required by chell-0.4.x
package-maintainers:
peti:

View File

@ -161832,6 +161832,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
"patience_0_1_1" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
pname = "patience";
version = "0.1.1";
sha256 = "0qyv20gqy9pb1acy700ahv70lc6vprcwb26cc7fcpcs4scsc7irm";
revision = "1";
editedCabalFile = "0xj4hypjnhsn5jhs66l9wwhpkn5pbd8xmx7pgcy2ib08cz1087y7";
libraryHaskellDepends = [ base containers ];
description = "Patience diff and longest increasing subsequence";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"patience" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {