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 = ''uffi'';
version = ''20150923-git'';
description = ''Universal Foreign Function Library for Common Lisp'';
deps = [ ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/uffi/2015-09-23/uffi-20150923-git.tgz'';
sha256 = ''1b3mb1ac5hqpn941pmgwkiy241rnin308haxbs2f4rwp2la7wzyy'';
};
overrides = x: {
postInstall = ''
echo "$CL_SOURCE_REGISTRY"
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :uffi)"' "$out/bin/uffi-lisp-launcher.sh" ""
'';
};
}