mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-27 19:46:40 +03:00
18 lines
408 B
Nix
18 lines
408 B
Nix
![]() |
args @ { fetchurl, ... }:
|
||
|
rec {
|
||
|
baseName = ''cl-annot'';
|
||
|
version = ''20150608-git'';
|
||
|
|
||
|
description = ''Python-like Annotation Syntax for Common Lisp'';
|
||
|
|
||
|
deps = [ args."alexandria" ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = ''http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz'';
|
||
|
sha256 = ''0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3'';
|
||
|
};
|
||
|
|
||
|
overrides = x: {
|
||
|
};
|
||
|
}
|