2013-09-02 11:20:16 +00:00
|
|
|
{ cabal, byteable, cryptoRandom, HUnit, QuickCheck, testFramework
|
2013-02-24 21:09:07 +00:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
|
|
}:
|
2013-01-16 11:31:04 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-numbers";
|
2013-11-12 10:16:02 +00:00
|
|
|
version = "0.2.3";
|
|
|
|
sha256 = "0nx2mlf40127j7vas7liqy2yzfg4alfaxcjilcxk99kavpaanzgp";
|
2013-09-02 11:20:16 +00:00
|
|
|
buildDepends = [ cryptoRandom vector ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-02 11:20:16 +00:00
|
|
|
byteable cryptoRandom HUnit QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 vector
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2014-06-12 08:32:11 +00:00
|
|
|
doCheck = false;
|
2013-01-16 11:31:04 +00: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;
|
|
|
|
};
|
|
|
|
})
|