2011-08-12 02:18:56 +02: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";
|
2011-08-07 22:25:15 +02:00
|
|
|
version = "4.2.3";
|
|
|
|
sha256 = "02wi8lyi27i8cdj8vclrl7vcng38srdzz9qpqwsc4y4lmvgg82br";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-12 02:18:56 +02: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
|
|
|
})
|