2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, aeson, hspec, HUnit, shakespeare, text }:
|
2011-08-29 20:27:05 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-js";
|
2013-10-14 06:47:49 +00:00
|
|
|
version = "1.2.0.1";
|
|
|
|
sha256 = "0w6dwbn3264bdjmj2hg1bppvhbd3bj8j1dkrlizjifs8g8ax0bx5";
|
2012-11-16 14:59:16 +00:00
|
|
|
buildDepends = [ aeson shakespeare text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ aeson hspec HUnit shakespeare text ];
|
2011-08-29 20:27:05 +00:00
|
|
|
meta = {
|
2012-04-05 16:51:59 +00:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-08-29 20:27:05 +00:00
|
|
|
description = "Stick your haskell variables into javascript/coffeescript at compile time";
|
2012-04-09 12:37:39 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-29 20:27:05 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 20:27:05 +00:00
|
|
|
};
|
|
|
|
})
|