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