http-types: 0.6.5.1

svn path=/nixpkgs/trunk/; revision=28329
This commit is contained in:
Peter Simons 2011-08-07 22:01:53 +00:00
parent 0df3b89648
commit e877d8c673
1 changed files with 9 additions and 8 deletions

View File

@ -1,14 +1,15 @@
{cabal, blazeBuilder, caseInsensitive, text}: {cabal, blazeBuilder, caseInsensitive, text} :
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "http-types"; pname = "http-types";
version = "0.6.5"; version = "0.6.5.1";
sha256 = "1z2y219170n6rrmmffkg8xa450xzl42zpwahv7m71bxlz4cvxjc1"; sha256 = "1gmf5ghfm8hzifinknyk10m7ayxkn48h1l0mchi2vl6h5rg0nnca";
propagatedBuildInputs = [blazeBuilder caseInsensitive text]; propagatedBuildInputs = [ blazeBuilder caseInsensitive text ];
meta = { meta = {
description = "Generic HTTP types for Haskell (for both client and server code)"; homepage = "https://github.com/aristidb/http-types";
license = "BSD3"; description = "Generic HTTP types for Haskell (for both client and server code).";
maintainers = [self.stdenv.lib.maintainers.andres]; license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
}; };
}) })