381ebfe994
svn path=/nixpkgs/trunk/; revision=31094
19 lines
581 B
Nix
19 lines
581 B
Nix
{ cabal, shakespeare, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-js";
|
|
version = "0.10.4";
|
|
sha256 = "15mh93d38qpqnrgxvaq659zwl2mks9xhkynhlpjrf8zb234knxjw";
|
|
buildDepends = [ shakespeare text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/templates";
|
|
description = "Stick your haskell variables into javascript/coffeescript 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
|
|
];
|
|
};
|
|
})
|