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-26 08:50:58 +00:00
|
|
|
version = "1.0.7.3";
|
|
|
|
sha256 = "0f2l1i4h3h5xps74nx3gy1mbi96m12rzgidlh4ilxz6p7dx9wnbq";
|
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
|
|
|
};
|
|
|
|
})
|