2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, deepseq, HUnit, QuickCheck, random, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
}:
|
2012-05-28 11:23:20 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "text";
|
2012-08-16 14:35:34 +01:00
|
|
|
version = "0.11.2.3";
|
|
|
|
sha256 = "0jrl3qbi91gkcnws9crsa59jsmmbjy91fwvl07qka9m48nq3f9rm";
|
2012-05-28 11:23:20 +01:00
|
|
|
buildDepends = [ deepseq ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
deepseq HUnit QuickCheck random testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2012-05-28 11:23:20 +01: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;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|