2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, binary, Cabal, cereal, cryptoApi, tagged }:
|
2010-04-15 14:25:43 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 14:25:43 +01:00
|
|
|
pname = "pureMD5";
|
2011-08-07 23:51:22 +01:00
|
|
|
version = "2.1.0.3";
|
|
|
|
sha256 = "0whlsb6zq4zcp3wq0bd6pgcsl0namr8b2s6i4l5aykq8v7fx40ii";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ binary Cabal cereal cryptoApi tagged ];
|
2010-04-15 14:25:43 +01:00
|
|
|
meta = {
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
|
2011-08-07 23:51:22 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 14:25:43 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|