about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
blob: 48e7595f3e0689e80c22a6064630f13abcef7b46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
args @ { fetchurl, ... }:
rec {
  baseName = "ironclad";
  version = "v0.51";

  parasites = [ "ironclad/tests" ];

  description = "A cryptographic toolkit written in pure Common Lisp";

  deps = [ args."alexandria" args."bordeaux-threads" args."rt" ];

  src = fetchurl {
    url = "http://beta.quicklisp.org/archive/ironclad/2020-09-25/ironclad-v0.51.tgz";
    sha256 = "0zfazyvg91fxr9gm195qwwf1y5qdci7i1cwzpv0fggxhylpkswrn";
  };

  packageName = "ironclad";

  asdFilesToKeep = ["ironclad.asd"];
  overrides = x: x;
}
/* (SYSTEM ironclad DESCRIPTION
    A cryptographic toolkit written in pure Common Lisp SHA256
    0zfazyvg91fxr9gm195qwwf1y5qdci7i1cwzpv0fggxhylpkswrn URL
    http://beta.quicklisp.org/archive/ironclad/2020-09-25/ironclad-v0.51.tgz
    MD5 23b0b6a654bceca511e100fdc976e107 NAME ironclad FILENAME ironclad DEPS
    ((NAME alexandria FILENAME alexandria)
     (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME rt FILENAME rt))
    DEPENDENCIES (alexandria bordeaux-threads rt) VERSION v0.51 SIBLINGS
    (ironclad-text) PARASITES (ironclad/tests)) */