2013-06-01 13:18:45 +01:00
|
|
|
{ cabal, hspec, parsec, shakespeare, text }:
|
2011-12-26 15:35:48 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-i18n";
|
2013-09-08 21:05:40 +01:00
|
|
|
version = "1.0.0.4";
|
|
|
|
sha256 = "1ia73rq9kva2v4vxcyc2nzbvvkrbwrx48gjhnljx39szx1klyk3l";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ parsec shakespeare text ];
|
2013-06-01 13:18:45 +01:00
|
|
|
testDepends = [ hspec text ];
|
2011-12-26 15:35:48 +00:00
|
|
|
meta = {
|
2012-04-05 17:51:59 +01:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-12-26 15:35:48 +00:00
|
|
|
description = "A type-based approach to internationalization";
|
2012-04-09 13:37:39 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-12-26 15:35:48 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-26 15:35:48 +00:00
|
|
|
};
|
|
|
|
})
|