nixpkgs/pkgs/development/libraries/haskell/shakespeare/default.nix
Peter Simons 40571fd25f haskell-shakespeare: updated to version 0.10.2
svn path=/nixpkgs/trunk/; revision=30150
2011-10-31 18:50:01 +00:00

19 lines
551 B
Nix

{ cabal, parsec, text }:
cabal.mkDerivation (self: {
pname = "shakespeare";
version = "0.10.2";
sha256 = "173pcdm69w1xg3vm31xh6hs9w1552cmb1pz99ri09h1ajdhf2qwc";
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
];
};
})