hackage2nix: add network-3.0.x to the package set

3.1.x is too new and not yet supported by many packages that need a 3.x
version (like HTTP).
This commit is contained in:
Peter Simons
2019-04-30 11:43:45 +00:00
parent dd2417cda0
commit fa1741985b
2 changed files with 19 additions and 2 deletions
+16
View File
@@ -162001,6 +162001,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"network_3_0_1_1" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, hspec
, hspec-discover, HUnit
}:
mkDerivation {
pname = "network";
version = "3.0.1.1";
sha256 = "1xacvl5wf47cz61igb94zf961b9ks0yhr02myxgjf53clm70dg6j";
libraryHaskellDepends = [ base bytestring deepseq ];
testHaskellDepends = [ base bytestring directory hspec HUnit ];
testToolDepends = [ hspec-discover ];
description = "Low-level networking interface";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network_3_1_0_0" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, hspec
, hspec-discover, HUnit