2012-11-22 07:59:32 -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";
|
2014-01-17 01:40:21 -08:00
|
|
|
version = "1.6.4";
|
|
|
|
sha256 = "13d7sg8r0qqs425banrwd15hahy8gnl4k81q0wfqld77xpb2vvbj";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-11-22 07:59:32 -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;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-13 04:36:50 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|