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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user