2012-11-11 22:50:40 +01:00
|
|
|
{ cabal, binary, QuickCheck, testFramework
|
|
|
|
, testFrameworkQuickcheck2
|
|
|
|
}:
|
2009-07-13 13:36:50 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-13 13:36:50 +02:00
|
|
|
pname = "SHA";
|
2012-11-11 22:50:40 +01:00
|
|
|
version = "1.6.0";
|
|
|
|
sha256 = "0i5x2irk08yr4p428wyqvdysz22jqc3q5qn08wc38pw2xhmc0zzk";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-11-11 22:50:40 +01:00
|
|
|
buildDepends = [
|
|
|
|
binary QuickCheck testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
2009-07-13 13:36:50 +02:00
|
|
|
meta = {
|
|
|
|
description = "Implementations of the SHA suite of message digest functions";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-13 13:36:50 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|