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-04-25 09:05:38 +02:00
|
|
|
version = "1.0.5.1";
|
|
|
|
sha256 = "06x57cm9ni7cgdizdwzqzpqdmgzhchax7c4mbqvk3ymgf3lybrss";
|
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
|
|
|
};
|
|
|
|
})
|