2013-07-01 11:39:03 +02:00
|
|
|
{ cabal, attoparsec, httpTypes }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-attoparsec";
|
2014-01-13 15:40:06 +01:00
|
|
|
version = "0.1.1";
|
|
|
|
sha256 = "12l892fix11mrvm10awwvv31y59q5rb6gb0sqjp6l4p4ym9ngqa3";
|
2013-07-01 11:39:03 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|