3
0
Fork 0
forked from mirrors/nixpkgs

haskell-http-attoparsec: add version 0.1.0

This commit is contained in:
Peter Simons 2013-07-01 11:39:03 +02:00
parent 2ece8f76f5
commit 8bb29fb94a
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, attoparsec, httpTypes }:
cabal.mkDerivation (self: {
pname = "http-attoparsec";
version = "0.1.0";
sha256 = "1ncdjzgb5kv20y9kps4nawvbwaqnfil9g552if638vv8hag8cwq9";
buildDepends = [ attoparsec httpTypes ];
meta = {
homepage = "https://github.com/tlaitinen/http-attoparsec";
description = "Attoparsec parsers for http-types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1123,6 +1123,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
HTTP_4000_2_8 = callPackage ../development/libraries/haskell/HTTP/4000.2.8.nix {};
HTTP = self.HTTP_4000_2_8;
httpAttoparsec = callPackage ../development/libraries/haskell/http-attoparsec {};
httpReverseProxy = callPackage ../development/libraries/haskell/http-reverse-proxy {};
hackageDb = callPackage ../development/libraries/haskell/hackage-db {};