mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
22 lines
639 B
Nix
22 lines
639 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''cl-syntax'';
|
|
version = ''20150407-git'';
|
|
|
|
description = ''Reader Syntax Coventions for Common Lisp and SLIME'';
|
|
|
|
deps = [ args."named-readtables" args."trivial-types" ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz'';
|
|
sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n'';
|
|
};
|
|
|
|
overrides = x: {
|
|
postInstall = ''
|
|
echo "$CL_SOURCE_REGISTRY"
|
|
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :cl-syntax)"' "$out/bin/cl-syntax-lisp-launcher.sh" ""
|
|
'';
|
|
};
|
|
}
|