summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-base64.nix
blob: a4a9a9261fd6f1b062cd04d453bae709e79add44 (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
args @ { fetchurl, ... }:
rec {
  baseName = ''cl-base64'';
  version = ''20150923-git'';

  parasites = [ "cl-base64-tests" ];

  description = ''Base64 encoding and decoding with URI support.'';

  deps = [ args."kmrcl" args."ptester" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/cl-base64/2015-09-23/cl-base64-20150923-git.tgz'';
    sha256 = ''0haip5x0091r9xa8gdzr21s0rk432998nbxxfys35lhnyc1vgyhp'';
  };

  packageName = "cl-base64";

  asdFilesToKeep = ["cl-base64.asd"];
  overrides = x: x;
}
/* (SYSTEM cl-base64 DESCRIPTION Base64 encoding and decoding with URI support.
    SHA256 0haip5x0091r9xa8gdzr21s0rk432998nbxxfys35lhnyc1vgyhp URL
    http://beta.quicklisp.org/archive/cl-base64/2015-09-23/cl-base64-20150923-git.tgz
    MD5 560d0601eaa86901611f1484257b9a57 NAME cl-base64 FILENAME cl-base64 DEPS
    ((NAME kmrcl FILENAME kmrcl) (NAME ptester FILENAME ptester)) DEPENDENCIES
    (kmrcl ptester) VERSION 20150923-git SIBLINGS NIL PARASITES
    (cl-base64-tests)) */