haskell-text: added version 0.11.1.13

svn path=/nixpkgs/trunk/; revision=31804
This commit is contained in:
Peter Simons
2012-01-24 15:05:51 +00:00
parent b479c4b172
commit 76cbc8ade8
2 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, deepseq }:
cabal.mkDerivation (self: {
pname = "text";
version = "0.11.1.13";
sha256 = "0lbc4yfqpydps0rd1qjymnnhp87sl9w7n1f5vd5lsixby93zjv2f";
buildDepends = [ deepseq ];
meta = {
homepage = "https://github.com/bos/text";
description = "An efficient packed Unicode text type";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})