mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
haskell-http-streams: update to version 0.7.1.1
This commit is contained in:
parent
28aa9cde64
commit
5f5a91fe71
@ -1,30 +1,32 @@
|
|||||||
{ cabal, attoparsec, base64Bytestring, blazeBuilder
|
{ cabal, aeson, aesonPretty, attoparsec, base64Bytestring
|
||||||
, caseInsensitive, HsOpenSSL, hspec, hspecExpectations, HUnit
|
, blazeBuilder, caseInsensitive, HsOpenSSL, hspec
|
||||||
, ioStreams, MonadCatchIOTransformers, mtl, network, opensslStreams
|
, hspecExpectations, httpCommon, HUnit, ioStreams
|
||||||
, snapCore, snapServer, systemFileio, systemFilepath, text
|
, MonadCatchIOTransformers, mtl, network, opensslStreams, snapCore
|
||||||
, transformers, unorderedContainers
|
, snapServer, systemFileio, systemFilepath, text, transformers
|
||||||
|
, unorderedContainers
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "http-streams";
|
pname = "http-streams";
|
||||||
version = "0.6.0.1";
|
version = "0.7.1.1";
|
||||||
sha256 = "1q76zl3fjh2irxaxilirjj2a58mg3c49vvm30xms0cdil9339h7d";
|
sha256 = "0wh07gdb9w48mwsjvg07dq6gjvdm8ls654ki180r7p38v93rsmfx";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
attoparsec base64Bytestring blazeBuilder caseInsensitive HsOpenSSL
|
aeson attoparsec base64Bytestring blazeBuilder caseInsensitive
|
||||||
ioStreams mtl network opensslStreams text transformers
|
HsOpenSSL httpCommon ioStreams mtl network opensslStreams text
|
||||||
unorderedContainers
|
transformers unorderedContainers
|
||||||
];
|
];
|
||||||
testDepends = [
|
testDepends = [
|
||||||
attoparsec base64Bytestring blazeBuilder caseInsensitive HsOpenSSL
|
aeson aesonPretty attoparsec base64Bytestring blazeBuilder
|
||||||
hspec hspecExpectations HUnit ioStreams MonadCatchIOTransformers
|
caseInsensitive HsOpenSSL hspec hspecExpectations httpCommon HUnit
|
||||||
mtl network opensslStreams snapCore snapServer systemFileio
|
ioStreams MonadCatchIOTransformers mtl network opensslStreams
|
||||||
systemFilepath text transformers unorderedContainers
|
snapCore snapServer systemFileio systemFilepath text transformers
|
||||||
|
unorderedContainers
|
||||||
];
|
];
|
||||||
|
doCheck = false;
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://research.operationaldynamics.com/projects/http-streams/";
|
homepage = "http://research.operationaldynamics.com/projects/http-streams/";
|
||||||
description = "An HTTP client using io-streams";
|
description = "An HTTP client using io-streams";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
};
|
};
|
||||||
doCheck = false;
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user