2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, binary }:
|
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";
|
2011-08-30 11:17:22 +02:00
|
|
|
version = "1.5.0.0";
|
|
|
|
sha256 = "12sz1dblmpiy8bg45fwndp1g9gf7494vqqbvbd1hwr5qzyfwyqck";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ binary ];
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-07-13 13:36:50 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|