2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, deepseq }:
|
2011-04-04 10:45:05 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-04-04 10:45:05 +02:00
|
|
|
pname = "text";
|
2011-08-10 01:00:20 +02:00
|
|
|
version = "0.11.0.6";
|
2011-04-04 10:45:05 +02:00
|
|
|
sha256 = "103l1c8jfwpddsqzwj9jqh89vay8ax1znxqgjqprv2fvr7s0zvkp";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ deepseq ];
|
2011-04-04 10:45:05 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://bitbucket.org/bos/text";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "An efficient packed Unicode text type";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-04-04 10:45:05 +02:00
|
|
|
};
|
|
|
|
})
|