2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, shakespeare, text }:
|
2011-08-29 22:27:05 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-js";
|
2012-02-10 12:33:31 +01:00
|
|
|
version = "0.11.0.1";
|
|
|
|
sha256 = "01gmsk1q5iq23m93n8mcmm02jqv3i7ksf1jw4qnla1gssdkx8ggk";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal shakespeare text ];
|
2011-08-29 22:27:05 +02:00
|
|
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|