2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, hspec, HUnit, parsec, shakespeare, text, transformers }:
|
2011-08-29 13:27:05 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-css";
|
2013-12-10 02:03:13 -08:00
|
|
|
version = "1.0.6.6";
|
|
|
|
sha256 = "1xjavlw88nj5ila2b4m44zj0qgkpq147b30x1arwv0ik8szgml9k";
|
2012-11-05 07:19:51 -08:00
|
|
|
buildDepends = [ parsec shakespeare text transformers ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ hspec HUnit shakespeare text ];
|
2011-08-29 13:27:05 -07:00
|
|
|
meta = {
|
2012-04-05 09:51:59 -07:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-08-29 13:27:05 -07:00
|
|
|
description = "Stick your haskell variables into css at compile time";
|
2012-04-05 09:51:59 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-29 13:27:05 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 13:27:05 -07:00
|
|
|
};
|
|
|
|
})
|