2014-02-28 10:43:37 +01:00
|
|
|
{ cabal, binary, HUnit, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
2013-02-24 22:09:07 +01:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "largeword";
|
2014-05-07 11:46:41 +02:00
|
|
|
version = "1.2.3";
|
|
|
|
sha256 = "1ldcsnnji6p84sn03j17pdcpg7vqn1xrhyn4wys0v5fyy0d383ln";
|
2014-02-28 10:43:37 +01:00
|
|
|
buildDepends = [ binary ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2014-02-28 10:43:37 +01:00
|
|
|
binary HUnit QuickCheck testFramework testFrameworkHunit
|
2013-02-24 22:09:07 +01:00
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2014-02-28 10:43:37 +01:00
|
|
|
jailbreak = true;
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
2012-12-10 12:43:40 +01:00
|
|
|
homepage = "https://github.com/idontgetoutmuch/largeword";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|