0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

quicklispPackages: add a basic set of packages, make sure that quicklispPackages_asdf_3_1 can be built completely

This commit is contained in:
Michael Raskin 2017-03-30 22:54:56 +02:00
parent 5032d477a0
commit 0f69573731
129 changed files with 3012 additions and 438 deletions

View file

@ -0,0 +1,21 @@
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" ""
'';
};
}