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,21 @@
|
|||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''do-urlencode'';
|
||||
version = ''20130720-git'';
|
||||
|
||||
description = ''Percent Encoding (aka URL Encoding) library'';
|
||||
|
||||
deps = [ args."babel" args."babel-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/do-urlencode/2013-07-20/do-urlencode-20130720-git.tgz'';
|
||||
sha256 = ''19l4rwqc52w7nrpy994b3n2dcv8pjgc530yn2xmgqlqabpxpz3xa'';
|
||||
};
|
||||
|
||||
overrides = x: {
|
||||
postInstall = ''
|
||||
echo "$CL_SOURCE_REGISTRY"
|
||||
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :do-urlencode)"' "$out/bin/do-urlencode-lisp-launcher.sh" ""
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue