8855e4e69b
svn path=/nixpkgs/trunk/; revision=29614
19 lines
553 B
Nix
19 lines
553 B
Nix
{ cabal, parsec, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare";
|
|
version = "0.10.1.1";
|
|
sha256 = "1qd5wrcr4ss5zigbb7s6c7y7qbvrnbvgdpwq985yyy71i5hwxv0a";
|
|
buildDepends = [ parsec text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/templates";
|
|
description = "A toolkit for making compile-time interpolated templates";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|