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