2013-06-08 23:11:01 +02:00
|
|
|
{ cabal, HUnit, QuickCheck, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkQuickcheck2
|
|
|
|
}:
|
2010-08-25 15:08:32 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-08-25 15:08:32 +02:00
|
|
|
pname = "fingertree";
|
2013-06-08 23:11:01 +02:00
|
|
|
version = "0.1.0.0";
|
|
|
|
sha256 = "0c35sryzsijwavvw9x1pk5p99rhmp4g8pjh2ds419mlfgxc039ms";
|
|
|
|
testDepends = [
|
|
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2010-08-25 15:08:32 +02:00
|
|
|
meta = {
|
|
|
|
description = "Generic finger-tree structure, with example instances";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-08-25 15:08:32 +02:00
|
|
|
};
|
|
|
|
})
|