2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, binary }:
|
2009-07-13 04:36:50 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-13 04:36:50 -07:00
|
|
|
pname = "SHA";
|
2012-07-14 02:14:38 -07:00
|
|
|
version = "1.5.1";
|
|
|
|
sha256 = "009c0nabva0c4aq4yhqdmdqmrrjmg8scpy7yz65bbhqnfwnjvdks";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ binary ];
|
2009-07-13 04:36:50 -07:00
|
|
|
meta = {
|
|
|
|
description = "Implementations of the SHA suite of message digest functions";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-13 04:36:50 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|