21 lines
642 B
Nix
21 lines
642 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''cl-ansi-text'';
|
|
version = ''20150804-git'';
|
|
|
|
description = ''ANSI control string characters, focused on color'';
|
|
|
|
deps = [ args."alexandria" args."cl-colors" ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/cl-ansi-text/2015-08-04/cl-ansi-text-20150804-git.tgz'';
|
|
sha256 = ''112w7qg8yp28qyc2b5c7km457krr3xksxyps1icmgdpqf9ccpn2i'';
|
|
};
|
|
|
|
overrides = x: {
|
|
postInstall = ''
|
|
echo "$CL_SOURCE_REGISTRY"
|
|
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :cl-ansi-text)"' "$out/bin/cl-ansi-text-lisp-launcher.sh" ""
|
|
'';
|
|
};
|
|
}
|