forked from mirrors/nixpkgs
haskell-chell: pin build to patience-0.1.x
Newer version are not supported yet.
This commit is contained in:
parent
b13d8eadaa
commit
1e54ee80f2
|
@ -1185,4 +1185,7 @@ self: super: {
|
||||||
# });
|
# });
|
||||||
libnix = dontCheck super.libnix;
|
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
|
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||||
|
|
|
@ -2455,6 +2455,7 @@ extra-packages:
|
||||||
- yesod-persistent < 1.5 # pre-lts-11.x versions neeed by git-annex 6.20180227
|
- 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-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
|
- 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:
|
package-maintainers:
|
||||||
peti:
|
peti:
|
||||||
|
|
|
@ -161832,6 +161832,20 @@ self: {
|
||||||
license = stdenv.lib.licenses.mit;
|
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
|
"patience" = callPackage
|
||||||
({ mkDerivation, base, containers }:
|
({ mkDerivation, base, containers }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
|
|
Loading…
Reference in a new issue