summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
blob: 9450a0431abadb50398e5c004366e71cf987da09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args @ { fetchurl, ... }:
rec {
  baseName = ''md5'';
  version = ''20150804-git'';

  description = ''The MD5 Message-Digest Algorithm RFC 1321'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/md5/2015-08-04/md5-20150804-git.tgz'';
    sha256 = ''1sf79pjip19sx7zmznz1wm4563qc208lq49m0jnhxbv09wmm4vc5'';
  };

  overrides = x: {
  };
}