2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, shakespeare, text }:
|
2011-08-29 22:27:05 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-js";
|
2012-05-28 12:23:20 +02:00
|
|
|
version = "1.0.0.3";
|
|
|
|
sha256 = "00x5xvjlaivl42q75cvbwbh055kgvk9i8s4y3xcmk4h7lnpfyzd6";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ shakespeare text ];
|
2011-08-29 22:27:05 +02:00
|
|
|
meta = {
|
2012-04-05 18:51:59 +02:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-08-29 22:27:05 +02:00
|
|
|
description = "Stick your haskell variables into javascript/coffeescript at compile time";
|
2012-04-09 14:37:39 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-29 22:27:05 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 22:27:05 +02:00
|
|
|
};
|
|
|
|
})
|