ba991ec100
svn path=/nixpkgs/trunk/; revision=31093
19 lines
577 B
Nix
19 lines
577 B
Nix
{ cabal, parsec, shakespeare, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-css";
|
|
version = "0.10.5";
|
|
sha256 = "1cnv9qgp1llrrvcqp64mq207wdsxpqza9yq5nzlsgrh6qlzvm4hs";
|
|
buildDepends = [ parsec shakespeare text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/templates";
|
|
description = "Stick your haskell variables into css at compile time";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|