about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pureMD5/default.nix
blob: 34b78092b662861f1c0d8cc3ead71d7a8b9b5361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, binary}:

cabal.mkDerivation (self : {
  pname = "pureMD5";
  version = "1.0.0.3";
  sha256 = "3698e5bc8a0e20bed91b52f976235e52f2c1dd876aa40e94d6c7be293d67d482";
  propagatedBuildInputs = [binary];
  meta = {
    description = "An unrolled implementation of MD5 purely in Haskell";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})