2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, HUnit, QuickCheck, random }:
|
2008-01-22 19:02:55 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-22 19:02:55 +00:00
|
|
|
pname = "Crypto";
|
2011-09-08 17:25:19 +00:00
|
|
|
version = "4.2.4";
|
|
|
|
sha256 = "05wafv8flrh1893rh208azzig5k5pa022s2fg3f8lrqb23c6v63p";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ HUnit QuickCheck random ];
|
2012-03-05 23:32:24 +00:00
|
|
|
patches = [ ./class-constraints.diff ];
|
2008-01-22 19:02:55 +00:00
|
|
|
meta = {
|
2011-08-07 20:25:15 +00:00
|
|
|
description = "Collects together existing Haskell cryptographic functions into a package";
|
|
|
|
license = "unknown";
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-01-22 19:02:55 +00:00
|
|
|
};
|
2011-03-28 15:04:00 +00:00
|
|
|
})
|