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-03-12 15:06:18 +01:00
|
|
|
version = "0.11.2";
|
|
|
|
sha256 = "1ck39bgl4wswd88w42b1fx5dlsd7r31d60ssv1lk11x6s4cjihgz";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ 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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 22:27:05 +02:00
|
|
|
};
|
|
|
|
})
|