2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, deepseq, HUnit, QuickCheck, random, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
}:
|
2012-01-24 15:05:51 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "text";
|
|
|
|
version = "0.11.1.13";
|
|
|
|
sha256 = "0lbc4yfqpydps0rd1qjymnnhp87sl9w7n1f5vd5lsixby93zjv2f";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ deepseq ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
deepseq HUnit QuickCheck random testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2013-02-24 21:23:26 +00:00
|
|
|
doCheck = false;
|
2012-01-24 15:05:51 +00:00
|
|
|
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;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-24 15:05:51 +00:00
|
|
|
};
|
|
|
|
})
|