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";
|
2012-05-15 11:50:48 +00:00
|
|
|
version = "4.2.5";
|
|
|
|
sha256 = "0wv48is2jqia8hda6q65y3mhabxlw9hjzmpk3dx70rzh4w44yxb8";
|
2011-08-09 23:00:20 +00: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 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;
|
2012-09-11 16:21:54 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-01-22 19:02:55 +00:00
|
|
|
};
|
2011-03-28 15:04:00 +00:00
|
|
|
})
|