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

  description = ''Destructuring extension of LET*.'';

  deps = [ args."alexandria" args."anaphora" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/let-plus/2017-01-24/let-plus-20170124-git.tgz'';
    sha256 = ''1hfsw4g36vccz2lx6gk375arjj6y85yh9ch3pq7yiybjlxx68xi8'';
  };

  overrides = x: {
  };
}