3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
516 B
Nix
16 lines
516 B
Nix
{ cabal, blazeBuilder, dataDefault, text, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cookie";
|
|
version = "0.4.0.1";
|
|
sha256 = "01k5gq9kwbrivkhr1sj8aw4cgf2c1xgwwajqvd435r0g99fpx5kk";
|
|
buildDepends = [ blazeBuilder dataDefault text time ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/cookie";
|
|
description = "HTTP cookie parsing and rendering";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|