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";
|
2014-03-31 15:26:02 -07:00
|
|
|
version = "1.0.7.4";
|
|
|
|
sha256 = "1lb3w0498bdsd2cmz2ns11dv5abif0wsilbqy0ymfb1dgl2rbpmz";
|
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
|
|
|
};
|
|
|
|
})
|