hackage2nix: keep the old version of refinery around for haskell-language-server

This commit is contained in:
Peter Simons
2021-04-09 20:31:28 +02:00
parent b78820de3f
commit 98f3f2f651
3 changed files with 27 additions and 9 deletions
+17
View File
@@ -220134,6 +220134,23 @@ self: {
broken = true;
}) {};
"refinery_0_3_0_0" = callPackage
({ mkDerivation, base, checkers, exceptions, hspec, logict, mmorph
, mtl, QuickCheck
}:
mkDerivation {
pname = "refinery";
version = "0.3.0.0";
sha256 = "1bsbnxf75prw153c3k02jk84h3sravdi1c1sl75c7sx4xq81qhlp";
libraryHaskellDepends = [ base exceptions logict mmorph mtl ];
testHaskellDepends = [
base checkers exceptions hspec logict mmorph mtl QuickCheck
];
description = "Toolkit for building proof automation systems";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
}) {};
"refinery" = callPackage
({ mkDerivation, base, checkers, exceptions, hspec, mmorph, mtl
, QuickCheck