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

  description = ''small library to deal with command-line arguments'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/command-line-arguments/2015-12-18/command-line-arguments-20151218-git.tgz'';
    sha256 = ''07yv3vj9kjd84q09d6kvgryqxb71bsa7jl22fd1an6inmk0a3yyh'';
  };

  overrides = x: {
  };
}