mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
21 lines
540 B
Nix
21 lines
540 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''cl-who'';
|
|
version = ''1.1.4'';
|
|
|
|
description = ''(X)HTML generation macros'';
|
|
|
|
deps = [ ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/cl-who/2014-12-17/cl-who-1.1.4.tgz'';
|
|
sha256 = ''0r9wc92njz1cc7nghgbhdmd7jy216ylhlabfj0vc45bmfa4w44rq'';
|
|
};
|
|
|
|
overrides = x: {
|
|
postInstall = ''
|
|
echo "$CL_SOURCE_REGISTRY"
|
|
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :cl-who)"' "$out/bin/cl-who-lisp-launcher.sh" ""
|
|
'';
|
|
};
|
|
}
|