lispPackages: migrate to quicklispPackages where possible

This commit is contained in:
Michael Raskin
2017-03-31 12:06:46 +02:00
parent 37847f263c
commit 02f58311ec
21 changed files with 555 additions and 572 deletions
@@ -0,0 +1,21 @@
args @ { fetchurl, ... }:
rec {
baseName = ''pcall'';
version = ''0.3'';
description = '''';
deps = [ args."bordeaux-threads" args."pcall-queue" ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz'';
sha256 = ''02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y'';
};
overrides = x: {
postInstall = ''
echo "$CL_SOURCE_REGISTRY"
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :pcall)"' "$out/bin/pcall-lisp-launcher.sh" ""
'';
};
}