mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
haskell-HTTP: update to version 4000.2.15
This commit is contained in:
parent
c44c96a2a0
commit
17b80ebf06
3 changed files with 25 additions and 26 deletions
|
@ -1,24 +0,0 @@
|
|||
{ cabal, caseInsensitive, conduit, deepseq, httpdShed, httpTypes
|
||||
, HUnit, mtl, network, parsec, pureMD5, split, testFramework
|
||||
, testFrameworkHunit, wai, warp
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "HTTP";
|
||||
version = "4000.2.14";
|
||||
sha256 = "1js5r3rpy5wx0h29qsd3sfazqj0svfdcv13nsvwqi9jnwik8041c";
|
||||
buildDepends = [ mtl network parsec ];
|
||||
testDepends = [
|
||||
caseInsensitive conduit deepseq httpdShed httpTypes HUnit mtl
|
||||
network pureMD5 split testFramework testFrameworkHunit wai warp
|
||||
];
|
||||
jailbreak = true;
|
||||
doCheck = false;
|
||||
noHaddock = self.stdenv.lib.versionOlder self.ghc.version "6.11";
|
||||
meta = {
|
||||
homepage = "https://github.com/haskell/HTTP";
|
||||
description = "A library for client-side HTTP";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
23
pkgs/development/libraries/haskell/HTTP/4000.2.15.nix
Normal file
23
pkgs/development/libraries/haskell/HTTP/4000.2.15.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ cabal, caseInsensitive, conduit, conduitExtra, deepseq, httpdShed
|
||||
, httpTypes, HUnit, mtl, network, parsec, pureMD5, split
|
||||
, testFramework, testFrameworkHunit, wai, warp
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "HTTP";
|
||||
version = "4000.2.15";
|
||||
sha256 = "1bw79hq5nzx1gab9p3d3szr0wkiv9zvf2ld9d4i48z6fnmil4qwj";
|
||||
buildDepends = [ mtl network parsec ];
|
||||
testDepends = [
|
||||
caseInsensitive conduit conduitExtra deepseq httpdShed httpTypes
|
||||
HUnit mtl network pureMD5 split testFramework testFrameworkHunit
|
||||
wai warp
|
||||
];
|
||||
noHaddock = self.stdenv.lib.versionOlder self.ghc.version "6.11";
|
||||
meta = {
|
||||
homepage = "https://github.com/haskell/HTTP";
|
||||
description = "A library for client-side HTTP";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -981,8 +981,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
HTTP_4000_2_3 = callPackage ../development/libraries/haskell/HTTP/4000.2.3.nix {};
|
||||
HTTP_4000_2_5 = callPackage ../development/libraries/haskell/HTTP/4000.2.5.nix { network = self.network_2_4_1_2; };
|
||||
HTTP_4000_2_8 = callPackage ../development/libraries/haskell/HTTP/4000.2.8.nix {};
|
||||
HTTP_4000_2_14 = callPackage ../development/libraries/haskell/HTTP/4000.2.14.nix {};
|
||||
HTTP = self.HTTP_4000_2_14;
|
||||
HTTP_4000_2_15 = callPackage ../development/libraries/haskell/HTTP/4000.2.15.nix {};
|
||||
HTTP = self.HTTP_4000_2_15;
|
||||
|
||||
httpAttoparsec = callPackage ../development/libraries/haskell/http-attoparsec {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue