2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, hspec, HUnit, parsec, shakespeare, text, transformers }:
|
2011-08-29 22:27:05 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-css";
|
2013-10-10 20:55:55 +02:00
|
|
|
version = "1.0.6.4";
|
|
|
|
sha256 = "12f2b69grxpwk56b2d7idlg8axqfgzn0rn3m56r1hcpvkjbynlc4";
|
2012-11-05 16:19:51 +01:00
|
|
|
buildDepends = [ parsec shakespeare text transformers ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ 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 css at compile time";
|
2012-04-05 18:51:59 +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
|
|
|
};
|
|
|
|
})
|