2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, aeson, hspec, HUnit, shakespeare, text }:
|
2011-08-29 22:27:05 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-js";
|
2013-10-16 17:16:33 +02:00
|
|
|
version = "1.2.0.2";
|
|
|
|
sha256 = "1d7fmw2295ycjipaj9fjgw02y1088h2gxxk1d6sy4c165x95r6vx";
|
2012-11-16 15:59:16 +01:00
|
|
|
buildDepends = [ aeson shakespeare text ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ aeson hspec HUnit 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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 22:27:05 +02:00
|
|
|
};
|
|
|
|
})
|