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