quicklispPackages: add a basic set of packages, make sure that quicklispPackages_asdf_3_1 can be built completely
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''lquery'';
|
||||
version = ''20160929-git'';
|
||||
|
||||
description = ''A library to allow jQuery-like HTML/DOM manipulation.'';
|
||||
|
||||
deps = [ args."array-utils" args."clss" args."form-fiddle" args."plump" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/lquery/2016-09-29/lquery-20160929-git.tgz'';
|
||||
sha256 = ''1kqc0n4zh44yay9vbv6wirk3122q7if2999146lrgada5fy17r7x'';
|
||||
};
|
||||
|
||||
overrides = x: {
|
||||
postInstall = ''
|
||||
echo "$CL_SOURCE_REGISTRY"
|
||||
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :lquery)"' "$out/bin/lquery-lisp-launcher.sh" ""
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user