nixpkgs/pkgs/development/libraries/haskell/shakespeare-text/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
582 B
Nix

{ cabal, hspec, HUnit, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-text";
version = "1.0.0.5";
sha256 = "176yzx43sh0fnxpszn8kximd6i96yf2s374z55kvc1kspf7jk736";
buildDepends = [ shakespeare text ];
testDepends = [ hspec HUnit text ];
meta = {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "Interpolation with quasi-quotation: put variables strings";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})