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