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-03-04 10:54:14 +01:00
|
|
|
version = "1.1.2.1";
|
|
|
|
sha256 = "049nn0p236wbm2majkih87n2c7h65xrnf6gydsi7najxccjl7y8z";
|
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-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-29 22:27:05 +02:00
|
|
|
};
|
|
|
|
})
|