2013-09-02 13:20:16 +02:00
|
|
|
{ cabal, byteable, cryptoRandom, HUnit, QuickCheck, testFramework
|
2013-02-24 22:09:07 +01:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
|
|
}:
|
2013-01-16 12:31:04 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-numbers";
|
2013-11-12 11:16:02 +01:00
|
|
|
version = "0.2.3";
|
|
|
|
sha256 = "0nx2mlf40127j7vas7liqy2yzfg4alfaxcjilcxk99kavpaanzgp";
|
2013-09-02 13:20:16 +02:00
|
|
|
buildDepends = [ cryptoRandom vector ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2013-09-02 13:20:16 +02:00
|
|
|
byteable cryptoRandom HUnit QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 vector
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
2013-01-16 12:31:04 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-crypto-numbers";
|
|
|
|
description = "Cryptographic numbers: functions and algorithms";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|