2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, cereal, cryptoApi, tagged }:
|
2010-04-15 13:25:43 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 13:25:43 +00:00
|
|
|
pname = "pureMD5";
|
2012-09-10 13:08:23 +00:00
|
|
|
version = "2.1.2.1";
|
|
|
|
sha256 = "1zsn949qk95bwx1fbyv84q0lhb4k18bgixl7nivfzsnmhr31fs37";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ binary cereal cryptoApi tagged ];
|
2010-04-15 13:25:43 +00:00
|
|
|
meta = {
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
|
2011-08-07 22:51:22 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 13:25:43 +00:00
|
|
|
};
|
2011-03-28 15:04:00 +00:00
|
|
|
})
|