haskell-shakespeare-i18n: added version 0.0.0

svn path=/nixpkgs/trunk/; revision=31087
This commit is contained in:
Peter Simons
2011-12-26 15:35:48 +00:00
parent 5aacd74bf8
commit 481a96b2ed
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, parsec, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-i18n";
version = "0.0.0";
sha256 = "1zyr63ncd92c30afh0sf4lq7p253jd3gjvcv65f7i0njqpc1lg9y";
buildDepends = [ parsec shakespeare text ];
meta = {
homepage = "http://www.yesodweb.com/book/i18n";
description = "A type-based approach to internationalization";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})