mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
quicklispPackages: add a basic set of packages, make sure that quicklispPackages_asdf_3_1 can be built completely
This commit is contained in:
parent
5032d477a0
commit
0f69573731
129 changed files with 3012 additions and 438 deletions
|
@ -0,0 +1,22 @@
|
|||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''named-readtables'';
|
||||
version = ''20170124-git'';
|
||||
|
||||
description = ''Library that creates a namespace for named readtable
|
||||
akin to the namespace of packages.'';
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/named-readtables/2017-01-24/named-readtables-20170124-git.tgz'';
|
||||
sha256 = ''1j0drddahdjab40dd9v9qy92xbvzwgbk6y3hv990sdp9f8ac1q45'';
|
||||
};
|
||||
|
||||
overrides = x: {
|
||||
postInstall = ''
|
||||
echo "$CL_SOURCE_REGISTRY"
|
||||
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :named-readtables)"' "$out/bin/named-readtables-lisp-launcher.sh" ""
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue