Agda: fix build by providing the required older versions of its dependencies
Resolves https://github.com/NixOS/nixpkgs/issues/7201.
This commit is contained in:
@@ -34248,6 +34248,21 @@ self: {
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"cpphs_1_18_9" = callPackage
|
||||
({ mkDerivation, base, directory, old-locale, old-time, polyparse
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "cpphs";
|
||||
version = "1.18.9";
|
||||
sha256 = "0bf9p5izkag6iqlpf59znsv8107hg1xghgas4crw2gxai1z7bfq6";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ base directory old-locale old-time polyparse ];
|
||||
homepage = "http://projects.haskell.org/cpphs/";
|
||||
description = "A liberalised re-implementation of cpp, the C pre-processor";
|
||||
license = "LGPL";
|
||||
}) {};
|
||||
|
||||
"cpphs" = callPackage
|
||||
({ mkDerivation, base, directory, old-locale, old-time, polyparse
|
||||
}:
|
||||
@@ -43892,6 +43907,24 @@ self: {
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"equivalence_0_2_5" = callPackage
|
||||
({ mkDerivation, base, containers, mtl, QuickCheck, STMonadTrans
|
||||
, template-haskell, test-framework, test-framework-quickcheck2
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "equivalence";
|
||||
version = "0.2.5";
|
||||
sha256 = "014r9v81r7nj5pynfk3wa4lm4hk04123fgxkhb9a945wi6d9m5h3";
|
||||
buildDepends = [ base containers mtl STMonadTrans ];
|
||||
testDepends = [
|
||||
base containers mtl QuickCheck STMonadTrans template-haskell
|
||||
test-framework test-framework-quickcheck2
|
||||
];
|
||||
homepage = "https://bitbucket.org/paba/equivalence/";
|
||||
description = "Maintaining an equivalence relation implemented as union-find using STT";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"equivalence" = callPackage
|
||||
({ mkDerivation, base, containers, mtl, QuickCheck, STMonadTrans
|
||||
, template-haskell, test-framework, test-framework-quickcheck2
|
||||
|
||||
Reference in New Issue
Block a user