mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-warp: update to version 3.0.0.1
This commit is contained in:
parent
78c13dfb4f
commit
567ba23b1a
1 changed files with 12 additions and 15 deletions
|
@ -1,25 +1,22 @@
|
||||||
{ cabal, async, blazeBuilder, blazeBuilderConduit, caseInsensitive
|
{ cabal, async, blazeBuilder, caseInsensitive, doctest, hashable
|
||||||
, conduit, conduitExtra, doctest, hashable, hspec, HTTP, httpDate
|
, hspec, HTTP, httpDate, httpTypes, HUnit, liftedBase, network
|
||||||
, httpTypes, HUnit, liftedBase, network, networkConduit, QuickCheck
|
, QuickCheck, simpleSendfile, streamingCommons, text, time
|
||||||
, simpleSendfile, streamingCommons, text, time, transformers
|
, transformers, unixCompat, void, wai
|
||||||
, unixCompat, void, wai
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "warp";
|
pname = "warp";
|
||||||
version = "2.1.5.2";
|
version = "3.0.0.1";
|
||||||
sha256 = "0rv5fxw1d5dh6jzvs3bg2vjjr702xw59fx7mflygpqh8zivfh4ds";
|
sha256 = "05x216fj7s1i963xipi0p7vmkz5l0nma1fjqiq040fg3rngw4yqb";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
blazeBuilder blazeBuilderConduit caseInsensitive conduit
|
blazeBuilder caseInsensitive hashable httpDate httpTypes network
|
||||||
conduitExtra hashable httpDate httpTypes liftedBase network
|
simpleSendfile streamingCommons text unixCompat void wai
|
||||||
networkConduit simpleSendfile streamingCommons text transformers
|
|
||||||
unixCompat void wai
|
|
||||||
];
|
];
|
||||||
testDepends = [
|
testDepends = [
|
||||||
async blazeBuilder blazeBuilderConduit caseInsensitive conduit
|
async blazeBuilder caseInsensitive doctest hashable hspec HTTP
|
||||||
conduitExtra doctest hashable hspec HTTP httpDate httpTypes HUnit
|
httpDate httpTypes HUnit liftedBase network QuickCheck
|
||||||
liftedBase network networkConduit QuickCheck simpleSendfile
|
simpleSendfile streamingCommons text time transformers unixCompat
|
||||||
streamingCommons text time transformers unixCompat void wai
|
void wai
|
||||||
];
|
];
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue