mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Add haskell-http-kit
This commit is contained in:
parent
af817ae0d8
commit
c7f2d87a56
16
pkgs/development/libraries/haskell/http-kit/default.nix
Normal file
16
pkgs/development/libraries/haskell/http-kit/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ cabal, caseInsensitive, hspec, httpTypes, QuickCheck
|
||||
, quickcheckInstances
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "http-kit";
|
||||
version = "0.2.0";
|
||||
sha256 = "0pwcaf52abyjy3jknb7q18j50qd7arz7ck8xffbv9pbp0z7lfd6n";
|
||||
buildDepends = [ caseInsensitive httpTypes ];
|
||||
testDepends = [ hspec httpTypes QuickCheck quickcheckInstances ];
|
||||
meta = {
|
||||
description = "A low-level HTTP library";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1374,6 +1374,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
httpCommon = callPackage ../development/libraries/haskell/http-common {};
|
||||
|
||||
httpKit = callPackage ../development/libraries/haskell/http-kit {};
|
||||
|
||||
httpReverseProxy = callPackage ../development/libraries/haskell/http-reverse-proxy {};
|
||||
|
||||
hackageDb = callPackage ../development/libraries/haskell/hackage-db {};
|
||||
|
Loading…
Reference in New Issue
Block a user