1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

haskell-network: add version 2.6.0.1

We cannot use this version anywhere because of https://github.com/haskell/HTTP/issues/75
This commit is contained in:
Peter Simons 2014-08-24 11:59:48 +02:00
parent 963c45ecf8
commit 9ca9a23abe
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, HUnit, testFramework, testFrameworkHunit }:
cabal.mkDerivation (self: {
pname = "network";
version = "2.6.0.1";
sha256 = "0qfffsdbvrf9gs8wr9ps7iv5h6drz4vb2ja9rprmc7ypswsacxsq";
testDepends = [ HUnit testFramework testFrameworkHunit ];
meta = {
homepage = "https://github.com/haskell/network";
description = "Low-level networking interface";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1711,7 +1711,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
network_2_3_1_0 = callPackage ../development/libraries/haskell/network/2.3.1.0.nix {};
network_2_4_1_2 = callPackage ../development/libraries/haskell/network/2.4.1.2.nix {};
network_2_5_0_0 = callPackage ../development/libraries/haskell/network/2.5.0.0.nix {};
network = self.network_2_5_0_0;
network_2_6_0_1 = callPackage ../development/libraries/haskell/network/2.6.0.1.nix {};
network = self.network_2_5_0_0; # the latest version break HTTP on all platforms
networkCarbon = callPackage ../development/libraries/haskell/network-carbon {};