2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, hspec, parsec, text }:
|
2011-08-29 21:27:05 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare";
|
2013-02-14 11:42:08 +00:00
|
|
|
version = "1.0.3.1";
|
|
|
|
sha256 = "08w1g19k9v9dvdy45j32kdic8vjhc10ad4g20q5ya0id4cd13qfs";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ parsec text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec parsec 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 = "A toolkit for making compile-time interpolated templates";
|
2012-04-09 13:37:39 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-29 21:27:05 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 21:27:05 +01:00
|
|
|
};
|
|
|
|
})
|