2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, HUnit, QuickCheck, random }:
|
2008-01-22 20:02:55 +01:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-22 20:02:55 +01:00
|
|
|
pname = "Crypto";
|
2012-05-15 13:50:48 +02:00
|
|
|
version = "4.2.5";
|
|
|
|
sha256 = "0wv48is2jqia8hda6q65y3mhabxlw9hjzmpk3dx70rzh4w44yxb8";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ HUnit QuickCheck random ];
|
2008-01-22 20:02:55 +01:00
|
|
|
meta = {
|
2011-08-07 22:25:15 +02:00
|
|
|
description = "Collects together existing Haskell cryptographic functions into a package";
|
|
|
|
license = "unknown";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-01-22 20:02:55 +01:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|