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-03-12 18:28:15 +01:00
|
|
|
version = "1.4.1.3";
|
|
|
|
sha256 = "1sx68mvzb2y3dq9hk769fzp8vw4jf4hk5v45i0a9a8b31imlicf0";
|
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
|
|
|
})
|