nixpkgs/pkgs/development/libraries/haskell/http-date/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
469 B
Nix

{ cabal, attoparsec, doctest, hspec, time }:
cabal.mkDerivation (self: {
pname = "http-date";
version = "0.0.4";
sha256 = "1pbm066i1cpa3z2kfsqpva0qixnx87s76dpafz3wf6dkaqj8n8i5";
buildDepends = [ attoparsec ];
testDepends = [ doctest hspec time ];
meta = {
description = "HTTP Date parser/formatter";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})