lisp-modules: remove pkgs/development/lisp-modules-obsolete

-21498
-30
pkgs/development/lisp-modules-obsolete/README.txt
··· 1 - Want to add a package? There are 3 simple steps! 2 - 1. Add the needed system names to quicklisp-to-nix-systems.txt. 3 - 2. cd <path to quicklisp-to-nix-systems.txt> ; nix-shell --pure --run 'quicklisp-to-nix .' 4 - You might want to specify also the --cacheSystemInfoDir and --cacheFaslDir 5 - parameters to preserve some data between runs. For example, it is very 6 - useful when you add new packages with native dependencies and fail to 7 - specify the native dependencies correctly the first time. 8 - (Might be nice to ensure the cache directories exist) 9 - 3. Add native libraries and whatever else is needed to quicklisp-to-nix-overrides.nix. 10 - If libraries are needed during package analysis then add them to shell.nix, too. 11 - 4. Sometimes there are problems with loading implementation-provided systems. 12 - In this case you might need to add more systems in the implementation's (so 13 - SBCL's) entry into *implementation-systems* in quicklisp-to-nix/system-info.lisp 14 - 15 - To update to a more recent quicklisp dist modify 16 - lispPackages.quicklisp to have a more recent distinfo. 17 - 18 - quicklisp-to-nix-system-info is responsible for installing a quicklisp 19 - package into an isolated environment and figuring out which packages 20 - are required by that system. It also extracts other information that 21 - is readily available once the system is loaded. The information 22 - produced by this program is fed into quicklisp-to-nix. You usually 23 - don't need to run this program unless you're trying to understand why 24 - quicklisp-to-nix failed to handle a system. The technique used by 25 - quicklisp-to-nix-system-info is described in its source. 26 - 27 - quicklisp-to-nix is responsible for reading 28 - quicklisp-to-nix-systems.txt, running quicklisp-to-nix-system-info, 29 - and generating the nix packages associated with the closure of 30 - quicklisp systems.
-38
pkgs/development/lisp-modules-obsolete/asdf/2.26.nix
··· 1 - { lib, stdenv, fetchurl, texinfo, texLive, perl }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "asdf"; 5 - version = "2.26"; 6 - 7 - src = fetchurl { 8 - url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz"; 9 - sha256 = "sha256-tuUuIlZcS+a0izXeJl3Ckp+/PYAWkZ0+Cw7blwkh9+M="; 10 - }; 11 - 12 - strictDeps = true; 13 - nativeBuildInputs = [ 14 - texinfo 15 - texLive 16 - perl 17 - ]; 18 - 19 - buildPhase = '' 20 - make asdf.lisp 21 - mkdir build 22 - ln -s ../asdf.lisp build 23 - ''; 24 - installPhase = '' 25 - mkdir -p "$out"/lib/common-lisp/asdf/ 26 - mkdir -p "$out"/share/doc/asdf/ 27 - cp -r ./* "$out"/lib/common-lisp/asdf/ 28 - cp -r doc/* "$out"/share/doc/asdf/ 29 - ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} 30 - ''; 31 - 32 - meta = with lib; { 33 - description = "Standard software-system definition library for Common Lisp"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ raskin ]; 36 - platforms = platforms.linux; 37 - }; 38 - }
-37
pkgs/development/lisp-modules-obsolete/asdf/3.1.nix
··· 1 - { lib, stdenv, fetchurl, texinfo, texLive, perl }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "asdf"; 5 - version = "3.1.7"; 6 - 7 - src = fetchurl { 8 - url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz"; 9 - sha256 = "sha256-+P+FLM1mr2KRdj7bfhWq4ync86bJS/uE0Jm/E/e4HL0="; 10 - }; 11 - 12 - strictDeps = true; 13 - nativeBuildInputs = [ 14 - texinfo 15 - texLive 16 - perl 17 - ]; 18 - 19 - buildPhase = '' 20 - make build/asdf.lisp 21 - make -C doc asdf.info asdf.html 22 - ''; 23 - installPhase = '' 24 - mkdir -p "$out"/lib/common-lisp/asdf/ 25 - mkdir -p "$out"/share/doc/asdf/ 26 - cp -r ./* "$out"/lib/common-lisp/asdf/ 27 - cp -r doc/* "$out"/share/doc/asdf/ 28 - ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} 29 - ''; 30 - 31 - meta = with lib; { 32 - description = "Standard software-system definition library for Common Lisp"; 33 - license = licenses.mit; 34 - maintainers = with maintainers; [ raskin ]; 35 - platforms = platforms.unix; 36 - }; 37 - }
-37
pkgs/development/lisp-modules-obsolete/asdf/default.nix
··· 1 - { lib, stdenv, fetchurl, texinfo, texLive, perl }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "asdf"; 5 - version = "3.3.4"; 6 - 7 - src = fetchurl { 8 - url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz"; 9 - sha256 = "sha256-/k7cmN0ymZUgpP4K+IWfhq85TkzfPjTR4QdUgV9n1x4="; 10 - }; 11 - 12 - strictDeps = true; 13 - nativeBuildInputs = [ 14 - texinfo 15 - texLive 16 - perl 17 - ]; 18 - 19 - buildPhase = '' 20 - make build/asdf.lisp 21 - make -C doc asdf.info asdf.html 22 - ''; 23 - installPhase = '' 24 - mkdir -p "$out"/lib/common-lisp/asdf/ 25 - mkdir -p "$out"/share/doc/asdf/ 26 - cp -r ./* "$out"/lib/common-lisp/asdf/ 27 - cp -r doc/* "$out"/share/doc/asdf/ 28 - ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} 29 - ''; 30 - 31 - meta = with lib; { 32 - description = "Standard software-system definition library for Common Lisp"; 33 - license = licenses.mit; 34 - maintainers = with maintainers; [ raskin ]; 35 - platforms = platforms.unix; 36 - }; 37 - }
-67
pkgs/development/lisp-modules-obsolete/clwrapper/build-with-lisp.sh
··· 1 - #! /bin/sh 2 - # Part of NixPkgs package collection 3 - # This script can be used at your option under the same license as NixPkgs or 4 - # under MIT/X11 license 5 - 6 - lisp="$1" 7 - systems="$2" 8 - target="$3" 9 - code="$4" 10 - 11 - NIX_LISP_SKIP_CODE=1 NIX_LISP_COMMAND="$lisp" source "$(dirname "$0")/cl-wrapper.sh" 12 - 13 - NIX_LISP_BUILD_CODE= 14 - 15 - case "$NIX_LISP" in 16 - sbcl) 17 - NIX_LISP_BUILD_CODE="(progn 18 - (let* 19 - ((old-fn (symbol-function 'sb-alien::dlopen-or-lose ))) 20 - (sb-ext:with-unlocked-packages (:sb-sys :sb-alien) 21 - (defun sb-alien::dlopen-or-lose (&rest args) 22 - (or 23 - (ignore-errors (progn (apply old-fn args))) 24 - (and 25 - args 26 - (loop 27 - with try = nil 28 - with obj = (first args) 29 - with original-namestring = (sb-alien::shared-object-namestring obj) 30 - for path in (list $(echo "$NIX_LISP_LD_LIBRARY_PATH" | sed -e 's/:/" "/g; s/^/"/; s/$/"/')) 31 - for target := (format nil \"~a/~a\" path original-namestring) 32 - when (ignore-errors 33 - (progn 34 - (setf (sb-alien::shared-object-namestring obj) target) 35 - (setf try (apply old-fn args)) 36 - t)) do 37 - (progn (return try)) 38 - finally (progn (setf (sb-alien::shared-object-namestring obj) original-namestring) 39 - (return (apply old-fn args))) 40 - ) 41 - ) 42 - ) 43 - ) 44 - ) 45 - ) 46 - (sb-ext:save-lisp-and-die \"$target\" 47 - :toplevel (lambda () 48 - (setf common-lisp:*standard-input* (sb-sys::make-fd-stream 0 :input t :buffering :line)) 49 - (setf common-lisp:*standard-output* (sb-sys::make-fd-stream 1 :output t :buffering :line)) 50 - (setf uiop/image:*command-line-arguments* (cdr sb-ext:*posix-argv*)) 51 - $code) 52 - :executable t :save-runtime-options t :purify t))" 53 - systems=":sb-posix $systems" 54 - ;; 55 - ecl) 56 - NIX_LISP_BUILD_CODE="()" 57 - ;; 58 - clisp) 59 - NIX_LISP_BUILD_CODE="(ext:saveinitmem \"$target\" :norc t :init-function (lambda () $code (ext:bye)) :script nil :executable 0)" 60 - ;; 61 - esac 62 - 63 - "$lisp" \ 64 - "$NIX_LISP_EXEC_CODE" "(load \"$NIX_LISP_ASDF/lib/common-lisp/asdf/build/asdf.lisp\")" \ 65 - "$NIX_LISP_EXEC_CODE" "(mapcar 'asdf:load-system (list $systems))" \ 66 - "$NIX_LISP_EXEC_CODE" "$NIX_LISP_BUILD_CODE" \ 67 - "$NIX_LISP_EXEC_CODE" "(quit)"
-134
pkgs/development/lisp-modules-obsolete/clwrapper/cl-wrapper.sh
··· 1 - #!@bash@/bin/bash 2 - # Part of NixPkgs package collection 3 - # This script can be used at your option under the same license as NixPkgs or 4 - # under MIT/X11 license 5 - 6 - eval "$NIX_LISP_PREHOOK" 7 - 8 - NIX_LISP_COMMAND="$1" 9 - shift 10 - 11 - if [ -z "$NIX_LISP" ]; then 12 - while [ -h "${NIX_LISP_COMMAND}" ]; do 13 - NIX_LISP_COMMAND="$(readlink -n "${NIX_LISP_COMMAND}")" 14 - done 15 - NIX_LISP="${NIX_LISP_COMMAND##*/}" 16 - fi 17 - 18 - export NIX_LISP NIX_LISP_LOAD_FILE NIX_LISP_EXEC_CODE NIX_LISP_COMMAND NIX_LISP_FINAL_PARAMETERS 19 - 20 - test -n "$NIX_LISP_LD_LIBRARY_PATH" && 21 - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH${LD_LIBRARY_PATH:+:}$NIX_LISP_LD_LIBRARY_PATH" 22 - 23 - declare -a NIX_LISP_FINAL_PARAMETERS; 24 - 25 - case "$NIX_LISP" in 26 - sbcl) 27 - NIX_LISP_LOAD_FILE="--load" 28 - NIX_LISP_EXEC_CODE="--eval" 29 - NIX_LISP_QUIT="(quit)" 30 - NIX_LISP_NODEBUG='--non-interactive' 31 - NIX_LISP_FINAL_PARAMETERS= 32 - NIX_LISP_FASL_TYPE="fasl" 33 - ;; 34 - ecl) 35 - NIX_LISP_LOAD_FILE="-load" 36 - NIX_LISP_EXEC_CODE="-eval" 37 - NIX_LISP_QUIT="(quit)" 38 - NIX_LISP_NODEBUG='--nodebug' 39 - NIX_LISP_FINAL_PARAMETERS= 40 - NIX_LISP_FASL_TYPE="fas" 41 - ;; 42 - clisp) 43 - NIX_LISP_LOAD_FILE="-c -l" 44 - NIX_LISP_EXEC_CODE="-x" 45 - NIX_LISP_QUIT="(quit)" 46 - NIX_LISP_NODEBUG='-on-error exit' 47 - NIX_LISP_FINAL_PARAMETERS="-repl" 48 - NIX_LISP_FASL_TYPE="fas" 49 - ;; 50 - lx86cl64) 51 - NIX_LISP_LOAD_FILE="-l" 52 - NIX_LISP_EXEC_CODE="-e" 53 - NIX_LISP_QUIT="(quit)" 54 - NIX_LISP_NODEBUG='-b' 55 - NIX_LISP_FINAL_PARAMETERS= 56 - NIX_LISP_FASL_TYPE="lx64fsl" 57 - ;; 58 - lx86cl) 59 - NIX_LISP_LOAD_FILE="-l" 60 - NIX_LISP_EXEC_CODE="-e" 61 - NIX_LISP_QUIT="(quit)" 62 - NIX_LISP_NODEBUG='-b' 63 - NIX_LISP_FINAL_PARAMETERS= 64 - NIX_LISP_FASL_TYPE="lx32fsl" 65 - ;; 66 - abcl) 67 - NIX_LISP_LOAD_FILE="--load" 68 - NIX_LISP_EXEC_CODE="--eval" 69 - NIX_LISP_QUIT="(quit)" 70 - NIX_LISP_NODEBUG='' 71 - NIX_LISP_FINAL_PARAMETERS= 72 - NIX_LISP_FASL_TYPE="abcl" 73 - ;; 74 - esac 75 - 76 - NIX_LISP_ASDF_REGISTRY_CODE=" 77 - (progn 78 - (setf asdf:*source-registry-parameter* 79 - '(:source-registry 80 - $(for p in $NIX_LISP_ASDF_PATHS; do 81 - echo "(:tree \"$p\")" 82 - done) 83 - :inherit-configuration)) 84 - (asdf:initialize-source-registry) 85 - ) 86 - " 87 - 88 - NIX_LISP_ASDF="${NIX_LISP_ASDF:-@out@}" 89 - 90 - nix_lisp_run_single_form(){ 91 - NIX_LISP_FINAL_PARAMETERS=("$NIX_LISP_EXEC_CODE" "$1" 92 - "$NIX_LISP_EXEC_CODE" "$NIX_LISP_QUIT" $NIX_LISP_NODEBUG) 93 - } 94 - 95 - nix_lisp_build_system(){ 96 - NIX_LISP_FINAL_PARAMETERS=( 97 - "$NIX_LISP_EXEC_CODE" "(progn 98 - (asdf:load-system :$1) 99 - (loop for s in (list $(for i in $3; do echo ":$i"; done)) do (asdf:load-system s)))" 100 - "$NIX_LISP_EXEC_CODE" "(progn 101 - (setf (asdf/system:component-entry-point (asdf:find-system :$1)) ${2:-nil}) 102 - #+cffi(setf cffi:*foreign-library-directories* 103 - (cffi::explode-path-environment-variable \"NIX_LISP_LD_LIBRARY_PATH\")) 104 - #+sbcl(loop 105 - with libpath := (uiop:split-string (uiop:getenv \"NIX_LISP_LD_LIBRARY_PATH\") 106 - :separator \":\") 107 - for l in sb-alien::*shared-objects* 108 - for ns := (sb-alien::shared-object-namestring l) 109 - do (format *error-output* \"Searching alien object ~s in ~s~%\" 110 - ns libpath) 111 - do (and (> (length ns) 0) (not (equal (elt ns 0) \"/\")) 112 - (let* 113 - ((prefix (find-if (lambda (s) (probe-file (format nil \"~a/~a\" s ns))) libpath)) 114 - (fullpath (and prefix (format nil \"~a/~a\" prefix ns)))) 115 - (when fullpath 116 - (format *error-output* \"Found: ~s~%\" fullpath) 117 - (setf 118 - (sb-alien::shared-object-namestring l) fullpath 119 - (sb-alien::shared-object-pathname l) (probe-file fullpath))))) 120 - ) 121 - $4 122 - (asdf:perform (quote asdf:program-op) :$1) 123 - )") 124 - } 125 - 126 - eval "$NIX_LISP_PRELAUNCH_HOOK" 127 - 128 - if [ -z "$NIX_LISP_SKIP_CODE" ]; then 129 - "$NIX_LISP_COMMAND" $NIX_LISP_EARLY_OPTIONS \ 130 - $NIX_LISP_EXEC_CODE "${NIX_LISP_ASDF_LOAD:-"(load \"$NIX_LISP_ASDF/lib/common-lisp/asdf/build/asdf.$NIX_LISP_FASL_TYPE\")"}" \ 131 - $NIX_LISP_EXEC_CODE "$NIX_LISP_ASDF_REGISTRY_CODE" \ 132 - ${NIX_LISP_FINAL_PARAMETERS[*]:+"${NIX_LISP_FINAL_PARAMETERS[@]}"} \ 133 - "$@" 134 - fi
-3
pkgs/development/lisp-modules-obsolete/clwrapper/common-lisp.sh
··· 1 - #!@bash@/bin/bash 2 - 3 - source "@out@"/bin/cl-wrapper.sh "${NIX_LISP_COMMAND:-$(@ls@ "@lisp@/bin"/* | @head@ -n 1)}" "$@"
-57
pkgs/development/lisp-modules-obsolete/clwrapper/default.nix
··· 1 - {lib, stdenv, asdf, which, bash, lisp ? null}: 2 - stdenv.mkDerivation { 3 - name = "cl-wrapper-script"; 4 - 5 - buildPhase=""; 6 - 7 - installPhase='' 8 - mkdir -p "$out"/bin 9 - export head="$(which head)" 10 - export ls="$(which ls)" 11 - substituteAll ${./common-lisp.sh} "$out"/bin/common-lisp.sh 12 - substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.sh" 13 - substituteAll "${./cl-wrapper.sh}" "$out/bin/cl-wrapper.sh" 14 - patchShebangs "$out/bin" 15 - chmod a+x "$out"/bin/* 16 - 17 - substituteAll "${./setup-hook.sh}" "setup-hook-parsed" 18 - addEnvHooks(){ true; }; 19 - source setup-hook-parsed 20 - setLisp "${lisp}" 21 - echo "$NIX_LISP" 22 - 23 - mkdir -p "$out/lib/common-lisp/" 24 - cp -r "${asdf}/lib/common-lisp"/* "$out/lib/common-lisp/" 25 - chmod u+rw -R "$out/lib/common-lisp/" 26 - 27 - NIX_LISP_PRELAUNCH_HOOK=' 28 - NIX_LISP_FASL_TYPE=lisp 29 - nix_lisp_run_single_form "(progn 30 - (uiop/lisp-build:compile-file* \"'"$out"'/lib/common-lisp/asdf/build/asdf.lisp\") 31 - (asdf:load-system :uiop :force :all) 32 - (asdf:load-system :asdf :force :all) 33 - (ignore-errors (asdf:load-system :uiop/version :force :all)) 34 - )"' \ 35 - "$out/bin/common-lisp.sh" 36 - ''; 37 - 38 - buildInputs = [which]; 39 - 40 - inherit asdf lisp bash; 41 - stdenv_shell = stdenv.shell; 42 - 43 - setupHook = ./setup-hook.sh; 44 - 45 - dontUnpack = true; 46 - 47 - ASDF_OUTPUT_TRANSLATIONS="${builtins.storeDir}/:${builtins.storeDir}"; 48 - 49 - passthru = { 50 - inherit lisp; 51 - }; 52 - 53 - meta = { 54 - description = "Script used to wrap Common Lisp implementations"; 55 - maintainers = [lib.maintainers.raskin]; 56 - }; 57 - }
-39
pkgs/development/lisp-modules-obsolete/clwrapper/setup-hook.sh
··· 1 - NIX_LISP_ASDF="@out@" 2 - 3 - CL_SOURCE_REGISTRY="${CL_SOURCE_REGISTRY:+$CL_SOURCE_REGISTRY:}@out@/lib/common-lisp/asdf/" 4 - 5 - addASDFPaths () { 6 - for j in "$1"/lib/common-lisp-settings/*-path-config.sh; do 7 - source "$j" 8 - done 9 - } 10 - 11 - setLisp () { 12 - if [ -z "${NIX_LISP_COMMAND:-}" ]; then 13 - for j in "$1"/bin/*; do 14 - case "$(basename "$j")" in 15 - sbcl) NIX_LISP_COMMAND="$j" ;; 16 - ecl) NIX_LISP_COMMAND="$j" ;; 17 - clisp) NIX_LISP_COMMAND="$j" ;; 18 - lx86cl) NIX_LISP_COMMAND="$j" ;; 19 - lx86cl64) NIX_LISP_COMMAND="$j" ;; 20 - esac 21 - done 22 - fi 23 - if [ -n "${NIX_LISP_COMMAND:-}" ] && [ -z "${NIX_LISP:-}" ]; then 24 - NIX_LISP="${NIX_LISP_COMMAND##*/}" 25 - fi 26 - } 27 - 28 - collectNixLispLDLP () { 29 - if echo "$1/lib"/lib*.{so,dylib}* | grep . > /dev/null; then 30 - export NIX_LISP_LD_LIBRARY_PATH="${NIX_LISP_LD_LIBRARY_PATH-}${NIX_LISP_LD_LIBRARY_PATH:+:}$1/lib" 31 - fi 32 - } 33 - 34 - export NIX_LISP_COMMAND NIX_LISP CL_SOURCE_REGISTRY NIX_LISP_ASDF 35 - 36 - addEnvHooks "$targetOffset" addASDFPaths setLisp collectNixLispLDLP 37 - 38 - mkdir -p "$HOME"/.cache/common-lisp || HOME="$TMP/.temp-${USER:-nixbld}-home" 39 - mkdir -p "$HOME"/.cache/common-lisp
-120
pkgs/development/lisp-modules-obsolete/define-package.nix
··· 1 - args @ {lib, stdenv, clwrapper, baseName, packageName ? baseName 2 - , parasites ? [] 3 - , buildSystems ? ([packageName] ++ parasites) 4 - , version ? "latest" 5 - , src, description, deps, buildInputs ? [], meta ? {}, overrides?(x: {}) 6 - , propagatedBuildInputs ? [] 7 - , asdFilesToKeep ? [(builtins.concatStringsSep "" [packageName ".asd"])]}: 8 - let 9 - deployConfigScript = '' 10 - outhash="$out" 11 - outhash="''${outhash##*/}" 12 - outhash="''${outhash%%-*}" 13 - config_script="$out"/lib/common-lisp-settings/${args.baseName}-shell-config.sh 14 - path_config_script="$out"/lib/common-lisp-settings/${args.baseName}-path-config.sh 15 - store_translation="$(dirname "$out"):$(dirname "$out")" 16 - mkdir -p "$(dirname "$config_script")" 17 - touch "$config_script" 18 - touch "$path_config_script" 19 - chmod a+x "$config_script" 20 - chmod a+x "$path_config_script" 21 - echo "if test -z \"\''${_''${outhash}_NIX_LISP_CONFIG:-}\"; then export _''${outhash}_NIX_LISP_CONFIG=1; " >> "$config_script" 22 - echo "export NIX_CFLAGS_COMPILE='$NIX_CFLAGS_COMPILE'\"\''${NIX_CFLAGS_COMPILE:+ \$NIX_CFLAGS_COMPILE}\"" >> "$config_script" 23 - echo "export NIX_LDFLAGS='$NIX_LDFLAGS'\"\''${NIX_LDFLAGS:+ \$NIX_LDFLAGS}\"" >> "$config_script" 24 - echo "export NIX_LISP_COMMAND='$NIX_LISP_COMMAND'" >> "$config_script" 25 - echo "export NIX_LISP_ASDF='$NIX_LISP_ASDF'" >> "$config_script" 26 - set | grep NIX_CC_WRAPPER_ | sed -e 's@^NIX_CC_WRAPPER@export &@' >> "$config_script" 27 - echo "export PATH=\"\''${PATH:+\$PATH:}$PATH\"" >> "$config_script" 28 - echo "echo \"\$ASDF_OUTPUT_TRANSLATIONS\" | grep -E '(^|:)$store_translation(:|\$)' >/dev/null || export ASDF_OUTPUT_TRANSLATIONS=\"\''${ASDF_OUTPUT_TRANSLATIONS:+\$ASDF_OUTPUT_TRANSLATIONS:}\"'$store_translation'" >> "$config_script" 29 - echo "source '$path_config_script'" >> "$config_script" 30 - echo "fi" >> "$config_script" 31 - echo "if test -z \"\''${_''${outhash}_NIX_LISP_PATH_CONFIG:-}\"; then export _''${outhash}_NIX_LISP_PATH_CONFIG=1; " >> "$path_config_script" 32 - echo "NIX_LISP_ASDF_PATHS=\"$( echo "\''${NIX_LISP_ASDF_PATHS:-}"; echo "$NIX_LISP_ASDF_PATHS"; echo "$out/lib/common-lisp/${args.baseName}" )\"" >> "$path_config_script" 33 - echo "export NIX_LISP_ASDF_PATHS=\$((tr ' ' '\n' | sort | uniq | tr '\n' ' ') <<< \$NIX_LISP_ASDF_PATHS)" >> $path_config_script 34 - 35 - test -n "$LD_LIBRARY_PATH" && 36 - echo "export LD_LIBRARY_PATH=\"\$LD_LIBRARY_PATH\''${LD_LIBRARY_PATH:+:}\"'$LD_LIBRARY_PATH'" >> "$path_config_script" 37 - test -n "$NIX_LISP_LD_LIBRARY_PATH" && 38 - echo "export NIX_LISP_LD_LIBRARY_PATH=\"\''${NIX_LISP_LD_LIBRARY_PATH:-}\''${NIX_LISP_LD_LIBRARY_PATH:+:}\"'$(echo "$NIX_LISP_LD_LIBRARY_PATH" | tr -d '\n' | tr : '\n' | sort | uniq | tr '\n' ':' | sed -e 's/:$//')'" >> "$path_config_script" 39 - echo "fi" >> "$path_config_script" 40 - ''; 41 - deployLaunchScript = '' 42 - launch_script="$out"/bin/${args.baseName}-lisp-launcher.sh 43 - mkdir -p "$(dirname "$launch_script")" 44 - touch "$launch_script" 45 - chmod a+x "$launch_script" 46 - echo "#! ${stdenv.shell}" >> "$launch_script" 47 - echo "source '$config_script'" >> "$launch_script" 48 - echo "test -n \"\$NIX_LISP_LD_LIBRARY_PATH\" && export LD_LIBRARY_PATH=\"\$NIX_LISP_LD_LIBRARY_PATH\''${LD_LIBRARY_PATH:+:}\$LD_LIBRARY_PATH\"" >> "$launch_script" 49 - echo '"${clwrapper}/bin/common-lisp.sh" "$@"' >> "$launch_script" 50 - ''; 51 - moveAsdFiles = '' 52 - find $out/lib/common-lisp/ -name '*.asd' | while read ASD_FILE; do 53 - KEEP_THIS_ASD=0 54 - for ALLOWED_ASD in $asdFilesToKeep; do 55 - ALLOWED_ASD="/$ALLOWED_ASD" 56 - ALLOWED_ASD_LENGTH=${"$"}{#ALLOWED_ASD} 57 - ASD_FILE_LENGTH=${"$"}{#ASD_FILE} 58 - ASD_FILE_SUFFIX_INDEX=$(expr "$ASD_FILE_LENGTH" - "$ALLOWED_ASD_LENGTH") 59 - ASD_FILE_SUFFIX_INDEX=$(expr "$ASD_FILE_SUFFIX_INDEX" + 1) 60 - echo $ALLOWED_ASD $ASD_FILE $ASD_FILE_SUFFIX_INDEX $(expr substr "$ASD_FILE" "$ASD_FILE_SUFFIX_INDEX" "$ASD_FILE_LENGTH") 61 - if [ "$(expr substr "$ASD_FILE" "$ASD_FILE_SUFFIX_INDEX" "$ASD_FILE_LENGTH")" == "$ALLOWED_ASD" ]; then 62 - KEEP_THIS_ASD=1 63 - break 64 - fi 65 - done 66 - if [ "$KEEP_THIS_ASD" == 0 ]; then 67 - mv "$ASD_FILE"{,.sibling} 68 - fi 69 - done 70 - ''; 71 - basePackage = { 72 - name = "lisp-${baseName}-${version}"; 73 - inherit src; 74 - 75 - dontBuild = true; 76 - 77 - inherit deployConfigScript deployLaunchScript; 78 - inherit asdFilesToKeep moveAsdFiles; 79 - installPhase = '' 80 - eval "$preInstall" 81 - 82 - mkdir -p "$out"/share/doc/${args.baseName}; 83 - mkdir -p "$out"/lib/common-lisp/${args.baseName}; 84 - cp -r . "$out"/lib/common-lisp/${args.baseName}; 85 - cp -rf doc/* LICENCE LICENSE COPYING README README.html README.md readme.html "$out"/share/doc/${args.baseName} || true 86 - 87 - ${deployConfigScript} 88 - ${deployLaunchScript} 89 - ${moveAsdFiles} 90 - 91 - env -i \ 92 - NIX_LISP="$NIX_LISP" \ 93 - NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(progn 94 - ${lib.concatMapStrings (system: '' 95 - (asdf:compile-system :${system}) 96 - (asdf:load-system :${system}) 97 - (asdf:operate (quote asdf::compile-bundle-op) :${system}) 98 - (ignore-errors (asdf:operate (quote asdf::deploy-asd-op) :${system})) 99 - '') buildSystems} 100 - )"' \ 101 - "$out/bin/${args.baseName}-lisp-launcher.sh" 102 - 103 - eval "$postInstall" 104 - ''; 105 - propagatedBuildInputs = (args.deps or []) ++ [clwrapper clwrapper.lisp clwrapper.asdf] 106 - ++ (args.propagatedBuildInputs or []); 107 - buildInputs = buildInputs; 108 - dontStrip=true; 109 - 110 - ASDF_OUTPUT_TRANSLATIONS="${builtins.storeDir}/:${builtins.storeDir}"; 111 - 112 - noAuditTmpDir = true; 113 - 114 - meta = { 115 - inherit description version; 116 - } // meta; 117 - }; 118 - package = basePackage // (overrides basePackage); 119 - in 120 - stdenv.mkDerivation package
-16
pkgs/development/lisp-modules-obsolete/from-quicklisp/asdf-description.sh
··· 1 - #! /bin/sh 2 - 3 - [ -z "$NIX_QUICKLISP_DIR" ] && { 4 - export NIX_QUICKLISP_DIR="$(mktemp -d --tmpdir nix-quicklisp.XXXXXX)" 5 - } 6 - 7 - [ -f "$NIX_QUICKLISP_DIR/setup.lisp" ] || { 8 - "$(dirname "$0")/quicklisp-beta-env.sh" "$NIX_QUICKLISP_DIR" &> /dev/null < /dev/null 9 - } 10 - 11 - name="$1" 12 - 13 - sbcl --noinform --load "$NIX_QUICKLISP_DIR"/setup.lisp --eval "(ql:quickload :$name)" \ 14 - --eval "(format t \"~a~%\" (or (asdf::system-description (asdf::find-system \"$name\")) \"\"))" \ 15 - --eval '(quit)' --script | 16 - tee /dev/stderr | tail -n 1
-174
pkgs/development/lisp-modules-obsolete/from-quicklisp/barebones-quicklisp-expression.sh
··· 1 - #! /bin/sh 2 - 3 - name="$1" 4 - 5 - [ -z "$NIX_LISP_PACKAGES_DEFINED_LIST" ] && export NIX_LISP_PACKAGES_DEFINED_LIST="$(mktemp)" 6 - 7 - if [ -n "$NIX_LISP_UPDATE_PACKAGE" ] || [ -n "$NIX_LISP_UPDATE_PACKAGES" ]; then 8 - export NIX_LISP_UPDATE_PACKAGE= 9 - else 10 - nix-instantiate "$(dirname "$0")"/../../../../ -A "lispPackages.$name" > /dev/null && exit 11 - fi 12 - grep "^$name\$" "$NIX_LISP_PACKAGES_DEFINED_LIST" > /dev/null && exit 13 - 14 - echo "$name" >> "$NIX_LISP_PACKAGES_DEFINED_LIST" 15 - 16 - [ -z "$NIX_QUICKLISP_DIR" ] && { 17 - export NIX_QUICKLISP_DIR="$(mktemp -d --tmpdir nix-quicklisp.XXXXXX)" 18 - } 19 - 20 - [ -f "$NIX_QUICKLISP_DIR/setup.lisp" ] || { 21 - "$(dirname "$0")/quicklisp-beta-env.sh" "$NIX_QUICKLISP_DIR" &> /dev/null < /dev/null 22 - } 23 - 24 - description="$("$(dirname "$0")/asdf-description.sh" "$name")" 25 - [ -z "$description" ] && { 26 - description="$(curl -L https://github.com/quicklisp/quicklisp-projects/raw/master/"$name"/description.txt)" 27 - [ "$(echo "$description" | wc -l)" -gt 10 ] && description="" 28 - } 29 - 30 - dependencies="$("$(dirname "$0")/quicklisp-dependencies.sh" "$name" | xargs)" 31 - ql_src="$(curl -L https://github.com/quicklisp/quicklisp-projects/raw/master/"$name"/source.txt)" 32 - ql_src_type="${ql_src%% *}" 33 - url="${ql_src##* }" 34 - 35 - [ "$ql_src_type" = "kmr-git" ] && { 36 - ql_src_type=git 37 - url="http://git.kpe.io/$url.git" 38 - export NIX_PREFETCH_GIT_DEEP_CLONE=1 39 - } 40 - 41 - [ "$ql_src_type" = ediware-http ] && { 42 - ql_src_type=github 43 - url="edicl/$url"; 44 - } 45 - 46 - [ "$ql_src_type" = xach-http ] && { 47 - ql_src_type=github 48 - url="xach/$url"; 49 - } 50 - 51 - [ "$ql_src_type" = github ] && { 52 - ql_src_type=git 53 - url="https://github.com/$url"; 54 - version="$("$(dirname "$0")/urls-from-page.sh" "$url/releases/" | grep /tag/ | head -n 1 | xargs -l1 basename)" 55 - rev="refs/tags/$version"; 56 - } 57 - 58 - [ "$ql_src_type" = git ] && { 59 - fetcher="pkgs.fetchgit" 60 - ( [ "${url#git://github.com/}" != "$url" ] || 61 - [ "${url#https://github.com/}" != "$url" ] 62 - ) && { 63 - url="${url/git:/https:}" 64 - url="${url%.git}" 65 - [ -z "$rev" ] && rev=$("$(dirname "$0")/urls-from-page.sh" "$url/commits" | grep /commit/ | head -n 1 | xargs basename) 66 - hash=$("$(dirname "$0")/../../../build-support/fetchgit/nix-prefetch-git" "$url" "$rev" | grep . | tail -n 1) 67 - [ -z "$version" ] && version="git-$(date +%Y%m%d)"; 68 - } 69 - [ "${url#git://common-lisp.net/}" != "$url" ] && { 70 - http_repo_url="$url" 71 - http_repo_url="${http_repo_url/git:/http:}" 72 - http_repo_url="${http_repo_url/\/projects\// /r/projects/}" 73 - http_repo_head="$http_repo_url/refs/heads/master" 74 - echo "$http_repo_head" >&2 75 - [ -z "$rev" ] && rev=$(curl -L "$http_repo_head"); 76 - hash=$("$(dirname "$0")/../../../build-support/fetchgit/nix-prefetch-git" "$url" "$rev") 77 - [ -z "$version" ] && version="git-$(date +%Y%m%d)"; 78 - } 79 - [ "${url#http://git.b9.com/}" != "$url" ] && { 80 - http_repo_url="$url" 81 - http_repo_url="${http_repo_url/git:/http:}" 82 - http_repo_head="$http_repo_url/refs/heads/master" 83 - echo "$http_repo_head" >&2 84 - rev=$(curl -L "$http_repo_head"); 85 - hash=$("$(dirname "$0")/../../../build-support/fetchgit/nix-prefetch-git" "$url" "$rev" | tail -n 1) 86 - version="git-$(date +%Y%m%d)"; 87 - } 88 - [ "${url#http://common-lisp.net/}" != "$url" ] && { 89 - http_repo_url="$url" 90 - http_repo_url="${http_repo_url/git:/http:}" 91 - http_repo_head="$http_repo_url/refs/heads/master" 92 - echo "$http_repo_head" >&2 93 - rev=$(curl -L "$http_repo_head"); 94 - hash=$("$(dirname "$0")/../../../build-support/fetchgit/nix-prefetch-git" "$url" "$rev" | tail -n 1) 95 - version="git-$(date +%Y%m%d)"; 96 - } 97 - } 98 - 99 - [ "$ql_src_type" = cvs ] && { 100 - fetcher="pkgs.fetchcvs" 101 - date="$(date -d yesterday +%Y-%m-%d)" 102 - version="cvs-$date" 103 - module="${module:-$name}" 104 - hash=$(USE_DATE=1 "$(dirname "$0")/../../../build-support/fetchcvs/nix-prefetch-cvs" "$url" "$module" "$date") 105 - cvsRoot="$url" 106 - unset url 107 - } 108 - 109 - [ "$ql_src_type" = clnet-darcs ] && { 110 - ql_src_type=darcs 111 - url="http://common-lisp.net/project/$url/darcs/$url/" 112 - } 113 - 114 - [ "$ql_src_type" = darcs ] && { 115 - fetcher="pkgs.fetchdarcs" 116 - [ -z "$version" ] && 117 - version="$(curl "$url/_darcs/inventory" | grep '\[TAG ' | tail -n 1 | sed -e 's/.* //')" 118 - [ -z "$version" ] && 119 - version="$(curl "$url/_darcs/hashed_inventory" | grep '\[TAG ' | tail -n 1 | sed -e 's/.* //')" 120 - rev="$version"; 121 - hash=$(echo " 122 - with (import <nixpkgs> {}); 123 - fetchdarcs { 124 - url=''$url''; 125 - rev=''$version''; 126 - sha256=''0000000000000000000000000000000000000000000000000000000000000000''; 127 - }" | nix-instantiate - | tail -n 1 | 128 - xargs nix-store -r 2>&1 | tee /dev/stderr | grep 'instead has' | tail -n 1 | 129 - sed -e 's/.* instead has .//;s/[^0-9a-z].*//') 130 - } 131 - 132 - [ "$ql_src_type" = froydware-http ] && { 133 - dirurl="http://method-combination.net/lisp/files/"; 134 - url="$("$(dirname "$0")/urls-from-page.sh" "$dirurl" | 135 - grep "/${url}_" | grep -v "[.]asc\$" | tail -n 1)" 136 - ql_src_type=http 137 - } 138 - 139 - [ "$ql_src_type" = http ] && { 140 - fetcher="pkgs.fetchurl"; 141 - version="$(echo "$url" | sed -re 's@.*[-_]([0-9.]+)[-._].*@\1@')" 142 - hash="$(nix-prefetch-url "$url" | grep . | tail -n 1)" 143 - } 144 - 145 - [ "$ql_src_type" = https ] && { 146 - fetcher="pkgs.fetchurl"; 147 - version="$(echo "$url" | sed -re 's@.*[-_]([0-9.]+)[-._].*@\1@')" 148 - hash="$(nix-prefetch-url "$url" | grep . | tail -n 1)" 149 - } 150 - 151 - if [ "$ql_src" = '{"error":"Not Found"}' ]; then 152 - echo "# $name: not found" 153 - else 154 - cat << EOF | grep -Ev '^[ ]+$' 155 - 156 - $name = buildLispPackage rec { 157 - baseName = "$name"; 158 - version = "${version:-\${Set me //}"; 159 - description = "$description"; 160 - deps = [$dependencies]; 161 - # Source type: $ql_src_type 162 - src = ${fetcher:-pkgs.fetchurl} { 163 - ${url:+url = ''$url'';} 164 - sha256 = "${hash:-0000000000000000000000000000000000000000000000000000000000000000}"; 165 - ${rev:+rev = ''$rev'';} 166 - ${date:+date = ''$date'';} 167 - ${module:+module = ''$module'';} 168 - ${cvsRoot:+cvsRoot = ''$cvsRoot'';} 169 - }; 170 - }; 171 - EOF 172 - fi 173 - 174 - for i in $dependencies; do "$0" "$i"; done
-16
pkgs/development/lisp-modules-obsolete/from-quicklisp/quicklisp-beta-env.sh
··· 1 - #! /bin/sh 2 - 3 - WORK_DIR=$(mktemp -d "/tmp/ql-venv-XXXXXX") 4 - mkdir -p "${1:-.}" 5 - TARGET="$(cd "${1:-.}"; pwd)" 6 - 7 - curl http://beta.quicklisp.org/quicklisp.lisp > "$WORK_DIR/ql.lisp" 8 - 9 - sbcl --noinform \ 10 - --load "$WORK_DIR/ql.lisp" \ 11 - --eval "(quicklisp-quickstart:install :path \"$TARGET/\")" \ 12 - --eval "(cl-user::quit)" \ 13 - --script 14 - 15 - 16 - rm -rf "$WORK_DIR"
-11
pkgs/development/lisp-modules-obsolete/from-quicklisp/quicklisp-dependencies.sh
··· 1 - #! /bin/sh 2 - 3 - [ -z "$NIX_QUICKLISP_DIR" ] && { 4 - export NIX_QUICKLISP_DIR="$(mktemp -d --tmpdir nix-quicklisp.XXXXXX)" 5 - } 6 - 7 - [ -f "$NIX_QUICKLISP_DIR/setup.lisp" ] || { 8 - "$(dirname "$0")/quicklisp-beta-env.sh" "$NIX_QUICKLISP_DIR" &> /dev/null < /dev/null 9 - } 10 - 11 - sbcl --noinform --eval "(with-output-to-string (*standard-output*) (load \"$NIX_QUICKLISP_DIR/setup.lisp\"))" --eval "(with-output-to-string (*standard-output*) (with-output-to-string (*error-output*) (with-output-to-string (*trace-output*) (ql:quickload :$1))))" --eval "(format t \"~{~a~%~}\" (mapcar 'ql::name (mapcar 'car (cdr (ql::dependency-tree \"$1\")))))" --eval '(quit)' --script
-14
pkgs/development/lisp-modules-obsolete/from-quicklisp/urls-from-page.sh
··· 1 - #! /bin/sh 2 - 3 - url="$1" 4 - protocol="${url%%:*}" 5 - path="${url#$protocol://}" 6 - server="${path%%/*}" 7 - basepath="${path%/*}" 8 - relpath="${path#$server}" 9 - 10 - echo "URL: $url" >&2 11 - 12 - curl -A 'text/html; text/xhtml; text/xml; */*' -L -k "$url" | sed -re 's/^/-/;s/[^a-zA-Z][hH][rR][eE][fF]=("([^"]*)"|'\''([^'\'']*)'\''|([^"'\'' <>&]+)[ <>&])/\n+\2\3\4\n-/g' | \ 13 - sed -e '/^-/d; s/^[+]//; /^#/d;'"s/^\\//$protocol:\\/\\/$server\\//g" | \ 14 - sed -re 's`^[^:]*$`'"$protocol://$basepath/&\`"
-272
pkgs/development/lisp-modules-obsolete/lisp-packages.nix
··· 1 - {lib, stdenv, clwrapper, pkgs, sbcl, coreutils, nix, asdf}: 2 - let lispPackages = rec { 3 - inherit lib pkgs clwrapper stdenv; 4 - nixLib = pkgs.lib; 5 - callPackage = nixLib.callPackageWith lispPackages; 6 - 7 - buildLispPackage = callPackage ./define-package.nix; 8 - 9 - quicklisp = buildLispPackage rec { 10 - baseName = "quicklisp"; 11 - version = "2021-02-13"; 12 - 13 - buildSystems = []; 14 - 15 - description = "The Common Lisp package manager"; 16 - deps = []; 17 - src = pkgs.fetchFromGitHub { 18 - owner = "quicklisp"; 19 - repo = "quicklisp-client"; 20 - rev = "version-${version}"; 21 - sha256 = "sha256-1HLVPhl8aBaeG8dRLxBh0j0X/0wqFeNYK1CEfiELToA="; 22 - }; 23 - overrides = x: rec { 24 - inherit clwrapper; 25 - quicklispdist = pkgs.fetchurl { 26 - # Will usually be replaced with a fresh version anyway, but needs to be 27 - # a valid distinfo.txt 28 - url = "http://beta.quicklisp.org/dist/quicklisp/2021-12-09/distinfo.txt"; 29 - sha256 = "sha256:0gc4cv73nl7xkfwvmkmfhfx6yqf876nfm2v24v6fky9n24sh4y6w"; 30 - }; 31 - buildPhase = "true; "; 32 - postInstall = '' 33 - substituteAll ${./quicklisp.sh} "$out"/bin/quicklisp 34 - chmod a+x "$out"/bin/quicklisp 35 - cp "${quicklispdist}" "$out/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" 36 - ''; 37 - }; 38 - }; 39 - 40 - quicklisp-to-nix-system-info = stdenv.mkDerivation { 41 - pname = "quicklisp-to-nix-system-info"; 42 - version = "1.0.0"; 43 - src = ./quicklisp-to-nix; 44 - nativeBuildInputs = [sbcl]; 45 - buildInputs = [ 46 - lispPackages.quicklisp coreutils 47 - ]; 48 - touch = coreutils; 49 - nix-prefetch-url = nix; 50 - inherit quicklisp; 51 - buildPhase = '' 52 - ${sbcl}/bin/sbcl --eval '(load #P"${asdf}/lib/common-lisp/asdf/build/asdf.lisp")' --load $src/system-info.lisp --eval '(ql-to-nix-system-info::dump-image)' 53 - ''; 54 - installPhase = '' 55 - mkdir -p $out/bin 56 - cp quicklisp-to-nix-system-info $out/bin 57 - ''; 58 - dontStrip = true; 59 - }; 60 - 61 - quicklisp-to-nix = stdenv.mkDerivation { 62 - pname = "quicklisp-to-nix"; 63 - version = "1.0.0"; 64 - src = ./quicklisp-to-nix; 65 - buildDependencies = [sbcl quicklisp-to-nix-system-info]; 66 - buildInputs = with pkgs.lispPackages; [md5 cl-emb alexandria external-program]; 67 - touch = coreutils; 68 - nix-prefetch-url = nix; 69 - inherit quicklisp; 70 - deps = []; 71 - system-info = quicklisp-to-nix-system-info; 72 - buildPhase = '' 73 - ${clwrapper}/bin/cl-wrapper.sh "${sbcl}/bin/sbcl" --eval '(load #P"${asdf}/lib/common-lisp/asdf/build/asdf.lisp")' --load $src/ql-to-nix.lisp --eval '(ql-to-nix::dump-image)' 74 - ''; 75 - installPhase = '' 76 - mkdir -p $out/bin 77 - cp quicklisp-to-nix $out/bin 78 - ''; 79 - dontStrip = true; 80 - }; 81 - 82 - clx-truetype = buildLispPackage rec { 83 - baseName = "clx-truetype"; 84 - version = "20160825-git"; 85 - 86 - buildSystems = [ "clx-truetype" ]; 87 - parasites = [ "clx-truetype-test" ]; 88 - 89 - description = "clx-truetype is pure common lisp solution for antialiased TrueType font rendering using CLX and XRender extension."; 90 - deps = with pkgs.lispPackages; [ 91 - alexandria bordeaux-threads cl-aa cl-fad cl-paths cl-paths-ttf cl-store 92 - cl-vectors clx trivial-features zpb-ttf 93 - ]; 94 - src = pkgs.fetchurl { 95 - url = "http://beta.quicklisp.org/archive/clx-truetype/2016-08-25/clx-truetype-20160825-git.tgz"; 96 - sha256 = "0ndy067rg9w6636gxwlpnw7f3ck9nrnjb03444pprik9r3c9in67"; 97 - }; 98 - 99 - packageName = "clx-truetype"; 100 - 101 - asdFilesToKeep = ["clx-truetype.asd"]; 102 - }; 103 - cluffer = buildLispPackage rec { 104 - baseName = "cluffer"; 105 - version = "2018-09-24"; 106 - 107 - buildSystems = [ "cluffer-base" "cluffer-simple-buffer" "cluffer-simple-line" "cluffer-standard-buffer" "cluffer-standard-line" "cluffer" ]; 108 - parasites = [ "cluffer-test" ]; 109 - 110 - description = "General purpose text-editor buffer"; 111 - deps = with pkgs.lispPackages; [ 112 - acclimation clump 113 - ]; 114 - src = pkgs.fetchFromGitHub { 115 - owner = "robert-strandh"; 116 - repo = "cluffer"; 117 - rev = "4aad29c276a58a593064e79972ee4d77cae0af4a"; 118 - sha256 = "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"; 119 - # date = 2018-09-24T04:45:36+02:00; 120 - }; 121 - 122 - packageName = "cluffer"; 123 - 124 - asdFilesToKeep = [ "cluffer.asd" "cluffer-base.asd" "cluffer-simple-buffer.asd" "cluffer-simple-line.asd" "cluffer-standard-buffer.asd" "cluffer-standard-line.asd" ]; 125 - }; 126 - nyxt = pkgs.lispPackages.buildLispPackage rec { 127 - baseName = "nyxt"; 128 - version = "2.2.4"; 129 - 130 - description = "Browser"; 131 - 132 - overrides = x: { 133 - postInstall = '' 134 - echo "Building nyxt binary" 135 - ( 136 - source "$out/lib/common-lisp-settings"/*-shell-config.sh 137 - cd "$out/lib/common-lisp"/*/ 138 - makeFlags="''${makeFlags:-}" 139 - make LISP=common-lisp.sh NYXT_INTERNAL_QUICKLISP=false PREFIX="$out" $makeFlags all 140 - make LISP=common-lisp.sh NYXT_INTERNAL_QUICKLISP=false PREFIX="$out" $makeFlags install 141 - cp nyxt "$out/bin/nyxt" 142 - ) 143 - NIX_LISP_PRELAUNCH_HOOK=' 144 - nix_lisp_build_system nyxt/gtk-application \ 145 - "(asdf/system:component-entry-point (asdf:find-system :nyxt/gtk-application))" \ 146 - "" "(format *error-output* \"Alien objects:~%~s~%\" sb-alien::*shared-objects*)" 147 - ' "$out/bin/nyxt-lisp-launcher.sh" 148 - cp "$out/lib/common-lisp/nyxt/nyxt" "$out/bin/" 149 - ''; 150 - 151 - # Prevent nyxt from trying to obtain dependencies as submodules 152 - makeFlags = [ "NYXT_SUBMODULES=false" ] ++ x.buildFlags or []; 153 - 154 - patches = x.patches or [] ++ [ 155 - # Work around crash when opening _any_ URL 156 - # https://github.com/atlas-engineer/nyxt/issues/1781 157 - # https://github.com/NixOS/nixpkgs/issues/158005 158 - (pkgs.fetchpatch { 159 - name = "nyxt-webkit-disable-sandbox.patch"; 160 - url = "https://github.com/atlas-engineer/nyxt/commit/48ac0d8727f1ca1428188a1ab2c05b7be5f6cc51.patch"; 161 - sha256 = "0570mcfn5wmjha6jmfdgglp0w5b7rpfnv3flzn77clgbknwbxi0m"; 162 - }) 163 - ]; 164 - }; 165 - 166 - deps = with pkgs.lispPackages; [ 167 - alexandria 168 - bordeaux-threads 169 - calispel 170 - cl-css 171 - cl-json 172 - cl-markup 173 - cl-ppcre 174 - cl-ppcre-unicode 175 - cl-prevalence 176 - closer-mop 177 - cl-containers 178 - cl-qrencode 179 - clss 180 - cluffer 181 - moptilities 182 - dexador 183 - enchant 184 - file-attributes 185 - iolib 186 - local-time 187 - log4cl 188 - lparallel 189 - mk-string-metrics 190 - osicat 191 - parenscript 192 - quri 193 - serapeum 194 - spinneret 195 - str 196 - plump 197 - swank 198 - trivia 199 - trivial-clipboard 200 - trivial-features 201 - trivial-garbage 202 - trivial-package-local-nicknames 203 - trivial-types 204 - unix-opts 205 - cl-html-diff 206 - hu_dot_dwim_dot_defclass-star 207 - cl-custom-hash-table 208 - fset 209 - cl-cffi-gtk 210 - cl-webkit2 211 - cl-gobject-introspection 212 - ]; 213 - src = pkgs.fetchFromGitHub { 214 - owner = "atlas-engineer"; 215 - repo = "nyxt"; 216 - rev = version; 217 - sha256 = "12l7ir3q29v06jx0zng5cvlbmap7p709ka3ik6x29lw334qshm9b"; 218 - }; 219 - 220 - packageName = "nyxt"; 221 - 222 - propagatedBuildInputs = [ 223 - pkgs.libressl.out 224 - pkgs.webkitgtk 225 - pkgs.sbcl 226 - ]; 227 - }; 228 - 229 - mgl = buildLispPackage rec { 230 - baseName = "mgl"; 231 - version = "2021-10-07"; 232 - description = "MGL is a machine learning library for backpropagation neural networks, boltzmann machines, gaussian processes and more"; 233 - deps = with pkgs.lispPackages; [ 234 - alexandria closer-mop array-operations lla cl-reexport mgl-mat mgl-pax 235 - named-readtables pythonic-string-reader 236 - ]; 237 - src = pkgs.fetchFromGitHub { 238 - owner = "melisgl"; 239 - repo = "mgl"; 240 - rev = "e697791a9bcad3b6e7b3845246a2aa55238cfef7"; 241 - sha256 = "sha256:09sf7nq7nmf9q7bh3a5ygl2i2n0nhrx5fk2kv5ili0ckv7g9x72s"; 242 - # date = 2021-10-18T14:15+02:00 243 - }; 244 - buildSystems = [ "mgl" "mgl/test" ]; 245 - packageName = "mgl"; 246 - parasites = [ "mgl/test" ]; 247 - asdFilesToKeep = [ "mgl.asd" "mgl-example.asd" "gnuplot/mgl-gnuplot.asd" "visuals/mgl-visuals.asd" ]; 248 - }; 249 - 250 - mgl-mat = buildLispPackage rec { 251 - baseName = "mgl-mat"; 252 - version = "2021-10-11"; 253 - description = "Multi-dimensional arrays with FFI/CUDA support"; 254 - deps = with pkgs.lispPackages; [ 255 - alexandria bordeaux-threads cffi cffi-grovel cl-cuda flexi-streams ieee-floats 256 - lla mgl-pax static-vectors trivial-garbage cl-fad 257 - ]; 258 - src = pkgs.fetchFromGitHub { 259 - owner = "melisgl"; 260 - repo = "mgl-mat"; 261 - rev = "3710858bc876b1b86e50f1db2abe719e92d810e7"; 262 - sha256 = "sha256:1aa2382mi55rp8pd31dz4d94yhfzh30vkggcvmvdfrr4ngffj0dx"; 263 - # date = 2021-10-18T14:15+02:00 264 - }; 265 - packageName = "mgl-mat"; 266 - buildSystems = [ "mgl-mat" "mgl-mat/test" ]; 267 - parasites = [ "mgl-mat/test" ]; 268 - asdFilesToKeep = [ "mgl-mat.asd" ]; 269 - }; 270 - 271 - }; 272 - in lispPackages
-18
pkgs/development/lisp-modules-obsolete/openssl-lib-marked.nix
··· 1 - with import ../../../default.nix {}; 2 - runCommand "openssl-lib-marked" {} '' 3 - mkdir -p "$out/lib" 4 - for lib in ssl crypto; do 5 - version="${lib.getVersion openssl}" 6 - ln -s "${lib.getLib openssl}/lib/lib$lib.so" "$out/lib/lib$lib.so.$version" 7 - version="$(echo "$version" | sed -re 's/[a-z]+$//')" 8 - while test -n "$version"; do 9 - ln -sfT "${lib.getLib openssl}/lib/lib$lib.so" "$out/lib/lib$lib.so.$version" 10 - nextversion="''${version%.*}" 11 - if test "$version" = "$nextversion"; then 12 - version= 13 - else 14 - version="$nextversion" 15 - fi 16 - done 17 - done 18 - ''
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/_1am.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "_1am"; 5 - version = "20141106-git"; 6 - 7 - description = "A minimal testing framework."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/1am/2014-11-06/1am-20141106-git.tgz"; 13 - sha256 = "0vnnqd4fiq9z34i1k9gqczg3j6xllwba1f6nx0b82sgsdccmsly6"; 14 - }; 15 - 16 - packageName = "1am"; 17 - 18 - asdFilesToKeep = ["1am.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM 1am DESCRIPTION A minimal testing framework. SHA256 22 - 0vnnqd4fiq9z34i1k9gqczg3j6xllwba1f6nx0b82sgsdccmsly6 URL 23 - http://beta.quicklisp.org/archive/1am/2014-11-06/1am-20141106-git.tgz MD5 24 - c5e83c329157518e3ebfeef63e4ac269 NAME 1am FILENAME _1am DEPS NIL 25 - DEPENDENCIES NIL VERSION 20141106-git SIBLINGS NIL PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "_3bmd-ext-code-blocks"; 5 - version = "3bmd-20210411-git"; 6 - 7 - description = "extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma"; 8 - 9 - deps = [ args."_3bmd" args."alexandria" args."colorize" args."esrap" args."html-encode" args."split-sequence" args."trivial-with-current-source-form" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/3bmd/2021-04-11/3bmd-20210411-git.tgz"; 13 - sha256 = "1gwl3r8cffr8yldi0x7zdzbmngqhli2d19wsky5cf8h80m30k4vp"; 14 - }; 15 - 16 - packageName = "3bmd-ext-code-blocks"; 17 - 18 - asdFilesToKeep = ["3bmd-ext-code-blocks.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM 3bmd-ext-code-blocks DESCRIPTION 22 - extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma 23 - SHA256 1gwl3r8cffr8yldi0x7zdzbmngqhli2d19wsky5cf8h80m30k4vp URL 24 - http://beta.quicklisp.org/archive/3bmd/2021-04-11/3bmd-20210411-git.tgz MD5 25 - 09f9290aa1708aeb469fb5154ab1a397 NAME 3bmd-ext-code-blocks FILENAME 26 - _3bmd-ext-code-blocks DEPS 27 - ((NAME 3bmd FILENAME _3bmd) (NAME alexandria FILENAME alexandria) 28 - (NAME colorize FILENAME colorize) (NAME esrap FILENAME esrap) 29 - (NAME html-encode FILENAME html-encode) 30 - (NAME split-sequence FILENAME split-sequence) 31 - (NAME trivial-with-current-source-form FILENAME 32 - trivial-with-current-source-form)) 33 - DEPENDENCIES 34 - (3bmd alexandria colorize esrap html-encode split-sequence 35 - trivial-with-current-source-form) 36 - VERSION 3bmd-20210411-git SIBLINGS 37 - (3bmd-ext-definition-lists 3bmd-ext-math 3bmd-ext-tables 38 - 3bmd-ext-wiki-links 3bmd-youtube-tests 3bmd-youtube 3bmd) 39 - PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/_3bmd.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "_3bmd"; 5 - version = "20210411-git"; 6 - 7 - description = "markdown processor in CL using esrap parser."; 8 - 9 - deps = [ args."alexandria" args."esrap" args."split-sequence" args."trivial-with-current-source-form" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/3bmd/2021-04-11/3bmd-20210411-git.tgz"; 13 - sha256 = "1gwl3r8cffr8yldi0x7zdzbmngqhli2d19wsky5cf8h80m30k4vp"; 14 - }; 15 - 16 - packageName = "3bmd"; 17 - 18 - asdFilesToKeep = ["3bmd.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM 3bmd DESCRIPTION markdown processor in CL using esrap parser. SHA256 22 - 1gwl3r8cffr8yldi0x7zdzbmngqhli2d19wsky5cf8h80m30k4vp URL 23 - http://beta.quicklisp.org/archive/3bmd/2021-04-11/3bmd-20210411-git.tgz MD5 24 - 09f9290aa1708aeb469fb5154ab1a397 NAME 3bmd FILENAME _3bmd DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME esrap FILENAME esrap) 26 - (NAME split-sequence FILENAME split-sequence) 27 - (NAME trivial-with-current-source-form FILENAME 28 - trivial-with-current-source-form)) 29 - DEPENDENCIES 30 - (alexandria esrap split-sequence trivial-with-current-source-form) VERSION 31 - 20210411-git SIBLINGS 32 - (3bmd-ext-code-blocks 3bmd-ext-definition-lists 3bmd-ext-math 33 - 3bmd-ext-tables 3bmd-ext-wiki-links 3bmd-youtube-tests 3bmd-youtube) 34 - PARASITES NIL) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/access.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "access"; 5 - version = "20210124-git"; 6 - 7 - parasites = [ "access-test" ]; 8 - 9 - description = "A library providing functions that unify data-structure access for Common Lisp: 10 - access and (setf access)"; 11 - 12 - deps = [ args."alexandria" args."anaphora" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz"; 16 - sha256 = "1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq"; 17 - }; 18 - 19 - packageName = "access"; 20 - 21 - asdFilesToKeep = ["access.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM access DESCRIPTION 25 - A library providing functions that unify data-structure access for Common Lisp: 26 - access and (setf access) 27 - SHA256 1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq URL 28 - http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz 29 - MD5 d2d7d9826cbfb3de568d05a4d6bacdbe NAME access FILENAME access DEPS 30 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 31 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 32 - (NAME cl-unicode FILENAME cl-unicode) 33 - (NAME closer-mop FILENAME closer-mop) 34 - (NAME flexi-streams FILENAME flexi-streams) 35 - (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2) 36 - (NAME named-readtables FILENAME named-readtables)) 37 - DEPENDENCIES 38 - (alexandria anaphora cl-interpol cl-ppcre cl-unicode closer-mop 39 - flexi-streams iterate lisp-unit2 named-readtables) 40 - VERSION 20210124-git SIBLINGS NIL PARASITES (access-test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/acclimation.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "acclimation"; 5 - version = "20200925-git"; 6 - 7 - description = "Library supporting internationalization"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz"; 13 - sha256 = "11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw"; 14 - }; 15 - 16 - packageName = "acclimation"; 17 - 18 - asdFilesToKeep = ["acclimation.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM acclimation DESCRIPTION Library supporting internationalization 22 - SHA256 11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw URL 23 - http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz 24 - MD5 8ce10864baef6fb0e11c78e2ee0b0ddb NAME acclimation FILENAME acclimation 25 - DEPS NIL DEPENDENCIES NIL VERSION 20200925-git SIBLINGS 26 - (acclimation-temperature) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/agutil.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "agutil"; 5 - version = "20210531-git"; 6 - 7 - description = "A collection of utility functions not found in other utility libraries."; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."optima" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/agutil/2021-05-31/agutil-20210531-git.tgz"; 13 - sha256 = "01shs4qbr0bzmx9134cm84zbh8whbi2s5xngapd2fl8ag1rda9q1"; 14 - }; 15 - 16 - packageName = "agutil"; 17 - 18 - asdFilesToKeep = ["agutil.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM agutil DESCRIPTION 22 - A collection of utility functions not found in other utility libraries. 23 - SHA256 01shs4qbr0bzmx9134cm84zbh8whbi2s5xngapd2fl8ag1rda9q1 URL 24 - http://beta.quicklisp.org/archive/agutil/2021-05-31/agutil-20210531-git.tgz 25 - MD5 99de7cd320ae2696c1707ca5b55cf40a NAME agutil FILENAME agutil DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME closer-mop FILENAME closer-mop) (NAME optima FILENAME optima)) 28 - DEPENDENCIES (alexandria closer-mop optima) VERSION 20210531-git SIBLINGS 29 - NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/alexandria.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "alexandria"; 5 - version = "20211209-git"; 6 - 7 - description = "Alexandria is a collection of portable public domain utilities."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/alexandria/2021-12-09/alexandria-20211209-git.tgz"; 13 - sha256 = "13xyajg5n3ad3x2hrmzni1w87b0wc41wn7manbvc3dc5n55afxk0"; 14 - }; 15 - 16 - packageName = "alexandria"; 17 - 18 - asdFilesToKeep = ["alexandria.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM alexandria DESCRIPTION 22 - Alexandria is a collection of portable public domain utilities. SHA256 23 - 13xyajg5n3ad3x2hrmzni1w87b0wc41wn7manbvc3dc5n55afxk0 URL 24 - http://beta.quicklisp.org/archive/alexandria/2021-12-09/alexandria-20211209-git.tgz 25 - MD5 4f578a956567ea0d6c99c2babd1752f3 NAME alexandria FILENAME alexandria 26 - DEPS NIL DEPENDENCIES NIL VERSION 20211209-git SIBLINGS (alexandria-tests) 27 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/anaphora.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "anaphora"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "anaphora/test" ]; 8 - 9 - description = "The Anaphoric Macro Package from Hell"; 10 - 11 - deps = [ args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/anaphora/2021-12-09/anaphora-20211209-git.tgz"; 15 - sha256 = "1pi166qwf3zwswhgq8c4r84rl5d6lnn0rkb3cdf5afyxmminsadg"; 16 - }; 17 - 18 - packageName = "anaphora"; 19 - 20 - asdFilesToKeep = ["anaphora.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM anaphora DESCRIPTION The Anaphoric Macro Package from Hell SHA256 24 - 1pi166qwf3zwswhgq8c4r84rl5d6lnn0rkb3cdf5afyxmminsadg URL 25 - http://beta.quicklisp.org/archive/anaphora/2021-12-09/anaphora-20211209-git.tgz 26 - MD5 81827cd43d29293e967916bb11c4df88 NAME anaphora FILENAME anaphora DEPS 27 - ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20211209-git SIBLINGS NIL 28 - PARASITES (anaphora/test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/arnesi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "arnesi"; 5 - version = "20170403-git"; 6 - 7 - parasites = [ "arnesi/cl-ppcre-extras" "arnesi/slime-extras" ]; 8 - 9 - description = "A bag-of-tools utilities library used to aid in implementing the bese.it toolkit"; 10 - 11 - deps = [ args."alexandria" args."cl-ppcre" args."closer-mop" args."collectors" args."iterate" args."swank" args."symbol-munger" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz"; 15 - sha256 = "01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4"; 16 - }; 17 - 18 - packageName = "arnesi"; 19 - 20 - asdFilesToKeep = ["arnesi.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM arnesi DESCRIPTION 24 - A bag-of-tools utilities library used to aid in implementing the bese.it toolkit 25 - SHA256 01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4 URL 26 - http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz 27 - MD5 bbb34e1a646b2cc489766690c741d964 NAME arnesi FILENAME arnesi DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME closer-mop FILENAME closer-mop) 30 - (NAME collectors FILENAME collectors) (NAME iterate FILENAME iterate) 31 - (NAME swank FILENAME swank) (NAME symbol-munger FILENAME symbol-munger)) 32 - DEPENDENCIES 33 - (alexandria cl-ppcre closer-mop collectors iterate swank symbol-munger) 34 - VERSION 20170403-git SIBLINGS NIL PARASITES 35 - (arnesi/cl-ppcre-extras arnesi/slime-extras)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/array-operations.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "array-operations"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "array-operations/tests" ]; 8 - 9 - description = "Simple array operations library for Common Lisp."; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."clunit2" args."let-plus" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/array-operations/2021-04-11/array-operations-20210411-git.tgz"; 15 - sha256 = "0l6wxd3a1xdcmcsc93prq8ymainfsy15imiwnaik1i9g94fcbjz8"; 16 - }; 17 - 18 - packageName = "array-operations"; 19 - 20 - asdFilesToKeep = ["array-operations.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM array-operations DESCRIPTION 24 - Simple array operations library for Common Lisp. SHA256 25 - 0l6wxd3a1xdcmcsc93prq8ymainfsy15imiwnaik1i9g94fcbjz8 URL 26 - http://beta.quicklisp.org/archive/array-operations/2021-04-11/array-operations-20210411-git.tgz 27 - MD5 902c6034c006bc6ca88ef59e7ff2b1aa NAME array-operations FILENAME 28 - array-operations DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 30 - (NAME clunit2 FILENAME clunit2) (NAME let-plus FILENAME let-plus)) 31 - DEPENDENCIES (alexandria anaphora clunit2 let-plus) VERSION 20210411-git 32 - SIBLINGS NIL PARASITES (array-operations/tests)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/array-utils.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "array-utils"; 5 - version = "20201220-git"; 6 - 7 - description = "A few utilities for working with arrays."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz"; 13 - sha256 = "11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717"; 14 - }; 15 - 16 - packageName = "array-utils"; 17 - 18 - asdFilesToKeep = ["array-utils.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM array-utils DESCRIPTION A few utilities for working with arrays. 22 - SHA256 11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717 URL 23 - http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz 24 - MD5 d6ed906f28c46b2ab0335ec1fc05f8af NAME array-utils FILENAME array-utils 25 - DEPS NIL DEPENDENCIES NIL VERSION 20201220-git SIBLINGS (array-utils-test) 26 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/arrows.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "arrows"; 5 - version = "20181018-git"; 6 - 7 - parasites = [ "arrows/test" ]; 8 - 9 - description = "Implements -> and ->> from Clojure, as well as several expansions on the 10 - idea."; 11 - 12 - deps = [ args."hu_dot_dwim_dot_stefil" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/arrows/2018-10-18/arrows-20181018-git.tgz"; 16 - sha256 = "1b13pnn71z1dv1cwysh6p5jfgjsp3q8ivsdxfspl1hg1nh9mqa7r"; 17 - }; 18 - 19 - packageName = "arrows"; 20 - 21 - asdFilesToKeep = ["arrows.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM arrows DESCRIPTION 25 - Implements -> and ->> from Clojure, as well as several expansions on the 26 - idea. 27 - SHA256 1b13pnn71z1dv1cwysh6p5jfgjsp3q8ivsdxfspl1hg1nh9mqa7r URL 28 - http://beta.quicklisp.org/archive/arrows/2018-10-18/arrows-20181018-git.tgz 29 - MD5 c60b5d79680de19baad018a0fe87bc48 NAME arrows FILENAME arrows DEPS 30 - ((NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil)) DEPENDENCIES 31 - (hu.dwim.stefil) VERSION 20181018-git SIBLINGS NIL PARASITES (arrows/test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/asdf-package-system.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "asdf-package-system"; 5 - version = "20150608-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz"; 13 - sha256 = "17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29"; 14 - }; 15 - 16 - packageName = "asdf-package-system"; 17 - 18 - asdFilesToKeep = ["asdf-package-system.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM asdf-package-system DESCRIPTION System lacks description SHA256 22 - 17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29 URL 23 - http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz 24 - MD5 9eee9d811aec4894843ac1d8ae6cbccd NAME asdf-package-system FILENAME 25 - asdf-package-system DEPS NIL DEPENDENCIES NIL VERSION 20150608-git SIBLINGS 26 - NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/asdf-system-connections.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "asdf-system-connections"; 5 - version = "20170124-git"; 6 - 7 - description = "Allows for ASDF system to be connected so that auto-loading may occur."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz"; 13 - sha256 = "0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq"; 14 - }; 15 - 16 - packageName = "asdf-system-connections"; 17 - 18 - asdFilesToKeep = ["asdf-system-connections.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM asdf-system-connections DESCRIPTION 22 - Allows for ASDF system to be connected so that auto-loading may occur. 23 - SHA256 0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq URL 24 - http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz 25 - MD5 23bdbb69c433568e3e15ed705b803992 NAME asdf-system-connections FILENAME 26 - asdf-system-connections DEPS NIL DEPENDENCIES NIL VERSION 20170124-git 27 - SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/babel.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "babel"; 5 - version = "20200925-git"; 6 - 7 - description = "Babel, a charset conversion library."; 8 - 9 - deps = [ args."alexandria" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz"; 13 - sha256 = "1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi"; 14 - }; 15 - 16 - packageName = "babel"; 17 - 18 - asdFilesToKeep = ["babel.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM babel DESCRIPTION Babel, a charset conversion library. SHA256 22 - 1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi URL 23 - http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz 24 - MD5 7f64d3be80bcba19d9caeaede5dea6d8 NAME babel FILENAME babel DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME trivial-features FILENAME trivial-features)) 27 - DEPENDENCIES (alexandria trivial-features) VERSION 20200925-git SIBLINGS 28 - (babel-streams babel-tests) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/binomial-heap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "binomial-heap"; 5 - version = "20130420-git"; 6 - 7 - description = "A compact binomial heap implementation."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/binomial-heap/2013-04-20/binomial-heap-20130420-git.tgz"; 13 - sha256 = "0fl062psd0jn94raip46lq342xmsq0xgrql6v5f9j9w0ps0dg2ap"; 14 - }; 15 - 16 - packageName = "binomial-heap"; 17 - 18 - asdFilesToKeep = ["binomial-heap.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM binomial-heap DESCRIPTION A compact binomial heap implementation. 22 - SHA256 0fl062psd0jn94raip46lq342xmsq0xgrql6v5f9j9w0ps0dg2ap URL 23 - http://beta.quicklisp.org/archive/binomial-heap/2013-04-20/binomial-heap-20130420-git.tgz 24 - MD5 ca40cb01b88a3fe902cc4cc25fb2d242 NAME binomial-heap FILENAME 25 - binomial-heap DEPS NIL DEPENDENCIES NIL VERSION 20130420-git SIBLINGS NIL 26 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/binpack.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "binpack"; 5 - version = "20201220-git"; 6 - 7 - parasites = [ "binpack/2" ]; 8 - 9 - description = "Rectangle packer for sprite/texture atlases"; 10 - 11 - deps = [ args."alexandria" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/binpack/2020-12-20/binpack-20201220-git.tgz"; 15 - sha256 = "1kyl19kjsii2nrbf229c5fb3bjw7r25736f991g2j8vig991imwm"; 16 - }; 17 - 18 - packageName = "binpack"; 19 - 20 - asdFilesToKeep = ["binpack.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM binpack DESCRIPTION Rectangle packer for sprite/texture atlases 24 - SHA256 1kyl19kjsii2nrbf229c5fb3bjw7r25736f991g2j8vig991imwm URL 25 - http://beta.quicklisp.org/archive/binpack/2020-12-20/binpack-20201220-git.tgz 26 - MD5 1ac4eaa76586091edb77111ea033f316 NAME binpack FILENAME binpack DEPS 27 - ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 28 - 20201220-git SIBLINGS (binpack-test) PARASITES (binpack/2)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/blackbird.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "blackbird"; 5 - version = "20160531-git"; 6 - 7 - description = "A promise implementation for Common Lisp."; 8 - 9 - deps = [ args."vom" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz"; 13 - sha256 = "0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9"; 14 - }; 15 - 16 - packageName = "blackbird"; 17 - 18 - asdFilesToKeep = ["blackbird.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM blackbird DESCRIPTION A promise implementation for Common Lisp. 22 - SHA256 0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9 URL 23 - http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz 24 - MD5 5cb13dc06a0eae8dcba14714d2b5365d NAME blackbird FILENAME blackbird DEPS 25 - ((NAME vom FILENAME vom)) DEPENDENCIES (vom) VERSION 20160531-git SIBLINGS 26 - (blackbird-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/bordeaux-threads.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "bordeaux-threads"; 5 - version = "v0.8.8"; 6 - 7 - parasites = [ "bordeaux-threads/test" ]; 8 - 9 - description = "Bordeaux Threads makes writing portable multi-threaded apps simple."; 10 - 11 - deps = [ args."alexandria" args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz"; 15 - sha256 = "1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp"; 16 - }; 17 - 18 - packageName = "bordeaux-threads"; 19 - 20 - asdFilesToKeep = ["bordeaux-threads.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM bordeaux-threads DESCRIPTION 24 - Bordeaux Threads makes writing portable multi-threaded apps simple. SHA256 25 - 1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp URL 26 - http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz 27 - MD5 1922316721bcaa10142ed07c31b178e5 NAME bordeaux-threads FILENAME 28 - bordeaux-threads DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME fiveam FILENAME fiveam)) 30 - DEPENDENCIES (alexandria fiveam) VERSION v0.8.8 SIBLINGS NIL PARASITES 31 - (bordeaux-threads/test)) */
-49
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/buildnode-xhtml.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "buildnode-xhtml"; 5 - version = "buildnode-20170403-git"; 6 - 7 - description = "Tool for building up an xml dom of an excel spreadsheet nicely."; 8 - 9 - deps = [ args."alexandria" args."babel" args."buildnode" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 13 - sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 14 - }; 15 - 16 - packageName = "buildnode-xhtml"; 17 - 18 - asdFilesToKeep = ["buildnode-xhtml.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM buildnode-xhtml DESCRIPTION 22 - Tool for building up an xml dom of an excel spreadsheet nicely. SHA256 23 - 1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6 URL 24 - http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz 25 - MD5 b917f0d6c20489febbef0d5b954c350d NAME buildnode-xhtml FILENAME 26 - buildnode-xhtml DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME buildnode FILENAME buildnode) 29 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-unicode FILENAME cl-unicode) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME closure-common FILENAME closure-common) 33 - (NAME closure-html FILENAME closure-html) 34 - (NAME collectors FILENAME collectors) (NAME cxml FILENAME cxml) 35 - (NAME flexi-streams FILENAME flexi-streams) 36 - (NAME iterate FILENAME iterate) 37 - (NAME named-readtables FILENAME named-readtables) 38 - (NAME puri FILENAME puri) (NAME split-sequence FILENAME split-sequence) 39 - (NAME swank FILENAME swank) (NAME symbol-munger FILENAME symbol-munger) 40 - (NAME trivial-features FILENAME trivial-features) 41 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 42 - DEPENDENCIES 43 - (alexandria babel buildnode cl-interpol cl-ppcre cl-unicode closer-mop 44 - closure-common closure-html collectors cxml flexi-streams iterate 45 - named-readtables puri split-sequence swank symbol-munger trivial-features 46 - trivial-gray-streams) 47 - VERSION buildnode-20170403-git SIBLINGS 48 - (buildnode-excel buildnode-html5 buildnode-kml buildnode-xul buildnode) 49 - PARASITES NIL) */
-50
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/buildnode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "buildnode"; 5 - version = "20170403-git"; 6 - 7 - parasites = [ "buildnode-test" ]; 8 - 9 - description = "Tool for building up an xml dom nicely."; 10 - 11 - deps = [ args."alexandria" args."babel" args."buildnode-xhtml" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 15 - sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 16 - }; 17 - 18 - packageName = "buildnode"; 19 - 20 - asdFilesToKeep = ["buildnode.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM buildnode DESCRIPTION Tool for building up an xml dom nicely. SHA256 24 - 1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6 URL 25 - http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz 26 - MD5 b917f0d6c20489febbef0d5b954c350d NAME buildnode FILENAME buildnode DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME buildnode-xhtml FILENAME buildnode-xhtml) 29 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-unicode FILENAME cl-unicode) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME closure-common FILENAME closure-common) 33 - (NAME closure-html FILENAME closure-html) 34 - (NAME collectors FILENAME collectors) (NAME cxml FILENAME cxml) 35 - (NAME flexi-streams FILENAME flexi-streams) 36 - (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2) 37 - (NAME named-readtables FILENAME named-readtables) 38 - (NAME puri FILENAME puri) (NAME split-sequence FILENAME split-sequence) 39 - (NAME swank FILENAME swank) (NAME symbol-munger FILENAME symbol-munger) 40 - (NAME trivial-features FILENAME trivial-features) 41 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 42 - DEPENDENCIES 43 - (alexandria babel buildnode-xhtml cl-interpol cl-ppcre cl-unicode 44 - closer-mop closure-common closure-html collectors cxml flexi-streams 45 - iterate lisp-unit2 named-readtables puri split-sequence swank 46 - symbol-munger trivial-features trivial-gray-streams) 47 - VERSION 20170403-git SIBLINGS 48 - (buildnode-excel buildnode-html5 buildnode-kml buildnode-xhtml 49 - buildnode-xul) 50 - PARASITES (buildnode-test)) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/calispel.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "calispel"; 5 - version = "20170830-git"; 6 - 7 - parasites = [ "calispel-test" ]; 8 - 9 - description = "Thread-safe message-passing channels, in the style of 10 - the occam programming language."; 11 - 12 - deps = [ args."alexandria" args."bordeaux-threads" args."eager-future2" args."jpl-queues" args."jpl-util" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz"; 16 - sha256 = "0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i"; 17 - }; 18 - 19 - packageName = "calispel"; 20 - 21 - asdFilesToKeep = ["calispel.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM calispel DESCRIPTION 25 - Thread-safe message-passing channels, in the style of 26 - the occam programming language. 27 - SHA256 0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i URL 28 - http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz 29 - MD5 1fba6e4b2055f5d1f0a78387e29552b1 NAME calispel FILENAME calispel DEPS 30 - ((NAME alexandria FILENAME alexandria) 31 - (NAME bordeaux-threads FILENAME bordeaux-threads) 32 - (NAME eager-future2 FILENAME eager-future2) 33 - (NAME jpl-queues FILENAME jpl-queues) (NAME jpl-util FILENAME jpl-util)) 34 - DEPENDENCIES 35 - (alexandria bordeaux-threads eager-future2 jpl-queues jpl-util) VERSION 36 - 20170830-git SIBLINGS NIL PARASITES (calispel-test)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cffi-grovel.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cffi-grovel"; 5 - version = "cffi_0.24.1"; 6 - 7 - description = "The CFFI Groveller"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-toolchain" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz"; 13 - sha256 = "1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh"; 14 - }; 15 - 16 - packageName = "cffi-grovel"; 17 - 18 - asdFilesToKeep = ["cffi-grovel.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cffi-grovel DESCRIPTION The CFFI Groveller SHA256 22 - 1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh URL 23 - http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz MD5 24 - c3df5c460e00e5af8b8bd2cd03a4b5cc NAME cffi-grovel FILENAME cffi-grovel DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) (NAME cffi-toolchain FILENAME cffi-toolchain) 27 - (NAME trivial-features FILENAME trivial-features)) 28 - DEPENDENCIES (alexandria babel cffi cffi-toolchain trivial-features) 29 - VERSION cffi_0.24.1 SIBLINGS 30 - (cffi-examples cffi-libffi cffi-tests cffi-toolchain cffi-uffi-compat cffi) 31 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cffi-toolchain.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cffi-toolchain"; 5 - version = "cffi_0.24.1"; 6 - 7 - description = "The CFFI toolchain"; 8 - 9 - deps = [ args."alexandria" args."asdf" args."babel" args."cffi" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz"; 13 - sha256 = "1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh"; 14 - }; 15 - 16 - packageName = "cffi-toolchain"; 17 - 18 - asdFilesToKeep = ["cffi-toolchain.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cffi-toolchain DESCRIPTION The CFFI toolchain SHA256 22 - 1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh URL 23 - http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz MD5 24 - c3df5c460e00e5af8b8bd2cd03a4b5cc NAME cffi-toolchain FILENAME 25 - cffi-toolchain DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf) 27 - (NAME babel FILENAME babel) (NAME cffi FILENAME cffi) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES (alexandria asdf babel cffi trivial-features) VERSION 30 - cffi_0.24.1 SIBLINGS 31 - (cffi-examples cffi-grovel cffi-libffi cffi-tests cffi-uffi-compat cffi) 32 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cffi-uffi-compat.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cffi-uffi-compat"; 5 - version = "cffi_0.24.1"; 6 - 7 - description = "UFFI Compatibility Layer for CFFI"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz"; 13 - sha256 = "1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh"; 14 - }; 15 - 16 - packageName = "cffi-uffi-compat"; 17 - 18 - asdFilesToKeep = ["cffi-uffi-compat.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cffi-uffi-compat DESCRIPTION UFFI Compatibility Layer for CFFI 22 - SHA256 1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh URL 23 - http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz MD5 24 - c3df5c460e00e5af8b8bd2cd03a4b5cc NAME cffi-uffi-compat FILENAME 25 - cffi-uffi-compat DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES (alexandria babel cffi trivial-features) VERSION cffi_0.24.1 30 - SIBLINGS 31 - (cffi-examples cffi-grovel cffi-libffi cffi-tests cffi-toolchain cffi) 32 - PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cffi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cffi"; 5 - version = "cffi_0.24.1"; 6 - 7 - parasites = [ "cffi/c2ffi" "cffi/c2ffi-generator" ]; 8 - 9 - description = "The Common Foreign Function Interface"; 10 - 11 - deps = [ args."alexandria" args."babel" args."cl-json" args."cl-ppcre" args."trivial-features" args."uiop" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz"; 15 - sha256 = "1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh"; 16 - }; 17 - 18 - packageName = "cffi"; 19 - 20 - asdFilesToKeep = ["cffi.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cffi DESCRIPTION The Common Foreign Function Interface SHA256 24 - 1ir8a4rrnilj9f8rv1hh6fhkg2wp8z8zcf9hiijcix50pabxq8qh URL 25 - http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz MD5 26 - c3df5c460e00e5af8b8bd2cd03a4b5cc NAME cffi FILENAME cffi DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cl-json FILENAME cl-json) (NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME uiop FILENAME uiop)) 31 - DEPENDENCIES (alexandria babel cl-json cl-ppcre trivial-features uiop) 32 - VERSION cffi_0.24.1 SIBLINGS 33 - (cffi-examples cffi-grovel cffi-libffi cffi-tests cffi-toolchain 34 - cffi-uffi-compat) 35 - PARASITES (cffi/c2ffi cffi/c2ffi-generator)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/chanl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "chanl"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "chanl/examples" "chanl/tests" ]; 8 - 9 - description = "Communicating Sequential Process support for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/chanl/2021-04-11/chanl-20210411-git.tgz"; 15 - sha256 = "1c1yiw616q5hv6vzyg1y4kg68v94p37s5jrq387rwadfnnf46rgi"; 16 - }; 17 - 18 - packageName = "chanl"; 19 - 20 - asdFilesToKeep = ["chanl.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM chanl DESCRIPTION 24 - Communicating Sequential Process support for Common Lisp SHA256 25 - 1c1yiw616q5hv6vzyg1y4kg68v94p37s5jrq387rwadfnnf46rgi URL 26 - http://beta.quicklisp.org/archive/chanl/2021-04-11/chanl-20210411-git.tgz 27 - MD5 efaa5705b5feaa718290d25a95e2a684 NAME chanl FILENAME chanl DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME fiveam FILENAME fiveam)) 31 - DEPENDENCIES (alexandria bordeaux-threads fiveam) VERSION 20210411-git 32 - SIBLINGS NIL PARASITES (chanl/examples chanl/tests)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/check-it.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "check-it"; 5 - version = "20150709-git"; 6 - 7 - parasites = [ "check-it-test" ]; 8 - 9 - description = "A randomized property-based testing tool for Common Lisp."; 10 - 11 - deps = [ args."alexandria" args."closer-mop" args."optima" args."stefil" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/check-it/2015-07-09/check-it-20150709-git.tgz"; 15 - sha256 = "1bx3ndkkl3w7clkqplhy6c2sz46pcp5w76j610gynzv7scz72iw2"; 16 - }; 17 - 18 - packageName = "check-it"; 19 - 20 - asdFilesToKeep = ["check-it.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM check-it DESCRIPTION 24 - A randomized property-based testing tool for Common Lisp. SHA256 25 - 1bx3ndkkl3w7clkqplhy6c2sz46pcp5w76j610gynzv7scz72iw2 URL 26 - http://beta.quicklisp.org/archive/check-it/2015-07-09/check-it-20150709-git.tgz 27 - MD5 0baae55e5a9c8c884202cbc51e634c42 NAME check-it FILENAME check-it DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME closer-mop FILENAME closer-mop) (NAME optima FILENAME optima) 30 - (NAME stefil FILENAME stefil)) 31 - DEPENDENCIES (alexandria closer-mop optima stefil) VERSION 20150709-git 32 - SIBLINGS NIL PARASITES (check-it-test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/chipz.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "chipz"; 5 - version = "20210807-git"; 6 - 7 - description = "A library for decompressing deflate, zlib, and gzip data"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/chipz/2021-08-07/chipz-20210807-git.tgz"; 13 - sha256 = "0g7xhh4yq9azjq7gnszaq2kbxima2q30apb3rrglc1ign973hr8x"; 14 - }; 15 - 16 - packageName = "chipz"; 17 - 18 - asdFilesToKeep = ["chipz.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM chipz DESCRIPTION 22 - A library for decompressing deflate, zlib, and gzip data SHA256 23 - 0g7xhh4yq9azjq7gnszaq2kbxima2q30apb3rrglc1ign973hr8x URL 24 - http://beta.quicklisp.org/archive/chipz/2021-08-07/chipz-20210807-git.tgz 25 - MD5 11438e3bc60c39294c337cb232ae8040 NAME chipz FILENAME chipz DEPS NIL 26 - DEPENDENCIES NIL VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/chunga.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "chunga"; 5 - version = "20200427-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz"; 13 - sha256 = "0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk"; 14 - }; 15 - 16 - packageName = "chunga"; 17 - 18 - asdFilesToKeep = ["chunga.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM chunga DESCRIPTION System lacks description SHA256 22 - 0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk URL 23 - http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz 24 - MD5 ec31aa63a1b594a197ad45e5e65c4cc4 NAME chunga FILENAME chunga DEPS 25 - ((NAME trivial-gray-streams FILENAME trivial-gray-streams)) DEPENDENCIES 26 - (trivial-gray-streams) VERSION 20200427-git SIBLINGS NIL PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/circular-streams.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "circular-streams"; 5 - version = "20161204-git"; 6 - 7 - description = "Circularly readable streams for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz"; 13 - sha256 = "1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128"; 14 - }; 15 - 16 - packageName = "circular-streams"; 17 - 18 - asdFilesToKeep = ["circular-streams.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM circular-streams DESCRIPTION 22 - Circularly readable streams for Common Lisp SHA256 23 - 1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128 URL 24 - http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz 25 - MD5 2383f3b82fa3335d9106e1354a678db8 NAME circular-streams FILENAME 26 - circular-streams DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) 30 - (NAME fast-io FILENAME fast-io) 31 - (NAME static-vectors FILENAME static-vectors) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 34 - DEPENDENCIES 35 - (alexandria babel cffi cffi-grovel cffi-toolchain fast-io static-vectors 36 - trivial-features trivial-gray-streams) 37 - VERSION 20161204-git SIBLINGS (circular-streams-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-aa.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-aa"; 5 - version = "cl-vectors-20180228-git"; 6 - 7 - description = "cl-aa: polygon rasterizer"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 - sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 14 - }; 15 - 16 - packageName = "cl-aa"; 17 - 18 - asdFilesToKeep = ["cl-aa.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-aa DESCRIPTION cl-aa: polygon rasterizer SHA256 22 - 0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly URL 23 - http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz 24 - MD5 9d9629786d4f2c19c15cc6cd3049c343 NAME cl-aa FILENAME cl-aa DEPS NIL 25 - DEPENDENCIES NIL VERSION cl-vectors-20180228-git SIBLINGS 26 - (cl-aa-misc cl-paths-ttf cl-paths cl-vectors) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-annot.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-annot"; 5 - version = "20150608-git"; 6 - 7 - description = "Python-like Annotation Syntax for Common Lisp"; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz"; 13 - sha256 = "0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3"; 14 - }; 15 - 16 - packageName = "cl-annot"; 17 - 18 - asdFilesToKeep = ["cl-annot.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-annot DESCRIPTION Python-like Annotation Syntax for Common Lisp 22 - SHA256 0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3 URL 23 - http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz 24 - MD5 35d8f79311bda4dd86002d11edcd0a21 NAME cl-annot FILENAME cl-annot DEPS 25 - ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 26 - 20150608-git SIBLINGS NIL PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-anonfun.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-anonfun"; 5 - version = "20111203-git"; 6 - 7 - description = "Anonymous function helpers for Common Lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz"; 13 - sha256 = "16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m"; 14 - }; 15 - 16 - packageName = "cl-anonfun"; 17 - 18 - asdFilesToKeep = ["cl-anonfun.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-anonfun DESCRIPTION Anonymous function helpers for Common Lisp 22 - SHA256 16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m URL 23 - http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz 24 - MD5 915bda1a7653d42090f8d20a1ad85d0b NAME cl-anonfun FILENAME cl-anonfun 25 - DEPS NIL DEPENDENCIES NIL VERSION 20111203-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-ansi-text.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-ansi-text"; 5 - version = "20211020-git"; 6 - 7 - description = "ANSI control string characters, focused on color"; 8 - 9 - deps = [ args."alexandria" args."cl-colors2" args."cl-ppcre" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-ansi-text/2021-10-20/cl-ansi-text-20211020-git.tgz"; 13 - sha256 = "1lmxmdf4sm7apkczp0y07rlsayc5adyv2i85r6p7s60w6sianjr6"; 14 - }; 15 - 16 - packageName = "cl-ansi-text"; 17 - 18 - asdFilesToKeep = ["cl-ansi-text.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-ansi-text DESCRIPTION 22 - ANSI control string characters, focused on color SHA256 23 - 1lmxmdf4sm7apkczp0y07rlsayc5adyv2i85r6p7s60w6sianjr6 URL 24 - http://beta.quicklisp.org/archive/cl-ansi-text/2021-10-20/cl-ansi-text-20211020-git.tgz 25 - MD5 5411766beeb4180218b449454b67837f NAME cl-ansi-text FILENAME 26 - cl-ansi-text DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME cl-colors2 FILENAME cl-colors2) (NAME cl-ppcre FILENAME cl-ppcre)) 29 - DEPENDENCIES (alexandria cl-colors2 cl-ppcre) VERSION 20211020-git SIBLINGS 30 - (cl-ansi-text.test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-ascii-table.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-ascii-table"; 5 - version = "20200610-git"; 6 - 7 - description = "Common Lisp library to present tabular data in ascii-art table."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-ascii-table/2020-06-10/cl-ascii-table-20200610-git.tgz"; 13 - sha256 = "00395cbmjwlywyks3zd4mqp0w7yyms61ywp06knv1gbf847vy7yi"; 14 - }; 15 - 16 - packageName = "cl-ascii-table"; 17 - 18 - asdFilesToKeep = ["cl-ascii-table.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-ascii-table DESCRIPTION 22 - Common Lisp library to present tabular data in ascii-art table. SHA256 23 - 00395cbmjwlywyks3zd4mqp0w7yyms61ywp06knv1gbf847vy7yi URL 24 - http://beta.quicklisp.org/archive/cl-ascii-table/2020-06-10/cl-ascii-table-20200610-git.tgz 25 - MD5 6f2eaaae3fb03ba719d77ed3ffaeaf4f NAME cl-ascii-table FILENAME 26 - cl-ascii-table DEPS NIL DEPENDENCIES NIL VERSION 20200610-git SIBLINGS NIL 27 - PARASITES NIL) */
-44
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-async-repl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-async-repl"; 5 - version = "cl-async-20211020-git"; 6 - 7 - description = "REPL integration for CL-ASYNC."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz"; 13 - sha256 = "1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0"; 14 - }; 15 - 16 - packageName = "cl-async-repl"; 17 - 18 - asdFilesToKeep = ["cl-async-repl.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-async-repl DESCRIPTION REPL integration for CL-ASYNC. SHA256 22 - 1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0 URL 23 - http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz 24 - MD5 0e0cd11758e93a91b39ad726fb1051cc NAME cl-async-repl FILENAME 25 - cl-async-repl DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) 30 - (NAME cl-async FILENAME cl-async) 31 - (NAME cl-async-base FILENAME cl-async-base) 32 - (NAME cl-async-util FILENAME cl-async-util) 33 - (NAME cl-libuv FILENAME cl-libuv) (NAME cl-ppcre FILENAME cl-ppcre) 34 - (NAME fast-io FILENAME fast-io) 35 - (NAME static-vectors FILENAME static-vectors) 36 - (NAME trivial-features FILENAME trivial-features) 37 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 38 - (NAME vom FILENAME vom)) 39 - DEPENDENCIES 40 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-async 41 - cl-async-base cl-async-util cl-libuv cl-ppcre fast-io static-vectors 42 - trivial-features trivial-gray-streams vom) 43 - VERSION cl-async-20211020-git SIBLINGS 44 - (cl-async-ssl cl-async-test cl-async) PARASITES NIL) */
-45
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-async-ssl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-async-ssl"; 5 - version = "cl-async-20211020-git"; 6 - 7 - description = "SSL Wrapper around cl-async socket implementation."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz"; 13 - sha256 = "1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0"; 14 - }; 15 - 16 - packageName = "cl-async-ssl"; 17 - 18 - asdFilesToKeep = ["cl-async-ssl.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-async-ssl DESCRIPTION 22 - SSL Wrapper around cl-async socket implementation. SHA256 23 - 1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0 URL 24 - http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz 25 - MD5 0e0cd11758e93a91b39ad726fb1051cc NAME cl-async-ssl FILENAME 26 - cl-async-ssl DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 30 - (NAME cffi-toolchain FILENAME cffi-toolchain) 31 - (NAME cl-async FILENAME cl-async) 32 - (NAME cl-async-base FILENAME cl-async-base) 33 - (NAME cl-async-util FILENAME cl-async-util) 34 - (NAME cl-libuv FILENAME cl-libuv) (NAME cl-ppcre FILENAME cl-ppcre) 35 - (NAME fast-io FILENAME fast-io) 36 - (NAME static-vectors FILENAME static-vectors) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 39 - (NAME vom FILENAME vom)) 40 - DEPENDENCIES 41 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-async 42 - cl-async-base cl-async-util cl-libuv cl-ppcre fast-io static-vectors 43 - trivial-features trivial-gray-streams vom) 44 - VERSION cl-async-20211020-git SIBLINGS 45 - (cl-async-repl cl-async-test cl-async) PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-async.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-async"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "cl-async-base" "cl-async-util" ]; 8 - 9 - description = "Asynchronous operations for Common Lisp."; 10 - 11 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."uiop" args."vom" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz"; 15 - sha256 = "1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0"; 16 - }; 17 - 18 - packageName = "cl-async"; 19 - 20 - asdFilesToKeep = ["cl-async.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-async DESCRIPTION Asynchronous operations for Common Lisp. SHA256 24 - 1b3bwqvzw2pc83m4x8vbbxyriq58g0j3738mzq68v689zl071dl0 URL 25 - http://beta.quicklisp.org/archive/cl-async/2021-10-20/cl-async-20211020-git.tgz 26 - MD5 0e0cd11758e93a91b39ad726fb1051cc NAME cl-async FILENAME cl-async DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 30 - (NAME cffi-toolchain FILENAME cffi-toolchain) 31 - (NAME cl-libuv FILENAME cl-libuv) (NAME cl-ppcre FILENAME cl-ppcre) 32 - (NAME fast-io FILENAME fast-io) 33 - (NAME static-vectors FILENAME static-vectors) 34 - (NAME trivial-features FILENAME trivial-features) 35 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 36 - (NAME uiop FILENAME uiop) (NAME vom FILENAME vom)) 37 - DEPENDENCIES 38 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-libuv 39 - cl-ppcre fast-io static-vectors trivial-features trivial-gray-streams uiop 40 - vom) 41 - VERSION 20211020-git SIBLINGS (cl-async-repl cl-async-ssl cl-async-test) 42 - PARASITES (cl-async-base cl-async-util)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-base64.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-base64"; 5 - version = "20201016-git"; 6 - 7 - parasites = [ "cl-base64/test" ]; 8 - 9 - description = "Base64 encoding and decoding with URI support."; 10 - 11 - deps = [ args."kmrcl" args."ptester" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz"; 15 - sha256 = "1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z"; 16 - }; 17 - 18 - packageName = "cl-base64"; 19 - 20 - asdFilesToKeep = ["cl-base64.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-base64 DESCRIPTION Base64 encoding and decoding with URI support. 24 - SHA256 1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z URL 25 - http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz 26 - MD5 f556f7c61f785c84abdc1beb63c906ae NAME cl-base64 FILENAME cl-base64 DEPS 27 - ((NAME kmrcl FILENAME kmrcl) (NAME ptester FILENAME ptester)) DEPENDENCIES 28 - (kmrcl ptester) VERSION 20201016-git SIBLINGS NIL PARASITES 29 - (cl-base64/test)) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-cairo.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-cairo"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to Cairo"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."iterate" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-cairo"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-cairo.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-cairo DESCRIPTION A Lisp binding to Cairo SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-cairo FILENAME 25 - cl-cffi-gtk-cairo DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 30 - (NAME iterate FILENAME iterate) 31 - (NAME trivial-features FILENAME trivial-features)) 32 - DEPENDENCIES 33 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-glib iterate 34 - trivial-features) 35 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 36 - (cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib cl-cffi-gtk-demo-gobject 37 - cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo cl-cffi-gtk-gdk-pixbuf 38 - cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-glib cl-cffi-gtk-gobject 39 - cl-cffi-gtk cl-cffi-gtk-pango) 40 - PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-gdk-pixbuf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-gdk-pixbuf"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to GDK Pixbuf 2"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-gdk-pixbuf"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-gdk-pixbuf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-gdk-pixbuf DESCRIPTION A Lisp binding to GDK Pixbuf 2 22 - SHA256 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-gdk-pixbuf FILENAME 25 - cl-cffi-gtk-gdk-pixbuf DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 30 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 31 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-garbage FILENAME trivial-garbage)) 34 - DEPENDENCIES 35 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-glib 36 - cl-cffi-gtk-gobject closer-mop iterate trivial-features trivial-garbage) 37 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 38 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 39 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 40 - cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-glib cl-cffi-gtk-gobject 41 - cl-cffi-gtk cl-cffi-gtk-pango) 42 - PARASITES NIL) */
-48
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-gdk.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-gdk"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to GDK 3"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-gdk"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-gdk.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-gdk DESCRIPTION A Lisp binding to GDK 3 SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-gdk FILENAME 25 - cl-cffi-gtk-gdk DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-cairo FILENAME cl-cffi-gtk-cairo) 30 - (NAME cl-cffi-gtk-gdk-pixbuf FILENAME cl-cffi-gtk-gdk-pixbuf) 31 - (NAME cl-cffi-gtk-gio FILENAME cl-cffi-gtk-gio) 32 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 33 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 34 - (NAME cl-cffi-gtk-pango FILENAME cl-cffi-gtk-pango) 35 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 36 - (NAME trivial-features FILENAME trivial-features) 37 - (NAME trivial-garbage FILENAME trivial-garbage)) 38 - DEPENDENCIES 39 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-cairo 40 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gio cl-cffi-gtk-glib 41 - cl-cffi-gtk-gobject cl-cffi-gtk-pango closer-mop iterate trivial-features 42 - trivial-garbage) 43 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 44 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 45 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 46 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gio cl-cffi-gtk-glib 47 - cl-cffi-gtk-gobject cl-cffi-gtk cl-cffi-gtk-pango) 48 - PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-gio.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-gio"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to GIO 2"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-gio"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-gio.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-gio DESCRIPTION A Lisp binding to GIO 2 SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-gio FILENAME 25 - cl-cffi-gtk-gio DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 30 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 31 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-garbage FILENAME trivial-garbage)) 34 - DEPENDENCIES 35 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-glib 36 - cl-cffi-gtk-gobject closer-mop iterate trivial-features trivial-garbage) 37 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 38 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 39 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 40 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gdk cl-cffi-gtk-glib 41 - cl-cffi-gtk-gobject cl-cffi-gtk cl-cffi-gtk-pango) 42 - PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-glib.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-glib"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to GLib 2"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."iterate" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-glib"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-glib.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-glib DESCRIPTION A Lisp binding to GLib 2 SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-glib FILENAME 25 - cl-cffi-gtk-glib DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME iterate FILENAME iterate) 29 - (NAME trivial-features FILENAME trivial-features)) 30 - DEPENDENCIES 31 - (alexandria babel bordeaux-threads cffi iterate trivial-features) VERSION 32 - cl-cffi-gtk-20201220-git SIBLINGS 33 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 34 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 35 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-gobject 36 - cl-cffi-gtk cl-cffi-gtk-pango) 37 - PARASITES NIL) */
-41
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-gobject.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-gobject"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding GObject 2"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-gobject"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-gobject.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-gobject DESCRIPTION A Lisp binding GObject 2 SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-gobject FILENAME 25 - cl-cffi-gtk-gobject DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 30 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 31 - (NAME trivial-features FILENAME trivial-features) 32 - (NAME trivial-garbage FILENAME trivial-garbage)) 33 - DEPENDENCIES 34 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-glib closer-mop iterate 35 - trivial-features trivial-garbage) 36 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 37 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 38 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 39 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-glib 40 - cl-cffi-gtk cl-cffi-gtk-pango) 41 - PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk-pango.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk-pango"; 5 - version = "cl-cffi-gtk-20201220-git"; 6 - 7 - description = "A Lisp binding to Pango"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk-pango"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk-pango.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk-pango DESCRIPTION A Lisp binding to Pango SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk-pango FILENAME 25 - cl-cffi-gtk-pango DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-cairo FILENAME cl-cffi-gtk-cairo) 30 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 31 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 32 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 33 - (NAME trivial-features FILENAME trivial-features) 34 - (NAME trivial-garbage FILENAME trivial-garbage)) 35 - DEPENDENCIES 36 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-cairo cl-cffi-gtk-glib 37 - cl-cffi-gtk-gobject closer-mop iterate trivial-features trivial-garbage) 38 - VERSION cl-cffi-gtk-20201220-git SIBLINGS 39 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 40 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 41 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-glib 42 - cl-cffi-gtk-gobject cl-cffi-gtk) 43 - PARASITES NIL) */
-49
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cffi-gtk.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cffi-gtk"; 5 - version = "20201220-git"; 6 - 7 - description = "A Lisp binding to GTK 3"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 - sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 14 - }; 15 - 16 - packageName = "cl-cffi-gtk"; 17 - 18 - asdFilesToKeep = ["cl-cffi-gtk.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cffi-gtk DESCRIPTION A Lisp binding to GTK 3 SHA256 22 - 15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1 URL 23 - http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 24 - MD5 954beac0970a46263153c2863ad1cb5f NAME cl-cffi-gtk FILENAME cl-cffi-gtk 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) 29 - (NAME cl-cffi-gtk-cairo FILENAME cl-cffi-gtk-cairo) 30 - (NAME cl-cffi-gtk-gdk FILENAME cl-cffi-gtk-gdk) 31 - (NAME cl-cffi-gtk-gdk-pixbuf FILENAME cl-cffi-gtk-gdk-pixbuf) 32 - (NAME cl-cffi-gtk-gio FILENAME cl-cffi-gtk-gio) 33 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 34 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 35 - (NAME cl-cffi-gtk-pango FILENAME cl-cffi-gtk-pango) 36 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-garbage FILENAME trivial-garbage)) 39 - DEPENDENCIES 40 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk-cairo cl-cffi-gtk-gdk 41 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gio cl-cffi-gtk-glib 42 - cl-cffi-gtk-gobject cl-cffi-gtk-pango closer-mop iterate trivial-features 43 - trivial-garbage) 44 - VERSION 20201220-git SIBLINGS 45 - (cl-cffi-gtk-cairo cl-cffi-gtk-demo-cairo cl-cffi-gtk-demo-glib 46 - cl-cffi-gtk-demo-gobject cl-cffi-gtk-example-gtk cl-cffi-gtk-opengl-demo 47 - cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gdk cl-cffi-gtk-gio cl-cffi-gtk-glib 48 - cl-cffi-gtk-gobject cl-cffi-gtk-pango) 49 - PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-change-case.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-change-case"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "cl-change-case/test" ]; 8 - 9 - description = "Convert strings between camelCase, param-case, PascalCase and more"; 10 - 11 - deps = [ args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."fiveam" args."flexi-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-change-case/2021-04-11/cl-change-case-20210411-git.tgz"; 15 - sha256 = "14s26b907h1nsnwdqbj6j4c9bvc4rc2l8ry2q1j7ibjfzqvhp4mj"; 16 - }; 17 - 18 - packageName = "cl-change-case"; 19 - 20 - asdFilesToKeep = ["cl-change-case.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-change-case DESCRIPTION 24 - Convert strings between camelCase, param-case, PascalCase and more SHA256 25 - 14s26b907h1nsnwdqbj6j4c9bvc4rc2l8ry2q1j7ibjfzqvhp4mj URL 26 - http://beta.quicklisp.org/archive/cl-change-case/2021-04-11/cl-change-case-20210411-git.tgz 27 - MD5 df72a3d71a6c65e149704688aec859b9 NAME cl-change-case FILENAME 28 - cl-change-case DEPS 29 - ((NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-ppcre-unicode FILENAME cl-ppcre-unicode) 31 - (NAME cl-unicode FILENAME cl-unicode) (NAME fiveam FILENAME fiveam) 32 - (NAME flexi-streams FILENAME flexi-streams)) 33 - DEPENDENCIES (cl-ppcre cl-ppcre-unicode cl-unicode fiveam flexi-streams) 34 - VERSION 20210411-git SIBLINGS NIL PARASITES (cl-change-case/test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cli.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cli"; 5 - version = "20151218-git"; 6 - 7 - description = "Command line parser"; 8 - 9 - deps = [ args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz"; 13 - sha256 = "0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay"; 14 - }; 15 - 16 - packageName = "cl-cli"; 17 - 18 - asdFilesToKeep = ["cl-cli.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cli DESCRIPTION Command line parser SHA256 22 - 0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay URL 23 - http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz 24 - MD5 820e5c7dde6800fcfa44b1fbc7a9d62b NAME cl-cli FILENAME cl-cli DEPS 25 - ((NAME split-sequence FILENAME split-sequence)) DEPENDENCIES 26 - (split-sequence) VERSION 20151218-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-colors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-colors"; 5 - version = "20180328-git"; 6 - 7 - parasites = [ "cl-colors-tests" ]; 8 - 9 - description = "Simple color library for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."let-plus" args."lift" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz"; 15 - sha256 = "0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a"; 16 - }; 17 - 18 - packageName = "cl-colors"; 19 - 20 - asdFilesToKeep = ["cl-colors.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-colors DESCRIPTION Simple color library for Common Lisp SHA256 24 - 0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a URL 25 - http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz 26 - MD5 5e59ea59b32a0254df9610a5662ae2ec NAME cl-colors FILENAME cl-colors DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME let-plus FILENAME let-plus) (NAME lift FILENAME lift)) 29 - DEPENDENCIES (alexandria anaphora let-plus lift) VERSION 20180328-git 30 - SIBLINGS NIL PARASITES (cl-colors-tests)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-colors2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-colors2"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "cl-colors2/tests" ]; 8 - 9 - description = "Simple color library for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."cl-ppcre" args."clunit2" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-colors2/2021-10-20/cl-colors2-20211020-git.tgz"; 15 - sha256 = "1vkhcyflp173szwnd1xg7hk0h1f3144qzwnsdv6a16rlxjz9h804"; 16 - }; 17 - 18 - packageName = "cl-colors2"; 19 - 20 - asdFilesToKeep = ["cl-colors2.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-colors2 DESCRIPTION Simple color library for Common Lisp SHA256 24 - 1vkhcyflp173szwnd1xg7hk0h1f3144qzwnsdv6a16rlxjz9h804 URL 25 - http://beta.quicklisp.org/archive/cl-colors2/2021-10-20/cl-colors2-20211020-git.tgz 26 - MD5 13fd422daa03328c909d1578d65f6222 NAME cl-colors2 FILENAME cl-colors2 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME clunit2 FILENAME clunit2)) 30 - DEPENDENCIES (alexandria cl-ppcre clunit2) VERSION 20211020-git SIBLINGS 31 - NIL PARASITES (cl-colors2/tests)) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-containers.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-containers"; 5 - version = "20200427-git"; 6 - 7 - parasites = [ "cl-containers/with-moptilities" "cl-containers/with-utilities" ]; 8 - 9 - description = "A generic container library for Common Lisp"; 10 - 11 - deps = [ args."asdf-system-connections" args."metatilities-base" args."moptilities" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz"; 15 - sha256 = "0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy"; 16 - }; 17 - 18 - packageName = "cl-containers"; 19 - 20 - asdFilesToKeep = ["cl-containers.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-containers DESCRIPTION 24 - A generic container library for Common Lisp SHA256 25 - 0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy URL 26 - http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz 27 - MD5 bb0e03a581e9b617dd166a3f511eaf6a NAME cl-containers FILENAME 28 - cl-containers DEPS 29 - ((NAME asdf-system-connections FILENAME asdf-system-connections) 30 - (NAME metatilities-base FILENAME metatilities-base) 31 - (NAME moptilities FILENAME moptilities)) 32 - DEPENDENCIES (asdf-system-connections metatilities-base moptilities) 33 - VERSION 20200427-git SIBLINGS (cl-containers-test) PARASITES 34 - (cl-containers/with-moptilities cl-containers/with-utilities)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cookie.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cookie"; 5 - version = "20191007-git"; 6 - 7 - description = "HTTP cookie manager"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."local-time" args."proc-parse" args."quri" args."split-sequence" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz"; 13 - sha256 = "1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh"; 14 - }; 15 - 16 - packageName = "cl-cookie"; 17 - 18 - asdFilesToKeep = ["cl-cookie.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cookie DESCRIPTION HTTP cookie manager SHA256 22 - 1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh URL 23 - http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz 24 - MD5 37595a6705fdd77415b859aea90d30bc NAME cl-cookie FILENAME cl-cookie DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cl-ppcre FILENAME cl-ppcre) 27 - (NAME cl-utilities FILENAME cl-utilities) 28 - (NAME local-time FILENAME local-time) 29 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 30 - (NAME split-sequence FILENAME split-sequence) 31 - (NAME trivial-features FILENAME trivial-features)) 32 - DEPENDENCIES 33 - (alexandria babel cl-ppcre cl-utilities local-time proc-parse quri 34 - split-sequence trivial-features) 35 - VERSION 20191007-git SIBLINGS (cl-cookie-test) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-css.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-css"; 5 - version = "20140914-git"; 6 - 7 - description = "Simple inline CSS generator"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz"; 13 - sha256 = "16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n"; 14 - }; 15 - 16 - packageName = "cl-css"; 17 - 18 - asdFilesToKeep = ["cl-css.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-css DESCRIPTION Simple inline CSS generator SHA256 22 - 16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n URL 23 - http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz 24 - MD5 a91f5a5d6a751af31d5c4fd8170f6ece NAME cl-css FILENAME cl-css DEPS NIL 25 - DEPENDENCIES NIL VERSION 20140914-git SIBLINGS NIL PARASITES NIL) */
-38
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-csv.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-csv"; 5 - version = "20201016-git"; 6 - 7 - parasites = [ "cl-csv/speed-test" "cl-csv/test" ]; 8 - 9 - description = "Facilities for reading and writing CSV format files"; 10 - 11 - deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; 15 - sha256 = "1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf"; 16 - }; 17 - 18 - packageName = "cl-csv"; 19 - 20 - asdFilesToKeep = ["cl-csv.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-csv DESCRIPTION 24 - Facilities for reading and writing CSV format files SHA256 25 - 1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf URL 26 - http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz 27 - MD5 3e067784236ab620857fe738dafedb4b NAME cl-csv FILENAME cl-csv DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-unicode FILENAME cl-unicode) 31 - (NAME flexi-streams FILENAME flexi-streams) 32 - (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2) 33 - (NAME named-readtables FILENAME named-readtables)) 34 - DEPENDENCIES 35 - (alexandria cl-interpol cl-ppcre cl-unicode flexi-streams iterate 36 - lisp-unit2 named-readtables) 37 - VERSION 20201016-git SIBLINGS (cl-csv-clsql cl-csv-data-table) PARASITES 38 - (cl-csv/speed-test cl-csv/test)) */
-45
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-cuda.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-cuda"; 5 - version = "20210807-git"; 6 - 7 - description = "Cl-cuda is a library to use NVIDIA CUDA in Common Lisp programs."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-pattern" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."external-program" args."named-readtables" args."osicat" args."split-sequence" args."trivial-features" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-cuda/2021-08-07/cl-cuda-20210807-git.tgz"; 13 - sha256 = "0q974qrjxdn7c53frpac0hz9wnxhnf3lf8xngrc8zkphp1windc0"; 14 - }; 15 - 16 - packageName = "cl-cuda"; 17 - 18 - asdFilesToKeep = ["cl-cuda.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-cuda DESCRIPTION 22 - Cl-cuda is a library to use NVIDIA CUDA in Common Lisp programs. SHA256 23 - 0q974qrjxdn7c53frpac0hz9wnxhnf3lf8xngrc8zkphp1windc0 URL 24 - http://beta.quicklisp.org/archive/cl-cuda/2021-08-07/cl-cuda-20210807-git.tgz 25 - MD5 0502aed4f738192adee742b7757ee8d7 NAME cl-cuda FILENAME cl-cuda DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 28 - (NAME cffi-toolchain FILENAME cffi-toolchain) 29 - (NAME cl-annot FILENAME cl-annot) (NAME cl-pattern FILENAME cl-pattern) 30 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-reexport FILENAME cl-reexport) 31 - (NAME cl-syntax FILENAME cl-syntax) 32 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 33 - (NAME external-program FILENAME external-program) 34 - (NAME named-readtables FILENAME named-readtables) 35 - (NAME osicat FILENAME osicat) 36 - (NAME split-sequence FILENAME split-sequence) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-types FILENAME trivial-types)) 39 - DEPENDENCIES 40 - (alexandria babel cffi cffi-grovel cffi-toolchain cl-annot cl-pattern 41 - cl-ppcre cl-reexport cl-syntax cl-syntax-annot external-program 42 - named-readtables osicat split-sequence trivial-features trivial-types) 43 - VERSION 20210807-git SIBLINGS 44 - (cl-cuda-examples cl-cuda-interop-examples cl-cuda-interop cl-cuda-misc) 45 - PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-custom-hash-table.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-custom-hash-table"; 5 - version = "20201220-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz"; 13 - sha256 = "1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3"; 14 - }; 15 - 16 - packageName = "cl-custom-hash-table"; 17 - 18 - asdFilesToKeep = ["cl-custom-hash-table.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-custom-hash-table DESCRIPTION System lacks description SHA256 22 - 1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3 URL 23 - http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz 24 - MD5 bd0f2f4a8e808911133af19c03e5c511 NAME cl-custom-hash-table FILENAME 25 - cl-custom-hash-table DEPS NIL DEPENDENCIES NIL VERSION 20201220-git 26 - SIBLINGS (cl-custom-hash-table-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-dbi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-dbi"; 5 - version = "20211020-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 13 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 14 - }; 15 - 16 - packageName = "cl-dbi"; 17 - 18 - asdFilesToKeep = ["cl-dbi.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-dbi DESCRIPTION System lacks description SHA256 22 - 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 23 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 24 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME cl-dbi FILENAME cl-dbi DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME closer-mop FILENAME closer-mop) (NAME dbi FILENAME dbi) 28 - (NAME split-sequence FILENAME split-sequence)) 29 - DEPENDENCIES (alexandria bordeaux-threads closer-mop dbi split-sequence) 30 - VERSION 20211020-git SIBLINGS 31 - (dbd-mysql dbd-postgres dbd-sqlite3 dbi-test dbi) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-difflib.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-difflib"; 5 - version = "20130128-git"; 6 - 7 - description = "A Lisp library for computing differences between sequences."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz"; 13 - sha256 = "1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6"; 14 - }; 15 - 16 - packageName = "cl-difflib"; 17 - 18 - asdFilesToKeep = ["cl-difflib.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-difflib DESCRIPTION 22 - A Lisp library for computing differences between sequences. SHA256 23 - 1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6 URL 24 - http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz 25 - MD5 e8a3434843a368373b67d09983d2b809 NAME cl-difflib FILENAME cl-difflib 26 - DEPS NIL DEPENDENCIES NIL VERSION 20130128-git SIBLINGS (cl-difflib-tests) 27 - PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-digraph.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-digraph"; 5 - version = "20211020-hg"; 6 - 7 - description = "Simple directed graphs for Common Lisp."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-digraph/2021-10-20/cl-digraph-20211020-hg.tgz"; 13 - sha256 = "0iqzqy322xywmal7y7vhn1myhdglr78fj89maiwfx6yjppcyd1i1"; 14 - }; 15 - 16 - packageName = "cl-digraph"; 17 - 18 - asdFilesToKeep = ["cl-digraph.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-digraph DESCRIPTION Simple directed graphs for Common Lisp. 22 - SHA256 0iqzqy322xywmal7y7vhn1myhdglr78fj89maiwfx6yjppcyd1i1 URL 23 - http://beta.quicklisp.org/archive/cl-digraph/2021-10-20/cl-digraph-20211020-hg.tgz 24 - MD5 737c3640b4b079ce0ee730525aa8b6de NAME cl-digraph FILENAME cl-digraph 25 - DEPS NIL DEPENDENCIES NIL VERSION 20211020-hg SIBLINGS 26 - (cl-digraph.dot cl-digraph.test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-dot.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-dot"; 5 - version = "20200925-git"; 6 - 7 - description = "Generate Dot Output from Arbitrary Lisp Data"; 8 - 9 - deps = [ args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz"; 13 - sha256 = "01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla"; 14 - }; 15 - 16 - packageName = "cl-dot"; 17 - 18 - asdFilesToKeep = ["cl-dot.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-dot DESCRIPTION Generate Dot Output from Arbitrary Lisp Data 22 - SHA256 01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla URL 23 - http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz 24 - MD5 35c68f431f188d4c1c7604b4b1af220f NAME cl-dot FILENAME cl-dot DEPS 25 - ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop) VERSION 20200925-git 26 - SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-emb.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-emb"; 5 - version = "20190521-git"; 6 - 7 - description = "A templating system for Common Lisp"; 8 - 9 - deps = [ args."cl-ppcre" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz"; 13 - sha256 = "1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d"; 14 - }; 15 - 16 - packageName = "cl-emb"; 17 - 18 - asdFilesToKeep = ["cl-emb.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-emb DESCRIPTION A templating system for Common Lisp SHA256 22 - 1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d URL 23 - http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz 24 - MD5 b27bbe8de2206ab7c461700b58d4d527 NAME cl-emb FILENAME cl-emb DEPS 25 - ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES (cl-ppcre) VERSION 26 - 20190521-git SIBLINGS NIL PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-environments.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-environments"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "cl-environments/test" ]; 8 - 9 - description = "Implements the CLTL2 environment access functionality 10 - for implementations which do not provide the 11 - functionality to the programmer."; 12 - 13 - deps = [ args."alexandria" args."anaphora" args."closer-mop" args."collectors" args."fiveam" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ]; 14 - 15 - src = fetchurl { 16 - url = "http://beta.quicklisp.org/archive/cl-environments/2021-10-20/cl-environments-20211020-git.tgz"; 17 - sha256 = "0aryb40nmmw34xl6h0fp8i43d2x7zlwysim365c171mcyxh3w9lr"; 18 - }; 19 - 20 - packageName = "cl-environments"; 21 - 22 - asdFilesToKeep = ["cl-environments.asd"]; 23 - overrides = x: x; 24 - } 25 - /* (SYSTEM cl-environments DESCRIPTION 26 - Implements the CLTL2 environment access functionality 27 - for implementations which do not provide the 28 - functionality to the programmer. 29 - SHA256 0aryb40nmmw34xl6h0fp8i43d2x7zlwysim365c171mcyxh3w9lr URL 30 - http://beta.quicklisp.org/archive/cl-environments/2021-10-20/cl-environments-20211020-git.tgz 31 - MD5 a796decf21a5b595ff591ffca378994a NAME cl-environments FILENAME 32 - cl-environments DEPS 33 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 34 - (NAME closer-mop FILENAME closer-mop) 35 - (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam) 36 - (NAME iterate FILENAME iterate) (NAME optima FILENAME optima) 37 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 38 - (NAME symbol-munger FILENAME symbol-munger)) 39 - DEPENDENCIES 40 - (alexandria anaphora closer-mop collectors fiveam iterate optima 41 - parse-declarations-1.0 symbol-munger) 42 - VERSION 20211020-git SIBLINGS NIL PARASITES (cl-environments/test)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-fad.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-fad"; 5 - version = "20210124-git"; 6 - 7 - parasites = [ "cl-fad-test" ]; 8 - 9 - description = "Portable pathname library"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-ppcre" args."unit-test" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz"; 15 - sha256 = "17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0"; 16 - }; 17 - 18 - packageName = "cl-fad"; 19 - 20 - asdFilesToKeep = ["cl-fad.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-fad DESCRIPTION Portable pathname library SHA256 24 - 17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0 URL 25 - http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz 26 - MD5 aa8705a0dd8ca1b43d8c76a177efdf74 NAME cl-fad FILENAME cl-fad DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME unit-test FILENAME unit-test)) 30 - DEPENDENCIES (alexandria bordeaux-threads cl-ppcre unit-test) VERSION 31 - 20210124-git SIBLINGS NIL PARASITES (cl-fad-test)) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-form-types.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-form-types"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "cl-form-types/test" ]; 8 - 9 - description = "Library for determining types of Common Lisp forms."; 10 - 11 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."closer-mop" args."collectors" args."fiveam" args."introspect-environment" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-form-types/2021-12-09/cl-form-types-20211209-git.tgz"; 15 - sha256 = "1w1918a9rjw9dp5qpwq3mf0p4yyd2xladnd6sz4zk645y7wxd08i"; 16 - }; 17 - 18 - packageName = "cl-form-types"; 19 - 20 - asdFilesToKeep = ["cl-form-types.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-form-types DESCRIPTION 24 - Library for determining types of Common Lisp forms. SHA256 25 - 1w1918a9rjw9dp5qpwq3mf0p4yyd2xladnd6sz4zk645y7wxd08i URL 26 - http://beta.quicklisp.org/archive/cl-form-types/2021-12-09/cl-form-types-20211209-git.tgz 27 - MD5 2c128061c2e8a97b70fbf8939708d53e NAME cl-form-types FILENAME 28 - cl-form-types DEPS 29 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 30 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 31 - (NAME cl-environments FILENAME cl-environments) 32 - (NAME closer-mop FILENAME closer-mop) 33 - (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam) 34 - (NAME introspect-environment FILENAME introspect-environment) 35 - (NAME iterate FILENAME iterate) (NAME optima FILENAME optima) 36 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 37 - (NAME symbol-munger FILENAME symbol-munger)) 38 - DEPENDENCIES 39 - (agutil alexandria anaphora arrows cl-environments closer-mop collectors 40 - fiveam introspect-environment iterate optima parse-declarations-1.0 41 - symbol-munger) 42 - VERSION 20211209-git SIBLINGS NIL PARASITES (cl-form-types/test)) */
-41
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-fuse-meta-fs.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-fuse-meta-fs"; 5 - version = "20190710-git"; 6 - 7 - description = "CFFI bindings to FUSE (Filesystem in user space)"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-fuse" args."cl-utilities" args."iterate" args."pcall" args."pcall-queue" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz"; 13 - sha256 = "1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7"; 14 - }; 15 - 16 - packageName = "cl-fuse-meta-fs"; 17 - 18 - asdFilesToKeep = ["cl-fuse-meta-fs.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-fuse-meta-fs DESCRIPTION 22 - CFFI bindings to FUSE (Filesystem in user space) SHA256 23 - 1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7 URL 24 - http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz 25 - MD5 461f7023274fb273e6c759e881bdd636 NAME cl-fuse-meta-fs FILENAME 26 - cl-fuse-meta-fs DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 30 - (NAME cffi-toolchain FILENAME cffi-toolchain) 31 - (NAME cl-fuse FILENAME cl-fuse) (NAME cl-utilities FILENAME cl-utilities) 32 - (NAME iterate FILENAME iterate) (NAME pcall FILENAME pcall) 33 - (NAME pcall-queue FILENAME pcall-queue) 34 - (NAME trivial-backtrace FILENAME trivial-backtrace) 35 - (NAME trivial-features FILENAME trivial-features) 36 - (NAME trivial-utf-8 FILENAME trivial-utf-8)) 37 - DEPENDENCIES 38 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-fuse 39 - cl-utilities iterate pcall pcall-queue trivial-backtrace trivial-features 40 - trivial-utf-8) 41 - VERSION 20190710-git SIBLINGS NIL PARASITES NIL) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-fuse.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-fuse"; 5 - version = "20200925-git"; 6 - 7 - description = "CFFI bindings to FUSE (Filesystem in user space)"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."iterate" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz"; 13 - sha256 = "1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp"; 14 - }; 15 - 16 - packageName = "cl-fuse"; 17 - 18 - asdFilesToKeep = ["cl-fuse.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-fuse DESCRIPTION CFFI bindings to FUSE (Filesystem in user space) 22 - SHA256 1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp URL 23 - http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz 24 - MD5 0342ea914801f40d804629170a435e54 NAME cl-fuse FILENAME cl-fuse DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 28 - (NAME cffi-toolchain FILENAME cffi-toolchain) 29 - (NAME cl-utilities FILENAME cl-utilities) (NAME iterate FILENAME iterate) 30 - (NAME trivial-backtrace FILENAME trivial-backtrace) 31 - (NAME trivial-features FILENAME trivial-features) 32 - (NAME trivial-utf-8 FILENAME trivial-utf-8)) 33 - DEPENDENCIES 34 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain 35 - cl-utilities iterate trivial-backtrace trivial-features trivial-utf-8) 36 - VERSION 20200925-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-fuzz.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-fuzz"; 5 - version = "20181018-git"; 6 - 7 - description = "A Fuzz Testing Framework"; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-fuzz/2018-10-18/cl-fuzz-20181018-git.tgz"; 13 - sha256 = "1kxh73lbnhzzpflab1vpxsmg4qia9n42sij0459iksi29kmjxjpz"; 14 - }; 15 - 16 - packageName = "cl-fuzz"; 17 - 18 - asdFilesToKeep = ["cl-fuzz.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-fuzz DESCRIPTION A Fuzz Testing Framework SHA256 22 - 1kxh73lbnhzzpflab1vpxsmg4qia9n42sij0459iksi29kmjxjpz URL 23 - http://beta.quicklisp.org/archive/cl-fuzz/2018-10-18/cl-fuzz-20181018-git.tgz 24 - MD5 22e715b370ea886bbff1e09db20c4e32 NAME cl-fuzz FILENAME cl-fuzz DEPS 25 - ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 26 - 20181018-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-geometry.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-geometry"; 5 - version = "20160531-git"; 6 - 7 - description = "Library for two dimensional geometry."; 8 - 9 - deps = [ args."iterate" args."trees" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-geometry/2016-05-31/cl-geometry-20160531-git.tgz"; 13 - sha256 = "0v451w2dx9llvd2kgp3m5jn2n8n0xwynxf8zl436cngh63ag6s7p"; 14 - }; 15 - 16 - packageName = "cl-geometry"; 17 - 18 - asdFilesToKeep = ["cl-geometry.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-geometry DESCRIPTION Library for two dimensional geometry. SHA256 22 - 0v451w2dx9llvd2kgp3m5jn2n8n0xwynxf8zl436cngh63ag6s7p URL 23 - http://beta.quicklisp.org/archive/cl-geometry/2016-05-31/cl-geometry-20160531-git.tgz 24 - MD5 c0aaccbb4e2df6c504e6c1cd15155353 NAME cl-geometry FILENAME cl-geometry 25 - DEPS ((NAME iterate FILENAME iterate) (NAME trees FILENAME trees)) 26 - DEPENDENCIES (iterate trees) VERSION 20160531-git SIBLINGS 27 - (cl-geometry-tests) PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-gobject-introspection.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-gobject-introspection"; 5 - version = "20210124-git"; 6 - 7 - description = "Binding to GObjectIntrospection"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-gobject-introspection/2021-01-24/cl-gobject-introspection-20210124-git.tgz"; 13 - sha256 = "1hrc451d9xdp3pfmwalw32r3iqfvw6ccy665kl5560lihwmk59w0"; 14 - }; 15 - 16 - packageName = "cl-gobject-introspection"; 17 - 18 - asdFilesToKeep = ["cl-gobject-introspection.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-gobject-introspection DESCRIPTION Binding to GObjectIntrospection 22 - SHA256 1hrc451d9xdp3pfmwalw32r3iqfvw6ccy665kl5560lihwmk59w0 URL 23 - http://beta.quicklisp.org/archive/cl-gobject-introspection/2021-01-24/cl-gobject-introspection-20210124-git.tgz 24 - MD5 ad760b820c86142c0a1309af29541680 NAME cl-gobject-introspection FILENAME 25 - cl-gobject-introspection DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) (NAME iterate FILENAME iterate) 28 - (NAME trivial-features FILENAME trivial-features) 29 - (NAME trivial-garbage FILENAME trivial-garbage)) 30 - DEPENDENCIES 31 - (alexandria babel cffi iterate trivial-features trivial-garbage) VERSION 32 - 20210124-git SIBLINGS (cl-gobject-introspection-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-heap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-heap"; 5 - version = "0.1.6"; 6 - 7 - description = "An implementation of heap and priority queue data structures."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-heap/2013-03-12/cl-heap-0.1.6.tgz"; 13 - sha256 = "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"; 14 - }; 15 - 16 - packageName = "cl-heap"; 17 - 18 - asdFilesToKeep = ["cl-heap.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-heap DESCRIPTION 22 - An implementation of heap and priority queue data structures. SHA256 23 - 163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i URL 24 - http://beta.quicklisp.org/archive/cl-heap/2013-03-12/cl-heap-0.1.6.tgz MD5 25 - a12d71f7bbe22d6acdcc7cf36fb907b0 NAME cl-heap FILENAME cl-heap DEPS NIL 26 - DEPENDENCIES NIL VERSION 0.1.6 SIBLINGS (cl-heap-tests) PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-hooks.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-hooks"; 5 - version = "architecture.hooks-20181210-git"; 6 - 7 - parasites = [ "cl-hooks/test" ]; 8 - 9 - description = "This system provides the hooks extension point 10 - mechanism (as known, e.g., from GNU Emacs)."; 11 - 12 - deps = [ args."alexandria" args."anaphora" args."closer-mop" args."fiveam" args."let-plus" args."trivial-garbage" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz"; 16 - sha256 = "04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns"; 17 - }; 18 - 19 - packageName = "cl-hooks"; 20 - 21 - asdFilesToKeep = ["cl-hooks.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM cl-hooks DESCRIPTION This system provides the hooks extension point 25 - mechanism (as known, e.g., from GNU Emacs). 26 - SHA256 04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns URL 27 - http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz 28 - MD5 698bdb1309cae19fb8f0e1e425ba4cd9 NAME cl-hooks FILENAME cl-hooks DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 30 - (NAME closer-mop FILENAME closer-mop) (NAME fiveam FILENAME fiveam) 31 - (NAME let-plus FILENAME let-plus) 32 - (NAME trivial-garbage FILENAME trivial-garbage)) 33 - DEPENDENCIES 34 - (alexandria anaphora closer-mop fiveam let-plus trivial-garbage) VERSION 35 - architecture.hooks-20181210-git SIBLINGS NIL PARASITES (cl-hooks/test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-html-diff.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-html-diff"; 5 - version = "20130128-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."cl-difflib" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz"; 13 - sha256 = "0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci"; 14 - }; 15 - 16 - packageName = "cl-html-diff"; 17 - 18 - asdFilesToKeep = ["cl-html-diff.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-html-diff DESCRIPTION System lacks description SHA256 22 - 0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci URL 23 - http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz 24 - MD5 70f93e60e968dad9a44ede60856dc343 NAME cl-html-diff FILENAME 25 - cl-html-diff DEPS ((NAME cl-difflib FILENAME cl-difflib)) DEPENDENCIES 26 - (cl-difflib) VERSION 20130128-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-html-parse.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-html-parse"; 5 - version = "20200925-git"; 6 - 7 - description = "HTML Parser"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz"; 13 - sha256 = "14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f"; 14 - }; 15 - 16 - packageName = "cl-html-parse"; 17 - 18 - asdFilesToKeep = ["cl-html-parse.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-html-parse DESCRIPTION HTML Parser SHA256 22 - 14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f URL 23 - http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz 24 - MD5 3333eedf037a48900c663fceae3e4cfd NAME cl-html-parse FILENAME 25 - cl-html-parse DEPS NIL DEPENDENCIES NIL VERSION 20200925-git SIBLINGS NIL 26 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-html5-parser.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-html5-parser"; 5 - version = "20190521-git"; 6 - 7 - description = "A HTML5 parser for Common Lisp"; 8 - 9 - deps = [ args."cl-ppcre" args."flexi-streams" args."string-case" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz"; 13 - sha256 = "055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p"; 14 - }; 15 - 16 - packageName = "cl-html5-parser"; 17 - 18 - asdFilesToKeep = ["cl-html5-parser.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-html5-parser DESCRIPTION A HTML5 parser for Common Lisp SHA256 22 - 055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p URL 23 - http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz 24 - MD5 149e5609d0a96c867fac6c22693c5e30 NAME cl-html5-parser FILENAME 25 - cl-html5-parser DEPS 26 - ((NAME cl-ppcre FILENAME cl-ppcre) 27 - (NAME flexi-streams FILENAME flexi-streams) 28 - (NAME string-case FILENAME string-case) 29 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 30 - DEPENDENCIES (cl-ppcre flexi-streams string-case trivial-gray-streams) 31 - VERSION 20190521-git SIBLINGS (cl-html5-parser-cxml cl-html5-parser-tests) 32 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-interpol.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-interpol"; 5 - version = "20201220-git"; 6 - 7 - parasites = [ "cl-interpol-test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."named-readtables" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz"; 15 - sha256 = "1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d"; 16 - }; 17 - 18 - packageName = "cl-interpol"; 19 - 20 - asdFilesToKeep = ["cl-interpol.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-interpol DESCRIPTION System lacks description SHA256 24 - 1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d URL 25 - http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz 26 - MD5 d678c521474e1774185b78883396da49 NAME cl-interpol FILENAME cl-interpol 27 - DEPS 28 - ((NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-unicode FILENAME cl-unicode) 29 - (NAME flexi-streams FILENAME flexi-streams) 30 - (NAME named-readtables FILENAME named-readtables)) 31 - DEPENDENCIES (cl-ppcre cl-unicode flexi-streams named-readtables) VERSION 32 - 20201220-git SIBLINGS NIL PARASITES (cl-interpol-test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-jpeg.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-jpeg"; 5 - version = "20170630-git"; 6 - 7 - description = "A self-contained baseline JPEG codec implementation"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz"; 13 - sha256 = "1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0"; 14 - }; 15 - 16 - packageName = "cl-jpeg"; 17 - 18 - asdFilesToKeep = ["cl-jpeg.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-jpeg DESCRIPTION 22 - A self-contained baseline JPEG codec implementation SHA256 23 - 1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0 URL 24 - http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz 25 - MD5 b6eb4ca5d893f428b5bbe46cd49f76ad NAME cl-jpeg FILENAME cl-jpeg DEPS NIL 26 - DEPENDENCIES NIL VERSION 20170630-git SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-json.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-json"; 5 - version = "20141217-git"; 6 - 7 - parasites = [ "cl-json.test" ]; 8 - 9 - description = "JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format."; 10 - 11 - deps = [ args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz"; 15 - sha256 = "00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g"; 16 - }; 17 - 18 - packageName = "cl-json"; 19 - 20 - asdFilesToKeep = ["cl-json.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-json DESCRIPTION 24 - JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format. 25 - SHA256 00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g URL 26 - http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz 27 - MD5 9d873fa462b93c76d90642d8e3fb4881 NAME cl-json FILENAME cl-json DEPS 28 - ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) VERSION 20141217-git 29 - SIBLINGS NIL PARASITES (cl-json.test)) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-l10n-cldr.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-l10n-cldr"; 5 - version = "20120909-darcs"; 6 - 7 - description = "The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz"; 13 - sha256 = "03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv"; 14 - }; 15 - 16 - packageName = "cl-l10n-cldr"; 17 - 18 - asdFilesToKeep = ["cl-l10n-cldr.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-l10n-cldr DESCRIPTION 22 - The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way. 23 - SHA256 03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv URL 24 - http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz 25 - MD5 466e776f2f6b931d9863e1fc4d0b514e NAME cl-l10n-cldr FILENAME 26 - cl-l10n-cldr DEPS NIL DEPENDENCIES NIL VERSION 20120909-darcs SIBLINGS NIL 27 - PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-l10n.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-l10n"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "cl-l10n/test" ]; 8 - 9 - description = "Portable CL Locale Support"; 10 - 11 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cl-fad" args."cl-l10n-cldr" args."cl-ppcre" args."closer-mop" args."closure-common" args."cxml" args."flexi-streams" args."hu_dot_dwim_dot_stefil" args."iterate" args."local-time" args."metabang-bind" args."parse-number" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-l10n/2021-12-09/cl-l10n-20211209-git.tgz"; 15 - sha256 = "0l67xg282pim6167g27zcqk4xj51cfpmcbzc8bjg8933w42fdjf4"; 16 - }; 17 - 18 - packageName = "cl-l10n"; 19 - 20 - asdFilesToKeep = ["cl-l10n.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-l10n DESCRIPTION Portable CL Locale Support SHA256 24 - 0l67xg282pim6167g27zcqk4xj51cfpmcbzc8bjg8933w42fdjf4 URL 25 - http://beta.quicklisp.org/archive/cl-l10n/2021-12-09/cl-l10n-20211209-git.tgz 26 - MD5 e575bb4ff3a6d0bbba5220c631f9c83a NAME cl-l10n FILENAME cl-l10n DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-fad FILENAME cl-fad) (NAME cl-l10n-cldr FILENAME cl-l10n-cldr) 30 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME closer-mop FILENAME closer-mop) 31 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 32 - (NAME flexi-streams FILENAME flexi-streams) 33 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 34 - (NAME iterate FILENAME iterate) (NAME local-time FILENAME local-time) 35 - (NAME metabang-bind FILENAME metabang-bind) 36 - (NAME parse-number FILENAME parse-number) (NAME puri FILENAME puri) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 39 - DEPENDENCIES 40 - (alexandria babel bordeaux-threads cl-fad cl-l10n-cldr cl-ppcre closer-mop 41 - closure-common cxml flexi-streams hu.dwim.stefil iterate local-time 42 - metabang-bind parse-number puri trivial-features trivial-gray-streams) 43 - VERSION 20211209-git SIBLINGS NIL PARASITES (cl-l10n/test)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-libuv.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-libuv"; 5 - version = "20200610-git"; 6 - 7 - description = "Low-level libuv bindings for Common Lisp."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz"; 13 - sha256 = "1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19"; 14 - }; 15 - 16 - packageName = "cl-libuv"; 17 - 18 - asdFilesToKeep = ["cl-libuv.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-libuv DESCRIPTION Low-level libuv bindings for Common Lisp. 22 - SHA256 1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19 URL 23 - http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz 24 - MD5 e6b3f8ffa7b8fb642350f09d1afa7f38 NAME cl-libuv FILENAME cl-libuv DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 27 - (NAME cffi-toolchain FILENAME cffi-toolchain) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES 30 - (alexandria babel cffi cffi-grovel cffi-toolchain trivial-features) VERSION 31 - 20200610-git SIBLINGS NIL PARASITES NIL) */
-38
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-locale.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-locale"; 5 - version = "20151031-git"; 6 - 7 - description = "Simple i18n library for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."arnesi" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."closer-mop" args."collectors" args."iterate" args."named-readtables" args."symbol-munger" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz"; 13 - sha256 = "14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg"; 14 - }; 15 - 16 - packageName = "cl-locale"; 17 - 18 - asdFilesToKeep = ["cl-locale.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-locale DESCRIPTION Simple i18n library for Common Lisp SHA256 22 - 14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg URL 23 - http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz 24 - MD5 7a8fb3678938af6dc5c9fd6431428aff NAME cl-locale FILENAME cl-locale DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 26 - (NAME arnesi FILENAME arnesi) (NAME cl-annot FILENAME cl-annot) 27 - (NAME cl-syntax FILENAME cl-syntax) 28 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 29 - (NAME closer-mop FILENAME closer-mop) 30 - (NAME collectors FILENAME collectors) (NAME iterate FILENAME iterate) 31 - (NAME named-readtables FILENAME named-readtables) 32 - (NAME symbol-munger FILENAME symbol-munger) 33 - (NAME trivial-types FILENAME trivial-types)) 34 - DEPENDENCIES 35 - (alexandria anaphora arnesi cl-annot cl-syntax cl-syntax-annot closer-mop 36 - collectors iterate named-readtables symbol-munger trivial-types) 37 - VERSION 20151031-git SIBLINGS (cl-locale-syntax cl-locale-test) PARASITES 38 - NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-markup.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-markup"; 5 - version = "20131003-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz"; 13 - sha256 = "1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r"; 14 - }; 15 - 16 - packageName = "cl-markup"; 17 - 18 - asdFilesToKeep = ["cl-markup.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-markup DESCRIPTION System lacks description SHA256 22 - 1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r URL 23 - http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz 24 - MD5 3ec36b8e15435933f614959032987848 NAME cl-markup FILENAME cl-markup DEPS 25 - NIL DEPENDENCIES NIL VERSION 20131003-git SIBLINGS (cl-markup-test) 26 - PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-mustache.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-mustache"; 5 - version = "20200325-git"; 6 - 7 - description = "Mustache Template Renderer"; 8 - 9 - deps = [ args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-mustache/2020-03-25/cl-mustache-20200325-git.tgz"; 13 - sha256 = "1x1rsmgqc39imx4ay3b35dzvzccaqjayz90qv2cylqbbq9sg9arr"; 14 - }; 15 - 16 - packageName = "cl-mustache"; 17 - 18 - asdFilesToKeep = ["cl-mustache.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-mustache DESCRIPTION Mustache Template Renderer SHA256 22 - 1x1rsmgqc39imx4ay3b35dzvzccaqjayz90qv2cylqbbq9sg9arr URL 23 - http://beta.quicklisp.org/archive/cl-mustache/2020-03-25/cl-mustache-20200325-git.tgz 24 - MD5 52381d17458d88d6a8b760f351bf517d NAME cl-mustache FILENAME cl-mustache 25 - DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop) VERSION 20200325-git 26 - SIBLINGS (cl-mustache-test) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-mysql.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-mysql"; 5 - version = "20200610-git"; 6 - 7 - description = "Common Lisp MySQL library bindings"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz"; 13 - sha256 = "0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w"; 14 - }; 15 - 16 - packageName = "cl-mysql"; 17 - 18 - asdFilesToKeep = ["cl-mysql.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-mysql DESCRIPTION Common Lisp MySQL library bindings SHA256 22 - 0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w URL 23 - http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz 24 - MD5 05d5ed6b48edbafd258e189d7868822e NAME cl-mysql FILENAME cl-mysql DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) 27 - (NAME trivial-features FILENAME trivial-features)) 28 - DEPENDENCIES (alexandria babel cffi trivial-features) VERSION 20200610-git 29 - SIBLINGS (cl-mysql-test) PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-num-utils.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-num-utils"; 5 - version = "20210531-git"; 6 - 7 - parasites = [ "cl-num-utils-tests" ]; 8 - 9 - description = "Numerical utilities for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-slice" args."clunit" args."let-plus" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-num-utils/2021-05-31/cl-num-utils-20210531-git.tgz"; 15 - sha256 = "1snhwhnrkmavkhwd0dx7a958xdiwcc0a84fj0k5xqj99ksd9hp8x"; 16 - }; 17 - 18 - packageName = "cl-num-utils"; 19 - 20 - asdFilesToKeep = ["cl-num-utils.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-num-utils DESCRIPTION Numerical utilities for Common Lisp SHA256 24 - 1snhwhnrkmavkhwd0dx7a958xdiwcc0a84fj0k5xqj99ksd9hp8x URL 25 - http://beta.quicklisp.org/archive/cl-num-utils/2021-05-31/cl-num-utils-20210531-git.tgz 26 - MD5 1977251bf552ba82005de0dc2f37d130 NAME cl-num-utils FILENAME 27 - cl-num-utils DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 29 - (NAME array-operations FILENAME array-operations) 30 - (NAME cl-slice FILENAME cl-slice) (NAME clunit FILENAME clunit) 31 - (NAME let-plus FILENAME let-plus)) 32 - DEPENDENCIES 33 - (alexandria anaphora array-operations cl-slice clunit let-plus) VERSION 34 - 20210531-git SIBLINGS NIL PARASITES (cl-num-utils-tests)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-paths-ttf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-paths-ttf"; 5 - version = "cl-vectors-20180228-git"; 6 - 7 - description = "cl-paths-ttf: vectorial paths manipulation"; 8 - 9 - deps = [ args."cl-paths" args."zpb-ttf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 - sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 14 - }; 15 - 16 - packageName = "cl-paths-ttf"; 17 - 18 - asdFilesToKeep = ["cl-paths-ttf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-paths-ttf DESCRIPTION cl-paths-ttf: vectorial paths manipulation 22 - SHA256 0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly URL 23 - http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz 24 - MD5 9d9629786d4f2c19c15cc6cd3049c343 NAME cl-paths-ttf FILENAME 25 - cl-paths-ttf DEPS 26 - ((NAME cl-paths FILENAME cl-paths) (NAME zpb-ttf FILENAME zpb-ttf)) 27 - DEPENDENCIES (cl-paths zpb-ttf) VERSION cl-vectors-20180228-git SIBLINGS 28 - (cl-aa-misc cl-aa cl-paths cl-vectors) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-paths.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-paths"; 5 - version = "cl-vectors-20180228-git"; 6 - 7 - description = "cl-paths: vectorial paths manipulation"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 - sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 14 - }; 15 - 16 - packageName = "cl-paths"; 17 - 18 - asdFilesToKeep = ["cl-paths.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-paths DESCRIPTION cl-paths: vectorial paths manipulation SHA256 22 - 0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly URL 23 - http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz 24 - MD5 9d9629786d4f2c19c15cc6cd3049c343 NAME cl-paths FILENAME cl-paths DEPS 25 - NIL DEPENDENCIES NIL VERSION cl-vectors-20180228-git SIBLINGS 26 - (cl-aa-misc cl-aa cl-paths-ttf cl-vectors) PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-pattern.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-pattern"; 5 - version = "20140713-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."named-readtables" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-pattern/2014-07-13/cl-pattern-20140713-git.tgz"; 13 - sha256 = "08z7jccjcq41i3i5zdsgixqnijgyrb4q7hm7gq8l5xb1sr3kj72v"; 14 - }; 15 - 16 - packageName = "cl-pattern"; 17 - 18 - asdFilesToKeep = ["cl-pattern.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-pattern DESCRIPTION System lacks description SHA256 22 - 08z7jccjcq41i3i5zdsgixqnijgyrb4q7hm7gq8l5xb1sr3kj72v URL 23 - http://beta.quicklisp.org/archive/cl-pattern/2014-07-13/cl-pattern-20140713-git.tgz 24 - MD5 cf8e74def535c66a358df1ada9d89785 NAME cl-pattern FILENAME cl-pattern 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME cl-annot FILENAME cl-annot) 27 - (NAME cl-syntax FILENAME cl-syntax) 28 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 29 - (NAME named-readtables FILENAME named-readtables) 30 - (NAME trivial-types FILENAME trivial-types)) 31 - DEPENDENCIES 32 - (alexandria cl-annot cl-syntax cl-syntax-annot named-readtables 33 - trivial-types) 34 - VERSION 20140713-git SIBLINGS (cl-pattern-benchmark) PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-pdf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-pdf"; 5 - version = "20211020-git"; 6 - 7 - description = "Common Lisp PDF Generation Library"; 8 - 9 - deps = [ args."iterate" args."uiop" args."zpb-ttf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-pdf/2021-10-20/cl-pdf-20211020-git.tgz"; 13 - sha256 = "0wyh7iv86sqzdn5xj5crrip8iri5a64qzc6cczgbj1gkv65i28bk"; 14 - }; 15 - 16 - packageName = "cl-pdf"; 17 - 18 - asdFilesToKeep = ["cl-pdf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-pdf DESCRIPTION Common Lisp PDF Generation Library SHA256 22 - 0wyh7iv86sqzdn5xj5crrip8iri5a64qzc6cczgbj1gkv65i28bk URL 23 - http://beta.quicklisp.org/archive/cl-pdf/2021-10-20/cl-pdf-20211020-git.tgz 24 - MD5 c8a9cfd5d65eae217bd55d786d31dca9 NAME cl-pdf FILENAME cl-pdf DEPS 25 - ((NAME iterate FILENAME iterate) (NAME uiop FILENAME uiop) 26 - (NAME zpb-ttf FILENAME zpb-ttf)) 27 - DEPENDENCIES (iterate uiop zpb-ttf) VERSION 20211020-git SIBLINGS 28 - (cl-pdf-parser) PARASITES NIL) */
-41
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-postgres.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-postgres"; 5 - version = "postmodern-20211209-git"; 6 - 7 - parasites = [ "cl-postgres/simple-date-tests" "cl-postgres/tests" ]; 8 - 9 - description = "Low-level client library for PostgreSQL"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-ppcre" args."fiveam" args."ironclad" args."md5" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."uiop" args."usocket" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz"; 15 - sha256 = "1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6"; 16 - }; 17 - 18 - packageName = "cl-postgres"; 19 - 20 - asdFilesToKeep = ["cl-postgres.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-postgres DESCRIPTION Low-level client library for PostgreSQL 24 - SHA256 1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6 URL 25 - http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz 26 - MD5 6d14c4b5fec085594dc66d520174e0e6 NAME cl-postgres FILENAME cl-postgres 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME cl-base64 FILENAME cl-base64) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME fiveam FILENAME fiveam) (NAME ironclad FILENAME ironclad) 32 - (NAME md5 FILENAME md5) (NAME simple-date FILENAME simple-date) 33 - (NAME simple-date/postgres-glue FILENAME simple-date_slash_postgres-glue) 34 - (NAME split-sequence FILENAME split-sequence) 35 - (NAME uax-15 FILENAME uax-15) (NAME uiop FILENAME uiop) 36 - (NAME usocket FILENAME usocket)) 37 - DEPENDENCIES 38 - (alexandria bordeaux-threads cl-base64 cl-ppcre fiveam ironclad md5 39 - simple-date simple-date/postgres-glue split-sequence uax-15 uiop usocket) 40 - VERSION postmodern-20211209-git SIBLINGS (postmodern s-sql simple-date) 41 - PARASITES (cl-postgres/simple-date-tests cl-postgres/tests)) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-postgres_plus_local-time.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-postgres_plus_local-time"; 5 - version = "local-time-20210124-git"; 6 - 7 - description = "Integration between cl-postgres and local-time"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-ppcre" args."ironclad" args."local-time" args."md5" args."split-sequence" args."uax-15" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz"; 13 - sha256 = "0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s"; 14 - }; 15 - 16 - packageName = "cl-postgres+local-time"; 17 - 18 - asdFilesToKeep = ["cl-postgres+local-time.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-postgres+local-time DESCRIPTION 22 - Integration between cl-postgres and local-time SHA256 23 - 0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s URL 24 - http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz 25 - MD5 631d67bc84ae838792717b256f2cdbaf NAME cl-postgres+local-time FILENAME 26 - cl-postgres_plus_local-time DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-base64 FILENAME cl-base64) 30 - (NAME cl-postgres FILENAME cl-postgres) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME ironclad FILENAME ironclad) (NAME local-time FILENAME local-time) 32 - (NAME md5 FILENAME md5) (NAME split-sequence FILENAME split-sequence) 33 - (NAME uax-15 FILENAME uax-15) (NAME usocket FILENAME usocket)) 34 - DEPENDENCIES 35 - (alexandria bordeaux-threads cl-base64 cl-postgres cl-ppcre ironclad 36 - local-time md5 split-sequence uax-15 usocket) 37 - VERSION local-time-20210124-git SIBLINGS (local-time) PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-ppcre-template.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-ppcre-template"; 5 - version = "cl-unification-20200925-git"; 6 - 7 - description = "A system used to conditionally load the CL-PPCRE Template. 8 - 9 - This system is not required and it is handled only if CL-PPCRE is 10 - available. If it is, then the library provides the 11 - REGULAR-EXPRESSION-TEMPLATE."; 12 - 13 - deps = [ args."cl-ppcre" args."cl-unification" ]; 14 - 15 - src = fetchurl { 16 - url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 17 - sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 18 - }; 19 - 20 - packageName = "cl-ppcre-template"; 21 - 22 - asdFilesToKeep = ["cl-ppcre-template.asd"]; 23 - overrides = x: x; 24 - } 25 - /* (SYSTEM cl-ppcre-template DESCRIPTION 26 - A system used to conditionally load the CL-PPCRE Template. 27 - 28 - This system is not required and it is handled only if CL-PPCRE is 29 - available. If it is, then the library provides the 30 - REGULAR-EXPRESSION-TEMPLATE. 31 - SHA256 05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais URL 32 - http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz 33 - MD5 90588d566c2e12dac3530b65384a87ab NAME cl-ppcre-template FILENAME 34 - cl-ppcre-template DEPS 35 - ((NAME cl-ppcre FILENAME cl-ppcre) 36 - (NAME cl-unification FILENAME cl-unification)) 37 - DEPENDENCIES (cl-ppcre cl-unification) VERSION cl-unification-20200925-git 38 - SIBLINGS (cl-unification-lib cl-unification-test cl-unification) PARASITES 39 - NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-ppcre-unicode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-ppcre-unicode"; 5 - version = "cl-ppcre-20190521-git"; 6 - 7 - parasites = [ "cl-ppcre-unicode-test" ]; 8 - 9 - description = "Perl-compatible regular expression library (Unicode)"; 10 - 11 - deps = [ args."cl-ppcre" args."cl-ppcre-test" args."cl-unicode" args."flexi-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 15 - sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 16 - }; 17 - 18 - packageName = "cl-ppcre-unicode"; 19 - 20 - asdFilesToKeep = ["cl-ppcre-unicode.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-ppcre-unicode DESCRIPTION 24 - Perl-compatible regular expression library (Unicode) SHA256 25 - 0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx URL 26 - http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz 27 - MD5 a980b75c1b386b49bcb28107991eb4ec NAME cl-ppcre-unicode FILENAME 28 - cl-ppcre-unicode DEPS 29 - ((NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-ppcre-test FILENAME cl-ppcre-test) 31 - (NAME cl-unicode FILENAME cl-unicode) 32 - (NAME flexi-streams FILENAME flexi-streams)) 33 - DEPENDENCIES (cl-ppcre cl-ppcre-test cl-unicode flexi-streams) VERSION 34 - cl-ppcre-20190521-git SIBLINGS (cl-ppcre) PARASITES (cl-ppcre-unicode-test)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-ppcre.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-ppcre"; 5 - version = "20190521-git"; 6 - 7 - parasites = [ "cl-ppcre-test" ]; 8 - 9 - description = "Perl-compatible regular expression library"; 10 - 11 - deps = [ args."flexi-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 15 - sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 16 - }; 17 - 18 - packageName = "cl-ppcre"; 19 - 20 - asdFilesToKeep = ["cl-ppcre.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-ppcre DESCRIPTION Perl-compatible regular expression library 24 - SHA256 0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx URL 25 - http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz 26 - MD5 a980b75c1b386b49bcb28107991eb4ec NAME cl-ppcre FILENAME cl-ppcre DEPS 27 - ((NAME flexi-streams FILENAME flexi-streams)) DEPENDENCIES (flexi-streams) 28 - VERSION 20190521-git SIBLINGS (cl-ppcre-unicode) PARASITES (cl-ppcre-test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-prevalence.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-prevalence"; 5 - version = "20210531-git"; 6 - 7 - description = "Common Lisp Prevalence Package"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."s-sysdeps" args."s-xml" args."split-sequence" args."usocket" args."usocket-server" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-prevalence/2021-05-31/cl-prevalence-20210531-git.tgz"; 13 - sha256 = "1608xbfyr0id1nwf9845yfaqz5jbi60vz6c36h70bnzkm4b55s1w"; 14 - }; 15 - 16 - packageName = "cl-prevalence"; 17 - 18 - asdFilesToKeep = ["cl-prevalence.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-prevalence DESCRIPTION Common Lisp Prevalence Package SHA256 22 - 1608xbfyr0id1nwf9845yfaqz5jbi60vz6c36h70bnzkm4b55s1w URL 23 - http://beta.quicklisp.org/archive/cl-prevalence/2021-05-31/cl-prevalence-20210531-git.tgz 24 - MD5 4d2ced14365fb45ef97621298fd24501 NAME cl-prevalence FILENAME 25 - cl-prevalence DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME s-sysdeps FILENAME s-sysdeps) (NAME s-xml FILENAME s-xml) 29 - (NAME split-sequence FILENAME split-sequence) 30 - (NAME usocket FILENAME usocket) 31 - (NAME usocket-server FILENAME usocket-server)) 32 - DEPENDENCIES 33 - (alexandria bordeaux-threads s-sysdeps s-xml split-sequence usocket 34 - usocket-server) 35 - VERSION 20210531-git SIBLINGS (cl-prevalence-test) PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-project.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-project"; 5 - version = "20200715-git"; 6 - 7 - description = "Generate a skeleton for modern project"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-emb" args."cl-ppcre" args."let-plus" args."local-time" args."prove" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz"; 13 - sha256 = "044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306"; 14 - }; 15 - 16 - packageName = "cl-project"; 17 - 18 - asdFilesToKeep = ["cl-project.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-project DESCRIPTION Generate a skeleton for modern project SHA256 22 - 044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306 URL 23 - http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz 24 - MD5 12b436050ad0106cf292707ae39d8572 NAME cl-project FILENAME cl-project 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 27 - (NAME cl-ansi-text FILENAME cl-ansi-text) 28 - (NAME cl-colors FILENAME cl-colors) (NAME cl-colors2 FILENAME cl-colors2) 29 - (NAME cl-emb FILENAME cl-emb) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME let-plus FILENAME let-plus) (NAME local-time FILENAME local-time) 31 - (NAME prove FILENAME prove) (NAME uiop FILENAME uiop)) 32 - DEPENDENCIES 33 - (alexandria anaphora cl-ansi-text cl-colors cl-colors2 cl-emb cl-ppcre 34 - let-plus local-time prove uiop) 35 - VERSION 20200715-git SIBLINGS (cl-project-test) PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-protobufs.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-protobufs"; 5 - version = "20200325-git"; 6 - 7 - description = "Protobufs for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."asdf" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz"; 13 - sha256 = "1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin"; 14 - }; 15 - 16 - packageName = "cl-protobufs"; 17 - 18 - asdFilesToKeep = ["cl-protobufs.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-protobufs DESCRIPTION Protobufs for Common Lisp SHA256 22 - 1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin URL 23 - http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz 24 - MD5 9fb9af8bd53796b3cf8f358762095899 NAME cl-protobufs FILENAME 25 - cl-protobufs DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf) 27 - (NAME babel FILENAME babel) (NAME closer-mop FILENAME closer-mop) 28 - (NAME trivial-features FILENAME trivial-features) 29 - (NAME trivial-garbage FILENAME trivial-garbage)) 30 - DEPENDENCIES 31 - (alexandria asdf babel closer-mop trivial-features trivial-garbage) VERSION 32 - 20200325-git SIBLINGS (cl-protobufs-tests) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-qprint.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-qprint"; 5 - version = "20150804-git"; 6 - 7 - description = "Encode and decode quoted-printable encoded strings."; 8 - 9 - deps = [ args."flexi-streams" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz"; 13 - sha256 = "042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28"; 14 - }; 15 - 16 - packageName = "cl-qprint"; 17 - 18 - asdFilesToKeep = ["cl-qprint.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-qprint DESCRIPTION 22 - Encode and decode quoted-printable encoded strings. SHA256 23 - 042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28 URL 24 - http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz 25 - MD5 74376a69e0b078724c94cc268f69e0f7 NAME cl-qprint FILENAME cl-qprint DEPS 26 - ((NAME flexi-streams FILENAME flexi-streams) 27 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 28 - DEPENDENCIES (flexi-streams trivial-gray-streams) VERSION 20150804-git 29 - SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-qrencode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-qrencode"; 5 - version = "20191007-git"; 6 - 7 - description = "QR code 2005 encoder in Common Lisp"; 8 - 9 - deps = [ args."salza2" args."trivial-gray-streams" args."zpng" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-qrencode/2019-10-07/cl-qrencode-20191007-git.tgz"; 13 - sha256 = "0jc4bmw498bxkw5imvsj4p49njyybsjhbbvnmykivc38k5nlypz4"; 14 - }; 15 - 16 - packageName = "cl-qrencode"; 17 - 18 - asdFilesToKeep = ["cl-qrencode.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-qrencode DESCRIPTION QR code 2005 encoder in Common Lisp SHA256 22 - 0jc4bmw498bxkw5imvsj4p49njyybsjhbbvnmykivc38k5nlypz4 URL 23 - http://beta.quicklisp.org/archive/cl-qrencode/2019-10-07/cl-qrencode-20191007-git.tgz 24 - MD5 e94ac1137949ef70dea11ca78431e956 NAME cl-qrencode FILENAME cl-qrencode 25 - DEPS 26 - ((NAME salza2 FILENAME salza2) 27 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 28 - (NAME zpng FILENAME zpng)) 29 - DEPENDENCIES (salza2 trivial-gray-streams zpng) VERSION 20191007-git 30 - SIBLINGS (cl-qrencode-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-reexport.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-reexport"; 5 - version = "20210228-git"; 6 - 7 - description = "Reexport external symbols in other packages."; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-reexport/2021-02-28/cl-reexport-20210228-git.tgz"; 13 - sha256 = "1ay0ng5nnbq200g4wxs0h7byx24za4yk208nhfsmksahk5qj1qra"; 14 - }; 15 - 16 - packageName = "cl-reexport"; 17 - 18 - asdFilesToKeep = ["cl-reexport.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-reexport DESCRIPTION Reexport external symbols in other packages. 22 - SHA256 1ay0ng5nnbq200g4wxs0h7byx24za4yk208nhfsmksahk5qj1qra URL 23 - http://beta.quicklisp.org/archive/cl-reexport/2021-02-28/cl-reexport-20210228-git.tgz 24 - MD5 e083a9c49fe39d65f1ff7743eebe37c2 NAME cl-reexport FILENAME cl-reexport 25 - DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) 26 - VERSION 20210228-git SIBLINGS (cl-reexport-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-semver.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-semver"; 5 - version = "20201220-git"; 6 - 7 - description = "Semantic Version implementation"; 8 - 9 - deps = [ args."alexandria" args."esrap" args."named-readtables" args."trivial-with-current-source-form" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-semver/2020-12-20/cl-semver-20201220-git.tgz"; 13 - sha256 = "02m23kwsz49dh7jq2rgcd1c4asgjj1g7dy321hyr07k5hqmhk92y"; 14 - }; 15 - 16 - packageName = "cl-semver"; 17 - 18 - asdFilesToKeep = ["cl-semver.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-semver DESCRIPTION Semantic Version implementation SHA256 22 - 02m23kwsz49dh7jq2rgcd1c4asgjj1g7dy321hyr07k5hqmhk92y URL 23 - http://beta.quicklisp.org/archive/cl-semver/2020-12-20/cl-semver-20201220-git.tgz 24 - MD5 7fcc6938d4618687bf1e18ba40d6ac6e NAME cl-semver FILENAME cl-semver DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME esrap FILENAME esrap) 26 - (NAME named-readtables FILENAME named-readtables) 27 - (NAME trivial-with-current-source-form FILENAME 28 - trivial-with-current-source-form)) 29 - DEPENDENCIES 30 - (alexandria esrap named-readtables trivial-with-current-source-form) 31 - VERSION 20201220-git SIBLINGS (cl-semver-test) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-shellwords.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-shellwords"; 5 - version = "20150923-git"; 6 - 7 - description = "Common Lisp port of Ruby's shellwords.rb, for escaping and 8 - splitting strings to be passed to a shell."; 9 - 10 - deps = [ args."cl-ppcre" ]; 11 - 12 - src = fetchurl { 13 - url = "http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz"; 14 - sha256 = "1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk"; 15 - }; 16 - 17 - packageName = "cl-shellwords"; 18 - 19 - asdFilesToKeep = ["cl-shellwords.asd"]; 20 - overrides = x: x; 21 - } 22 - /* (SYSTEM cl-shellwords DESCRIPTION 23 - Common Lisp port of Ruby's shellwords.rb, for escaping and 24 - splitting strings to be passed to a shell. 25 - SHA256 1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk URL 26 - http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz 27 - MD5 c2c62c6a2ce4ed2590d60707ead2e084 NAME cl-shellwords FILENAME 28 - cl-shellwords DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES 29 - (cl-ppcre) VERSION 20150923-git SIBLINGS (cl-shellwords-test) PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-slice.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-slice"; 5 - version = "20210531-git"; 6 - 7 - parasites = [ "cl-slice-tests" ]; 8 - 9 - description = "DSL for array slices in Common Lisp."; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."clunit" args."let-plus" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-slice/2021-05-31/cl-slice-20210531-git.tgz"; 15 - sha256 = "1jkm8yrnc0x2nx4bwwk56xda1r5h2aw0q4yfbv8lywaiwj92v7hk"; 16 - }; 17 - 18 - packageName = "cl-slice"; 19 - 20 - asdFilesToKeep = ["cl-slice.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-slice DESCRIPTION DSL for array slices in Common Lisp. SHA256 24 - 1jkm8yrnc0x2nx4bwwk56xda1r5h2aw0q4yfbv8lywaiwj92v7hk URL 25 - http://beta.quicklisp.org/archive/cl-slice/2021-05-31/cl-slice-20210531-git.tgz 26 - MD5 d7be90ed28b5c316b1f31b4f567bd725 NAME cl-slice FILENAME cl-slice DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME clunit FILENAME clunit) (NAME let-plus FILENAME let-plus)) 29 - DEPENDENCIES (alexandria anaphora clunit let-plus) VERSION 20210531-git 30 - SIBLINGS NIL PARASITES (cl-slice-tests)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-smt-lib.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-smt-lib"; 5 - version = "20211020-git"; 6 - 7 - description = "SMT object supporting SMT-LIB communication over input and output streams"; 8 - 9 - deps = [ args."asdf-package-system" args."named-readtables" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-smt-lib/2021-10-20/cl-smt-lib-20211020-git.tgz"; 13 - sha256 = "1x2d79xcc0c56cb02axly6c10y6dmvxcpr3f16qry02rpfqys3qm"; 14 - }; 15 - 16 - packageName = "cl-smt-lib"; 17 - 18 - asdFilesToKeep = ["cl-smt-lib.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-smt-lib DESCRIPTION 22 - SMT object supporting SMT-LIB communication over input and output streams 23 - SHA256 1x2d79xcc0c56cb02axly6c10y6dmvxcpr3f16qry02rpfqys3qm URL 24 - http://beta.quicklisp.org/archive/cl-smt-lib/2021-10-20/cl-smt-lib-20211020-git.tgz 25 - MD5 f22b48a87b78fb5b38b35d780d34cd77 NAME cl-smt-lib FILENAME cl-smt-lib 26 - DEPS 27 - ((NAME asdf-package-system FILENAME asdf-package-system) 28 - (NAME named-readtables FILENAME named-readtables) 29 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 30 - DEPENDENCIES (asdf-package-system named-readtables trivial-gray-streams) 31 - VERSION 20211020-git SIBLINGS NIL PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-smtp.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-smtp"; 5 - version = "20210228-git"; 6 - 7 - description = "Common Lisp smtp client."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl_plus_ssl" args."cl-base64" args."flexi-streams" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz"; 13 - sha256 = "1x965jyhifx8hss2v6qc6lr54nlckchs712dny376krwkl43jh5g"; 14 - }; 15 - 16 - packageName = "cl-smtp"; 17 - 18 - asdFilesToKeep = ["cl-smtp.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-smtp DESCRIPTION Common Lisp smtp client. SHA256 22 - 1x965jyhifx8hss2v6qc6lr54nlckchs712dny376krwkl43jh5g URL 23 - http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz 24 - MD5 e2f9137807f80514e0433bf2e8522ee5 NAME cl-smtp FILENAME cl-smtp DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cl+ssl FILENAME cl_plus_ssl) 28 - (NAME cl-base64 FILENAME cl-base64) 29 - (NAME flexi-streams FILENAME flexi-streams) 30 - (NAME split-sequence FILENAME split-sequence) 31 - (NAME trivial-features FILENAME trivial-features) 32 - (NAME trivial-garbage FILENAME trivial-garbage) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 34 - (NAME usocket FILENAME usocket)) 35 - DEPENDENCIES 36 - (alexandria babel bordeaux-threads cffi cl+ssl cl-base64 flexi-streams 37 - split-sequence trivial-features trivial-garbage trivial-gray-streams 38 - usocket) 39 - VERSION 20210228-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-speedy-queue.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-speedy-queue"; 5 - version = "20150302-git"; 6 - 7 - description = "cl-speedy-queue is a portable, non-consing, optimized queue implementation."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-speedy-queue/2015-03-02/cl-speedy-queue-20150302-git.tgz"; 13 - sha256 = "1w83vckk0ldr61vpkwg4i8l2b2yx54cs4ak62j4lxhshax105rqr"; 14 - }; 15 - 16 - packageName = "cl-speedy-queue"; 17 - 18 - asdFilesToKeep = ["cl-speedy-queue.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-speedy-queue DESCRIPTION 22 - cl-speedy-queue is a portable, non-consing, optimized queue implementation. 23 - SHA256 1w83vckk0ldr61vpkwg4i8l2b2yx54cs4ak62j4lxhshax105rqr URL 24 - http://beta.quicklisp.org/archive/cl-speedy-queue/2015-03-02/cl-speedy-queue-20150302-git.tgz 25 - MD5 509d1acf7e4cfcef99127de75b16521f NAME cl-speedy-queue FILENAME 26 - cl-speedy-queue DEPS NIL DEPENDENCIES NIL VERSION 20150302-git SIBLINGS NIL 27 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-store.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-store"; 5 - version = "20200925-git"; 6 - 7 - parasites = [ "cl-store-tests" ]; 8 - 9 - description = "Serialization package"; 10 - 11 - deps = [ args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz"; 15 - sha256 = "0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3"; 16 - }; 17 - 18 - packageName = "cl-store"; 19 - 20 - asdFilesToKeep = ["cl-store.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-store DESCRIPTION Serialization package SHA256 24 - 0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3 URL 25 - http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz 26 - MD5 828a6f3035c5ef869618f6848c47efd7 NAME cl-store FILENAME cl-store DEPS 27 - ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20200925-git SIBLINGS NIL 28 - PARASITES (cl-store-tests)) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-svg.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-svg"; 5 - version = "20180228-git"; 6 - 7 - description = "Produce Scalable Vector Graphics (SVG) files"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz"; 13 - sha256 = "1ir299yg7210y1hwqs0di3gznj8ahsw16kf1n4yhfq78jswkrx48"; 14 - }; 15 - 16 - packageName = "cl-svg"; 17 - 18 - asdFilesToKeep = ["cl-svg.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-svg DESCRIPTION Produce Scalable Vector Graphics (SVG) files 22 - SHA256 1ir299yg7210y1hwqs0di3gznj8ahsw16kf1n4yhfq78jswkrx48 URL 23 - http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz 24 - MD5 672145ecadef2259a3833886dbe68617 NAME cl-svg FILENAME cl-svg DEPS NIL 25 - DEPENDENCIES NIL VERSION 20180228-git SIBLINGS NIL PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-syntax-annot.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-syntax-annot"; 5 - version = "cl-syntax-20150407-git"; 6 - 7 - description = "CL-Syntax Reader Syntax for cl-annot"; 8 - 9 - deps = [ args."alexandria" args."cl-annot" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 - sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 14 - }; 15 - 16 - packageName = "cl-syntax-annot"; 17 - 18 - asdFilesToKeep = ["cl-syntax-annot.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-syntax-annot DESCRIPTION CL-Syntax Reader Syntax for cl-annot 22 - SHA256 1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n URL 23 - http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz 24 - MD5 602b84143aafe59d65f4e08ac20a124a NAME cl-syntax-annot FILENAME 25 - cl-syntax-annot DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME cl-annot FILENAME cl-annot) 27 - (NAME cl-syntax FILENAME cl-syntax) 28 - (NAME named-readtables FILENAME named-readtables) 29 - (NAME trivial-types FILENAME trivial-types)) 30 - DEPENDENCIES (alexandria cl-annot cl-syntax named-readtables trivial-types) 31 - VERSION cl-syntax-20150407-git SIBLINGS 32 - (cl-syntax-anonfun cl-syntax-clsql cl-syntax-fare-quasiquote 33 - cl-syntax-interpol cl-syntax-markup cl-syntax) 34 - PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-syntax-anonfun.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-syntax-anonfun"; 5 - version = "cl-syntax-20150407-git"; 6 - 7 - description = "CL-Syntax Reader Syntax for cl-anonfun"; 8 - 9 - deps = [ args."cl-anonfun" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 - sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 14 - }; 15 - 16 - packageName = "cl-syntax-anonfun"; 17 - 18 - asdFilesToKeep = ["cl-syntax-anonfun.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-syntax-anonfun DESCRIPTION CL-Syntax Reader Syntax for cl-anonfun 22 - SHA256 1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n URL 23 - http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz 24 - MD5 602b84143aafe59d65f4e08ac20a124a NAME cl-syntax-anonfun FILENAME 25 - cl-syntax-anonfun DEPS 26 - ((NAME cl-anonfun FILENAME cl-anonfun) (NAME cl-syntax FILENAME cl-syntax) 27 - (NAME named-readtables FILENAME named-readtables) 28 - (NAME trivial-types FILENAME trivial-types)) 29 - DEPENDENCIES (cl-anonfun cl-syntax named-readtables trivial-types) VERSION 30 - cl-syntax-20150407-git SIBLINGS 31 - (cl-syntax-annot cl-syntax-clsql cl-syntax-fare-quasiquote 32 - cl-syntax-interpol cl-syntax-markup cl-syntax) 33 - PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-syntax-markup.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-syntax-markup"; 5 - version = "cl-syntax-20150407-git"; 6 - 7 - description = "CL-Syntax Reader Syntax for CL-Markup"; 8 - 9 - deps = [ args."cl-markup" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 - sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 14 - }; 15 - 16 - packageName = "cl-syntax-markup"; 17 - 18 - asdFilesToKeep = ["cl-syntax-markup.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-syntax-markup DESCRIPTION CL-Syntax Reader Syntax for CL-Markup 22 - SHA256 1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n URL 23 - http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz 24 - MD5 602b84143aafe59d65f4e08ac20a124a NAME cl-syntax-markup FILENAME 25 - cl-syntax-markup DEPS 26 - ((NAME cl-markup FILENAME cl-markup) (NAME cl-syntax FILENAME cl-syntax) 27 - (NAME named-readtables FILENAME named-readtables) 28 - (NAME trivial-types FILENAME trivial-types)) 29 - DEPENDENCIES (cl-markup cl-syntax named-readtables trivial-types) VERSION 30 - cl-syntax-20150407-git SIBLINGS 31 - (cl-syntax-annot cl-syntax-anonfun cl-syntax-clsql 32 - cl-syntax-fare-quasiquote cl-syntax-interpol cl-syntax) 33 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-syntax.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-syntax"; 5 - version = "20150407-git"; 6 - 7 - description = "Reader Syntax Coventions for Common Lisp and SLIME"; 8 - 9 - deps = [ args."named-readtables" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 - sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 14 - }; 15 - 16 - packageName = "cl-syntax"; 17 - 18 - asdFilesToKeep = ["cl-syntax.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-syntax DESCRIPTION 22 - Reader Syntax Coventions for Common Lisp and SLIME SHA256 23 - 1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n URL 24 - http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz 25 - MD5 602b84143aafe59d65f4e08ac20a124a NAME cl-syntax FILENAME cl-syntax DEPS 26 - ((NAME named-readtables FILENAME named-readtables) 27 - (NAME trivial-types FILENAME trivial-types)) 28 - DEPENDENCIES (named-readtables trivial-types) VERSION 20150407-git SIBLINGS 29 - (cl-syntax-annot cl-syntax-anonfun cl-syntax-clsql 30 - cl-syntax-fare-quasiquote cl-syntax-interpol cl-syntax-markup) 31 - PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-syslog.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-syslog"; 5 - version = "20190202-git"; 6 - 7 - description = "Common Lisp syslog interface."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."global-vars" args."local-time" args."split-sequence" args."trivial-features" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-syslog/2019-02-02/cl-syslog-20190202-git.tgz"; 13 - sha256 = "1kzz613y9fvx33svlwc65vjaj1cafnxz8icds80ww7il7y6alwgh"; 14 - }; 15 - 16 - packageName = "cl-syslog"; 17 - 18 - asdFilesToKeep = ["cl-syslog.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-syslog DESCRIPTION Common Lisp syslog interface. SHA256 22 - 1kzz613y9fvx33svlwc65vjaj1cafnxz8icds80ww7il7y6alwgh URL 23 - http://beta.quicklisp.org/archive/cl-syslog/2019-02-02/cl-syslog-20190202-git.tgz 24 - MD5 eafff19eb1f38a36a9535c729d2217fe NAME cl-syslog FILENAME cl-syslog DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) (NAME global-vars FILENAME global-vars) 27 - (NAME local-time FILENAME local-time) 28 - (NAME split-sequence FILENAME split-sequence) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME usocket FILENAME usocket)) 31 - DEPENDENCIES 32 - (alexandria babel cffi global-vars local-time split-sequence 33 - trivial-features usocket) 34 - VERSION 20190202-git SIBLINGS NIL PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-test-more.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-test-more"; 5 - version = "prove-20200218-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."prove" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 - sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 14 - }; 15 - 16 - packageName = "cl-test-more"; 17 - 18 - asdFilesToKeep = ["cl-test-more.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-test-more DESCRIPTION System lacks description SHA256 22 - 1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn URL 23 - http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz 24 - MD5 85780b65e84c17a78d658364b8c4d11b NAME cl-test-more FILENAME 25 - cl-test-more DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 27 - (NAME cl-ansi-text FILENAME cl-ansi-text) 28 - (NAME cl-colors FILENAME cl-colors) (NAME cl-colors2 FILENAME cl-colors2) 29 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME let-plus FILENAME let-plus) 30 - (NAME prove FILENAME prove)) 31 - DEPENDENCIES 32 - (alexandria anaphora cl-ansi-text cl-colors cl-colors2 cl-ppcre let-plus 33 - prove) 34 - VERSION prove-20200218-git SIBLINGS (prove-asdf prove-test prove) PARASITES 35 - NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-typesetting.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-typesetting"; 5 - version = "20210531-git"; 6 - 7 - description = "Common Lisp Typesetting system"; 8 - 9 - deps = [ args."cl-pdf" args."iterate" args."zpb-ttf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-typesetting/2021-05-31/cl-typesetting-20210531-git.tgz"; 13 - sha256 = "1gv21dsfghf8y2d7f5w5m8fn0q5l7xb8z7qw11wnnnd7msk11dd5"; 14 - }; 15 - 16 - packageName = "cl-typesetting"; 17 - 18 - asdFilesToKeep = ["cl-typesetting.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-typesetting DESCRIPTION Common Lisp Typesetting system SHA256 22 - 1gv21dsfghf8y2d7f5w5m8fn0q5l7xb8z7qw11wnnnd7msk11dd5 URL 23 - http://beta.quicklisp.org/archive/cl-typesetting/2021-05-31/cl-typesetting-20210531-git.tgz 24 - MD5 849e6fb2c4a33f823c005e4e9abb31b5 NAME cl-typesetting FILENAME 25 - cl-typesetting DEPS 26 - ((NAME cl-pdf FILENAME cl-pdf) (NAME iterate FILENAME iterate) 27 - (NAME zpb-ttf FILENAME zpb-ttf)) 28 - DEPENDENCIES (cl-pdf iterate zpb-ttf) VERSION 20210531-git SIBLINGS 29 - (xml-render cl-pdf-doc) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-unicode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-unicode"; 5 - version = "20210228-git"; 6 - 7 - parasites = [ "cl-unicode/base" "cl-unicode/build" "cl-unicode/test" ]; 8 - 9 - description = "Portable Unicode Library"; 10 - 11 - deps = [ args."cl-ppcre" args."flexi-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz"; 15 - sha256 = "0phy5wppb7m78dixrf2vjq8vas4drfd4qg38al6q8ymkl0yfy5js"; 16 - }; 17 - 18 - packageName = "cl-unicode"; 19 - 20 - asdFilesToKeep = ["cl-unicode.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-unicode DESCRIPTION Portable Unicode Library SHA256 24 - 0phy5wppb7m78dixrf2vjq8vas4drfd4qg38al6q8ymkl0yfy5js URL 25 - http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz 26 - MD5 5b3bdddde3be5b8427e3fac92495a10b NAME cl-unicode FILENAME cl-unicode 27 - DEPS 28 - ((NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME flexi-streams FILENAME flexi-streams)) 30 - DEPENDENCIES (cl-ppcre flexi-streams) VERSION 20210228-git SIBLINGS NIL 31 - PARASITES (cl-unicode/base cl-unicode/build cl-unicode/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-unification.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-unification"; 5 - version = "20200925-git"; 6 - 7 - description = "The CL-UNIFICATION system. 8 - 9 - The system contains the definitions for the 'unification' machinery."; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 15 - sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 16 - }; 17 - 18 - packageName = "cl-unification"; 19 - 20 - asdFilesToKeep = ["cl-unification.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-unification DESCRIPTION The CL-UNIFICATION system. 24 - 25 - The system contains the definitions for the 'unification' machinery. 26 - SHA256 05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais URL 27 - http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz 28 - MD5 90588d566c2e12dac3530b65384a87ab NAME cl-unification FILENAME 29 - cl-unification DEPS NIL DEPENDENCIES NIL VERSION 20200925-git SIBLINGS 30 - (cl-unification-lib cl-unification-test cl-ppcre-template) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-utilities.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-utilities"; 5 - version = "1.2.4"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz"; 13 - sha256 = "1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87"; 14 - }; 15 - 16 - packageName = "cl-utilities"; 17 - 18 - asdFilesToKeep = ["cl-utilities.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-utilities DESCRIPTION System lacks description SHA256 22 - 1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87 URL 23 - http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz 24 - MD5 c3a4ba38b627448d3ed40ce888048940 NAME cl-utilities FILENAME 25 - cl-utilities DEPS NIL DEPENDENCIES NIL VERSION 1.2.4 SIBLINGS NIL PARASITES 26 - NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-vectors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-vectors"; 5 - version = "20180228-git"; 6 - 7 - description = "cl-paths: vectorial paths manipulation"; 8 - 9 - deps = [ args."cl-aa" args."cl-paths" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 - sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 14 - }; 15 - 16 - packageName = "cl-vectors"; 17 - 18 - asdFilesToKeep = ["cl-vectors.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-vectors DESCRIPTION cl-paths: vectorial paths manipulation SHA256 22 - 0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly URL 23 - http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz 24 - MD5 9d9629786d4f2c19c15cc6cd3049c343 NAME cl-vectors FILENAME cl-vectors 25 - DEPS ((NAME cl-aa FILENAME cl-aa) (NAME cl-paths FILENAME cl-paths)) 26 - DEPENDENCIES (cl-aa cl-paths) VERSION 20180228-git SIBLINGS 27 - (cl-aa-misc cl-aa cl-paths-ttf cl-paths) PARASITES NIL) */
-44
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-webkit2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-webkit2"; 5 - version = "cl-webkit-20211209-git"; 6 - 7 - description = "An FFI binding to WebKit2GTK+"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-webkit/2021-12-09/cl-webkit-20211209-git.tgz"; 13 - sha256 = "1lpzp9rb011zbl8j2jpqhal38slyqq1p6cxxjk51h6mdq7x7z1a0"; 14 - }; 15 - 16 - packageName = "cl-webkit2"; 17 - 18 - asdFilesToKeep = ["cl-webkit2.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-webkit2 DESCRIPTION An FFI binding to WebKit2GTK+ SHA256 22 - 1lpzp9rb011zbl8j2jpqhal38slyqq1p6cxxjk51h6mdq7x7z1a0 URL 23 - http://beta.quicklisp.org/archive/cl-webkit/2021-12-09/cl-webkit-20211209-git.tgz 24 - MD5 cf710088281b691a91aa29566f50f83a NAME cl-webkit2 FILENAME cl-webkit2 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME cl-cffi-gtk FILENAME cl-cffi-gtk) 29 - (NAME cl-cffi-gtk-cairo FILENAME cl-cffi-gtk-cairo) 30 - (NAME cl-cffi-gtk-gdk FILENAME cl-cffi-gtk-gdk) 31 - (NAME cl-cffi-gtk-gdk-pixbuf FILENAME cl-cffi-gtk-gdk-pixbuf) 32 - (NAME cl-cffi-gtk-gio FILENAME cl-cffi-gtk-gio) 33 - (NAME cl-cffi-gtk-glib FILENAME cl-cffi-gtk-glib) 34 - (NAME cl-cffi-gtk-gobject FILENAME cl-cffi-gtk-gobject) 35 - (NAME cl-cffi-gtk-pango FILENAME cl-cffi-gtk-pango) 36 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-garbage FILENAME trivial-garbage)) 39 - DEPENDENCIES 40 - (alexandria babel bordeaux-threads cffi cl-cffi-gtk cl-cffi-gtk-cairo 41 - cl-cffi-gtk-gdk cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gio cl-cffi-gtk-glib 42 - cl-cffi-gtk-gobject cl-cffi-gtk-pango closer-mop iterate trivial-features 43 - trivial-garbage) 44 - VERSION cl-webkit-20211209-git SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-who.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-who"; 5 - version = "20190710-git"; 6 - 7 - parasites = [ "cl-who-test" ]; 8 - 9 - description = "(X)HTML generation macros"; 10 - 11 - deps = [ args."flexi-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz"; 15 - sha256 = "0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir"; 16 - }; 17 - 18 - packageName = "cl-who"; 19 - 20 - asdFilesToKeep = ["cl-who.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl-who DESCRIPTION (X)HTML generation macros SHA256 24 - 0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir URL 25 - http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz 26 - MD5 e5bb2856ed62d76528e4cef7b5e701c0 NAME cl-who FILENAME cl-who DEPS 27 - ((NAME flexi-streams FILENAME flexi-streams)) DEPENDENCIES (flexi-streams) 28 - VERSION 20190710-git SIBLINGS NIL PARASITES (cl-who-test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl-xmlspam.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl-xmlspam"; 5 - version = "20101006-http"; 6 - 7 - description = "Streaming pattern matching for XML"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz"; 13 - sha256 = "1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h"; 14 - }; 15 - 16 - packageName = "cl-xmlspam"; 17 - 18 - asdFilesToKeep = ["cl-xmlspam.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM cl-xmlspam DESCRIPTION Streaming pattern matching for XML SHA256 22 - 1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h URL 23 - http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz 24 - MD5 6e3a0944e96e17916b1445f4207babb8 NAME cl-xmlspam FILENAME cl-xmlspam 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cl-ppcre FILENAME cl-ppcre) 28 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 29 - (NAME puri FILENAME puri) 30 - (NAME trivial-features FILENAME trivial-features) 31 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 32 - DEPENDENCIES 33 - (alexandria babel cl-ppcre closure-common cxml puri trivial-features 34 - trivial-gray-streams) 35 - VERSION 20101006-http SIBLINGS NIL PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cl_plus_ssl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cl_plus_ssl"; 5 - version = "cl+ssl-20211209-git"; 6 - 7 - parasites = [ "cl+ssl/config" ]; 8 - 9 - description = "Common Lisp interface to OpenSSL."; 10 - 11 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."flexi-streams" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."uiop" args."usocket" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl+ssl/2021-12-09/cl+ssl-20211209-git.tgz"; 15 - sha256 = "1m1dx4jfqpd2jdica7safq3fig31xyn96a0yslvszbhkyn22r0nb"; 16 - }; 17 - 18 - packageName = "cl+ssl"; 19 - 20 - asdFilesToKeep = ["cl+ssl.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cl+ssl DESCRIPTION Common Lisp interface to OpenSSL. SHA256 24 - 1m1dx4jfqpd2jdica7safq3fig31xyn96a0yslvszbhkyn22r0nb URL 25 - http://beta.quicklisp.org/archive/cl+ssl/2021-12-09/cl+ssl-20211209-git.tgz 26 - MD5 900134876fea38710e6535420ec60864 NAME cl+ssl FILENAME cl_plus_ssl DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME flexi-streams FILENAME flexi-streams) 30 - (NAME split-sequence FILENAME split-sequence) 31 - (NAME trivial-features FILENAME trivial-features) 32 - (NAME trivial-garbage FILENAME trivial-garbage) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 34 - (NAME uiop FILENAME uiop) (NAME usocket FILENAME usocket)) 35 - DEPENDENCIES 36 - (alexandria babel bordeaux-threads cffi flexi-streams split-sequence 37 - trivial-features trivial-garbage trivial-gray-streams uiop usocket) 38 - VERSION cl+ssl-20211209-git SIBLINGS (cl+ssl.test) PARASITES 39 - (cl+ssl/config)) */
-55
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clack-handler-hunchentoot.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clack-handler-hunchentoot"; 5 - version = "clack-20210411-git"; 6 - 7 - description = "Clack handler for Hunchentoot."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."clack-socket" args."flexi-streams" args."hunchentoot" args."md5" args."rfc2388" args."split-sequence" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz"; 13 - sha256 = "0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf"; 14 - }; 15 - 16 - packageName = "clack-handler-hunchentoot"; 17 - 18 - asdFilesToKeep = ["clack-handler-hunchentoot.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clack-handler-hunchentoot DESCRIPTION Clack handler for Hunchentoot. 22 - SHA256 0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf URL 23 - http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz 24 - MD5 c47deb6287b72fc9033055914787f3a5 NAME clack-handler-hunchentoot 25 - FILENAME clack-handler-hunchentoot DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME chunga FILENAME chunga) 29 - (NAME cl+ssl FILENAME cl_plus_ssl) (NAME cl-base64 FILENAME cl-base64) 30 - (NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME clack-socket FILENAME clack-socket) 32 - (NAME flexi-streams FILENAME flexi-streams) 33 - (NAME hunchentoot FILENAME hunchentoot) (NAME md5 FILENAME md5) 34 - (NAME rfc2388 FILENAME rfc2388) 35 - (NAME split-sequence FILENAME split-sequence) 36 - (NAME trivial-backtrace FILENAME trivial-backtrace) 37 - (NAME trivial-features FILENAME trivial-features) 38 - (NAME trivial-garbage FILENAME trivial-garbage) 39 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 40 - (NAME usocket FILENAME usocket)) 41 - DEPENDENCIES 42 - (alexandria babel bordeaux-threads cffi chunga cl+ssl cl-base64 cl-fad 43 - cl-ppcre clack-socket flexi-streams hunchentoot md5 rfc2388 split-sequence 44 - trivial-backtrace trivial-features trivial-garbage trivial-gray-streams 45 - usocket) 46 - VERSION clack-20210411-git SIBLINGS 47 - (clack-handler-fcgi clack-handler-toot clack-handler-wookie clack-socket 48 - clack-test clack-v1-compat clack t-clack-handler-fcgi 49 - t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie 50 - t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql 51 - clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth 52 - clack-middleware-postmodern clack-middleware-rucksack 53 - clack-session-store-dbi t-clack-middleware-auth-basic 54 - t-clack-middleware-csrf) 55 - PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clack-socket.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clack-socket"; 5 - version = "clack-20211209-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clack/2021-12-09/clack-20211209-git.tgz"; 13 - sha256 = "1gp323083ds89cw3vd6w40d4cwx04y0qaqdz4wx2332klhvvdnsd"; 14 - }; 15 - 16 - packageName = "clack-socket"; 17 - 18 - asdFilesToKeep = ["clack-socket.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clack-socket DESCRIPTION System lacks description SHA256 22 - 1gp323083ds89cw3vd6w40d4cwx04y0qaqdz4wx2332klhvvdnsd URL 23 - http://beta.quicklisp.org/archive/clack/2021-12-09/clack-20211209-git.tgz 24 - MD5 c223a854a79b257e0489e185abe48e16 NAME clack-socket FILENAME 25 - clack-socket DEPS NIL DEPENDENCIES NIL VERSION clack-20211209-git SIBLINGS 26 - (clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot 27 - clack-handler-wookie clack-test clack t-clack-handler-fcgi 28 - t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie) 29 - PARASITES NIL) */
-80
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clack-test.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clack-test"; 5 - version = "clack-20210411-git"; 6 - 7 - description = "Testing Clack Applications."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-annot" args."cl-base64" args."cl-cookie" args."cl-fad" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."dexador" args."dissect" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."local-time" args."md5" args."named-readtables" args."proc-parse" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."usocket" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz"; 13 - sha256 = "0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf"; 14 - }; 15 - 16 - packageName = "clack-test"; 17 - 18 - asdFilesToKeep = ["clack-test.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clack-test DESCRIPTION Testing Clack Applications. SHA256 22 - 0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf URL 23 - http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz 24 - MD5 c47deb6287b72fc9033055914787f3a5 NAME clack-test FILENAME clack-test 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) (NAME chipz FILENAME chipz) 30 - (NAME chunga FILENAME chunga) (NAME cl+ssl FILENAME cl_plus_ssl) 31 - (NAME cl-annot FILENAME cl-annot) (NAME cl-base64 FILENAME cl-base64) 32 - (NAME cl-cookie FILENAME cl-cookie) (NAME cl-fad FILENAME cl-fad) 33 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-reexport FILENAME cl-reexport) 34 - (NAME cl-syntax FILENAME cl-syntax) 35 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 36 - (NAME cl-utilities FILENAME cl-utilities) (NAME clack FILENAME clack) 37 - (NAME clack-handler-hunchentoot FILENAME clack-handler-hunchentoot) 38 - (NAME clack-socket FILENAME clack-socket) (NAME dexador FILENAME dexador) 39 - (NAME dissect FILENAME dissect) (NAME fast-http FILENAME fast-http) 40 - (NAME fast-io FILENAME fast-io) 41 - (NAME flexi-streams FILENAME flexi-streams) 42 - (NAME http-body FILENAME http-body) 43 - (NAME hunchentoot FILENAME hunchentoot) (NAME ironclad FILENAME ironclad) 44 - (NAME jonathan FILENAME jonathan) (NAME lack FILENAME lack) 45 - (NAME lack-component FILENAME lack-component) 46 - (NAME lack-middleware-backtrace FILENAME lack-middleware-backtrace) 47 - (NAME lack-util FILENAME lack-util) (NAME local-time FILENAME local-time) 48 - (NAME md5 FILENAME md5) (NAME named-readtables FILENAME named-readtables) 49 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 50 - (NAME rfc2388 FILENAME rfc2388) (NAME rove FILENAME rove) 51 - (NAME smart-buffer FILENAME smart-buffer) 52 - (NAME split-sequence FILENAME split-sequence) 53 - (NAME static-vectors FILENAME static-vectors) 54 - (NAME trivial-backtrace FILENAME trivial-backtrace) 55 - (NAME trivial-features FILENAME trivial-features) 56 - (NAME trivial-garbage FILENAME trivial-garbage) 57 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 58 - (NAME trivial-mimes FILENAME trivial-mimes) 59 - (NAME trivial-types FILENAME trivial-types) 60 - (NAME usocket FILENAME usocket) (NAME xsubseq FILENAME xsubseq)) 61 - DEPENDENCIES 62 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain chipz 63 - chunga cl+ssl cl-annot cl-base64 cl-cookie cl-fad cl-ppcre cl-reexport 64 - cl-syntax cl-syntax-annot cl-utilities clack clack-handler-hunchentoot 65 - clack-socket dexador dissect fast-http fast-io flexi-streams http-body 66 - hunchentoot ironclad jonathan lack lack-component 67 - lack-middleware-backtrace lack-util local-time md5 named-readtables 68 - proc-parse quri rfc2388 rove smart-buffer split-sequence static-vectors 69 - trivial-backtrace trivial-features trivial-garbage trivial-gray-streams 70 - trivial-mimes trivial-types usocket xsubseq) 71 - VERSION clack-20210411-git SIBLINGS 72 - (clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot 73 - clack-handler-wookie clack-socket clack-v1-compat clack 74 - t-clack-handler-fcgi t-clack-handler-hunchentoot t-clack-handler-toot 75 - t-clack-handler-wookie t-clack-v1-compat clack-middleware-auth-basic 76 - clack-middleware-clsql clack-middleware-csrf clack-middleware-dbi 77 - clack-middleware-oauth clack-middleware-postmodern 78 - clack-middleware-rucksack clack-session-store-dbi 79 - t-clack-middleware-auth-basic t-clack-middleware-csrf) 80 - PARASITES NIL) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clack.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clack"; 5 - version = "20211209-git"; 6 - 7 - description = "Web application environment for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."split-sequence" args."uiop" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clack/2021-12-09/clack-20211209-git.tgz"; 13 - sha256 = "1gp323083ds89cw3vd6w40d4cwx04y0qaqdz4wx2332klhvvdnsd"; 14 - }; 15 - 16 - packageName = "clack"; 17 - 18 - asdFilesToKeep = ["clack.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clack DESCRIPTION Web application environment for Common Lisp SHA256 22 - 1gp323083ds89cw3vd6w40d4cwx04y0qaqdz4wx2332klhvvdnsd URL 23 - http://beta.quicklisp.org/archive/clack/2021-12-09/clack-20211209-git.tgz 24 - MD5 c223a854a79b257e0489e185abe48e16 NAME clack FILENAME clack DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME ironclad FILENAME ironclad) (NAME lack FILENAME lack) 28 - (NAME lack-component FILENAME lack-component) 29 - (NAME lack-middleware-backtrace FILENAME lack-middleware-backtrace) 30 - (NAME lack-util FILENAME lack-util) 31 - (NAME split-sequence FILENAME split-sequence) (NAME uiop FILENAME uiop) 32 - (NAME usocket FILENAME usocket)) 33 - DEPENDENCIES 34 - (alexandria bordeaux-threads ironclad lack lack-component 35 - lack-middleware-backtrace lack-util split-sequence uiop usocket) 36 - VERSION 20211209-git SIBLINGS 37 - (clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot 38 - clack-handler-wookie clack-socket clack-test t-clack-handler-fcgi 39 - t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie) 40 - PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/classowary.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "classowary"; 5 - version = "20191007-git"; 6 - 7 - description = "An implementation of the Cassowary linear constraint solver toolkit"; 8 - 9 - deps = [ args."documentation-utils" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/classowary/2019-10-07/classowary-20191007-git.tgz"; 13 - sha256 = "1r3535lgap7218v51k5rn2wlml4mlam3sgjg1lvac1vybiv4c287"; 14 - }; 15 - 16 - packageName = "classowary"; 17 - 18 - asdFilesToKeep = ["classowary.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM classowary DESCRIPTION 22 - An implementation of the Cassowary linear constraint solver toolkit SHA256 23 - 1r3535lgap7218v51k5rn2wlml4mlam3sgjg1lvac1vybiv4c287 URL 24 - http://beta.quicklisp.org/archive/classowary/2019-10-07/classowary-20191007-git.tgz 25 - MD5 a2587986780a40251b0327686b817cc6 NAME classowary FILENAME classowary 26 - DEPS 27 - ((NAME documentation-utils FILENAME documentation-utils) 28 - (NAME trivial-indent FILENAME trivial-indent)) 29 - DEPENDENCIES (documentation-utils trivial-indent) VERSION 20191007-git 30 - SIBLINGS (classowary-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clfswm.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clfswm"; 5 - version = "20161204-git"; 6 - 7 - description = "CLFSWM: Fullscreen Window Manager"; 8 - 9 - deps = [ args."clx" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz"; 13 - sha256 = "1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73"; 14 - }; 15 - 16 - packageName = "clfswm"; 17 - 18 - asdFilesToKeep = ["clfswm.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clfswm DESCRIPTION CLFSWM: Fullscreen Window Manager SHA256 22 - 1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73 URL 23 - http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz 24 - MD5 dc976785ef899837ab0fc50a4ed6b740 NAME clfswm FILENAME clfswm DEPS 25 - ((NAME clx FILENAME clx)) DEPENDENCIES (clx) VERSION 20161204-git SIBLINGS 26 - NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/closer-mop.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "closer-mop"; 5 - version = "20211209-git"; 6 - 7 - description = "Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/closer-mop/2021-12-09/closer-mop-20211209-git.tgz"; 13 - sha256 = "1zrjsibbph8dz8k0qjawp9c22094rag3aasd4r761m2r482xf5zl"; 14 - }; 15 - 16 - packageName = "closer-mop"; 17 - 18 - asdFilesToKeep = ["closer-mop.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM closer-mop DESCRIPTION 22 - Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations. 23 - SHA256 1zrjsibbph8dz8k0qjawp9c22094rag3aasd4r761m2r482xf5zl URL 24 - http://beta.quicklisp.org/archive/closer-mop/2021-12-09/closer-mop-20211209-git.tgz 25 - MD5 0b2a02f6b6a57b5b707df5e1d51950cd NAME closer-mop FILENAME closer-mop 26 - DEPS NIL DEPENDENCIES NIL VERSION 20211209-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/closure-common.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "closure-common"; 5 - version = "20181018-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."babel" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz"; 13 - sha256 = "18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn"; 14 - }; 15 - 16 - packageName = "closure-common"; 17 - 18 - asdFilesToKeep = ["closure-common.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM closure-common DESCRIPTION System lacks description SHA256 22 - 18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn URL 23 - http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz 24 - MD5 b09ee60c258a29f0c107960ec4c04ada NAME closure-common FILENAME 25 - closure-common DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME trivial-features FILENAME trivial-features) 28 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 29 - DEPENDENCIES (alexandria babel trivial-features trivial-gray-streams) 30 - VERSION 20181018-git SIBLINGS NIL PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/closure-html.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "closure-html"; 5 - version = "20180711-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."babel" args."closure-common" args."flexi-streams" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz"; 13 - sha256 = "0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq"; 14 - }; 15 - 16 - packageName = "closure-html"; 17 - 18 - asdFilesToKeep = ["closure-html.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM closure-html DESCRIPTION System lacks description SHA256 22 - 0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq URL 23 - http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz 24 - MD5 461dc8caa65385da5f2d1cd8dd4f965f NAME closure-html FILENAME 25 - closure-html DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME closure-common FILENAME closure-common) 28 - (NAME flexi-streams FILENAME flexi-streams) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 31 - DEPENDENCIES 32 - (alexandria babel closure-common flexi-streams trivial-features 33 - trivial-gray-streams) 34 - VERSION 20180711-git SIBLINGS NIL PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clsql-postgresql-socket.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clsql-postgresql-socket"; 5 - version = "clsql-20210228-git"; 6 - 7 - description = "Common Lisp SQL PostgreSQL Socket Driver"; 8 - 9 - deps = [ args."clsql" args."md5" args."uffi" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 - sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 14 - }; 15 - 16 - packageName = "clsql-postgresql-socket"; 17 - 18 - asdFilesToKeep = ["clsql-postgresql-socket.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clsql-postgresql-socket DESCRIPTION 22 - Common Lisp SQL PostgreSQL Socket Driver SHA256 23 - 0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4 URL 24 - http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 25 - MD5 d32b2b37e4211f5da61d2e29847a2f12 NAME clsql-postgresql-socket FILENAME 26 - clsql-postgresql-socket DEPS 27 - ((NAME clsql FILENAME clsql) (NAME md5 FILENAME md5) 28 - (NAME uffi FILENAME uffi)) 29 - DEPENDENCIES (clsql md5 uffi) VERSION clsql-20210228-git SIBLINGS 30 - (clsql-aodbc clsql-cffi clsql-mysql clsql-odbc clsql-postgresql-socket3 31 - clsql-postgresql clsql-sqlite clsql-sqlite3 clsql-tests clsql-uffi clsql) 32 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clsql-postgresql.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clsql-postgresql"; 5 - version = "clsql-20210228-git"; 6 - 7 - description = "Common Lisp PostgreSQL API Driver"; 8 - 9 - deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 - sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 14 - }; 15 - 16 - packageName = "clsql-postgresql"; 17 - 18 - asdFilesToKeep = ["clsql-postgresql.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clsql-postgresql DESCRIPTION Common Lisp PostgreSQL API Driver 22 - SHA256 0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4 URL 23 - http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 24 - MD5 d32b2b37e4211f5da61d2e29847a2f12 NAME clsql-postgresql FILENAME 25 - clsql-postgresql DEPS 26 - ((NAME clsql FILENAME clsql) (NAME clsql-uffi FILENAME clsql-uffi) 27 - (NAME uffi FILENAME uffi)) 28 - DEPENDENCIES (clsql clsql-uffi uffi) VERSION clsql-20210228-git SIBLINGS 29 - (clsql-aodbc clsql-cffi clsql-mysql clsql-odbc clsql-postgresql-socket 30 - clsql-postgresql-socket3 clsql-sqlite clsql-sqlite3 clsql-tests clsql-uffi 31 - clsql) 32 - PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clsql-sqlite3.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clsql-sqlite3"; 5 - version = "clsql-20210228-git"; 6 - 7 - description = "Common Lisp Sqlite3 Driver"; 8 - 9 - deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 - sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 14 - }; 15 - 16 - packageName = "clsql-sqlite3"; 17 - 18 - asdFilesToKeep = ["clsql-sqlite3.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clsql-sqlite3 DESCRIPTION Common Lisp Sqlite3 Driver SHA256 22 - 0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4 URL 23 - http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 24 - MD5 d32b2b37e4211f5da61d2e29847a2f12 NAME clsql-sqlite3 FILENAME 25 - clsql-sqlite3 DEPS 26 - ((NAME clsql FILENAME clsql) (NAME clsql-uffi FILENAME clsql-uffi) 27 - (NAME uffi FILENAME uffi)) 28 - DEPENDENCIES (clsql clsql-uffi uffi) VERSION clsql-20210228-git SIBLINGS 29 - (clsql-aodbc clsql-cffi clsql-mysql clsql-odbc clsql-postgresql-socket 30 - clsql-postgresql-socket3 clsql-postgresql clsql-sqlite clsql-tests 31 - clsql-uffi clsql) 32 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clsql-uffi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clsql-uffi"; 5 - version = "clsql-20210228-git"; 6 - 7 - description = "Common UFFI Helper functions for Common Lisp SQL Interface Library"; 8 - 9 - deps = [ args."clsql" args."uffi" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 - sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 14 - }; 15 - 16 - packageName = "clsql-uffi"; 17 - 18 - asdFilesToKeep = ["clsql-uffi.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clsql-uffi DESCRIPTION 22 - Common UFFI Helper functions for Common Lisp SQL Interface Library SHA256 23 - 0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4 URL 24 - http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 25 - MD5 d32b2b37e4211f5da61d2e29847a2f12 NAME clsql-uffi FILENAME clsql-uffi 26 - DEPS ((NAME clsql FILENAME clsql) (NAME uffi FILENAME uffi)) DEPENDENCIES 27 - (clsql uffi) VERSION clsql-20210228-git SIBLINGS 28 - (clsql-aodbc clsql-cffi clsql-mysql clsql-odbc clsql-postgresql-socket 29 - clsql-postgresql-socket3 clsql-postgresql clsql-sqlite clsql-sqlite3 30 - clsql-tests clsql) 31 - PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clsql.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clsql"; 5 - version = "20210228-git"; 6 - 7 - description = "Common Lisp SQL Interface library"; 8 - 9 - deps = [ args."uffi" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 - sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 14 - }; 15 - 16 - packageName = "clsql"; 17 - 18 - asdFilesToKeep = ["clsql.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clsql DESCRIPTION Common Lisp SQL Interface library SHA256 22 - 0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4 URL 23 - http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 24 - MD5 d32b2b37e4211f5da61d2e29847a2f12 NAME clsql FILENAME clsql DEPS 25 - ((NAME uffi FILENAME uffi)) DEPENDENCIES (uffi) VERSION 20210228-git 26 - SIBLINGS 27 - (clsql-aodbc clsql-cffi clsql-mysql clsql-odbc clsql-postgresql-socket 28 - clsql-postgresql-socket3 clsql-postgresql clsql-sqlite clsql-sqlite3 29 - clsql-tests clsql-uffi) 30 - PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clss.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clss"; 5 - version = "20191130-git"; 6 - 7 - description = "A DOM tree searching engine based on CSS selectors."; 8 - 9 - deps = [ args."array-utils" args."documentation-utils" args."plump" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz"; 13 - sha256 = "0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka"; 14 - }; 15 - 16 - packageName = "clss"; 17 - 18 - asdFilesToKeep = ["clss.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clss DESCRIPTION A DOM tree searching engine based on CSS selectors. 22 - SHA256 0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka URL 23 - http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz MD5 24 - 9910677b36df00f3046905a9b84122a9 NAME clss FILENAME clss DEPS 25 - ((NAME array-utils FILENAME array-utils) 26 - (NAME documentation-utils FILENAME documentation-utils) 27 - (NAME plump FILENAME plump) (NAME trivial-indent FILENAME trivial-indent)) 28 - DEPENDENCIES (array-utils documentation-utils plump trivial-indent) VERSION 29 - 20191130-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clump-2-3-tree.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clump-2-3-tree"; 5 - version = "clump-20160825-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."acclimation" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 - sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 14 - }; 15 - 16 - packageName = "clump-2-3-tree"; 17 - 18 - asdFilesToKeep = ["clump-2-3-tree.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clump-2-3-tree DESCRIPTION System lacks description SHA256 22 - 1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl URL 23 - http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz 24 - MD5 5132d2800138d435ef69f7e68b025c8f NAME clump-2-3-tree FILENAME 25 - clump-2-3-tree DEPS ((NAME acclimation FILENAME acclimation)) DEPENDENCIES 26 - (acclimation) VERSION clump-20160825-git SIBLINGS 27 - (clump-binary-tree clump-test clump) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clump-binary-tree.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clump-binary-tree"; 5 - version = "clump-20160825-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."acclimation" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 - sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 14 - }; 15 - 16 - packageName = "clump-binary-tree"; 17 - 18 - asdFilesToKeep = ["clump-binary-tree.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clump-binary-tree DESCRIPTION System lacks description SHA256 22 - 1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl URL 23 - http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz 24 - MD5 5132d2800138d435ef69f7e68b025c8f NAME clump-binary-tree FILENAME 25 - clump-binary-tree DEPS ((NAME acclimation FILENAME acclimation)) 26 - DEPENDENCIES (acclimation) VERSION clump-20160825-git SIBLINGS 27 - (clump-2-3-tree clump-test clump) PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clump.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clump"; 5 - version = "20160825-git"; 6 - 7 - description = "Library for operations on different kinds of trees"; 8 - 9 - deps = [ args."acclimation" args."clump-2-3-tree" args."clump-binary-tree" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 - sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 14 - }; 15 - 16 - packageName = "clump"; 17 - 18 - asdFilesToKeep = ["clump.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clump DESCRIPTION Library for operations on different kinds of trees 22 - SHA256 1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl URL 23 - http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz 24 - MD5 5132d2800138d435ef69f7e68b025c8f NAME clump FILENAME clump DEPS 25 - ((NAME acclimation FILENAME acclimation) 26 - (NAME clump-2-3-tree FILENAME clump-2-3-tree) 27 - (NAME clump-binary-tree FILENAME clump-binary-tree)) 28 - DEPENDENCIES (acclimation clump-2-3-tree clump-binary-tree) VERSION 29 - 20160825-git SIBLINGS (clump-2-3-tree clump-binary-tree clump-test) 30 - PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clunit.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clunit"; 5 - version = "20171019-git"; 6 - 7 - description = "CLUnit is a Common Lisp unit testing framework."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz"; 13 - sha256 = "1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5"; 14 - }; 15 - 16 - packageName = "clunit"; 17 - 18 - asdFilesToKeep = ["clunit.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clunit DESCRIPTION CLUnit is a Common Lisp unit testing framework. 22 - SHA256 1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5 URL 23 - http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz 24 - MD5 389017f2f05a6287078ddacd0471817e NAME clunit FILENAME clunit DEPS NIL 25 - DEPENDENCIES NIL VERSION 20171019-git SIBLINGS NIL PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clunit2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clunit2"; 5 - version = "20211020-git"; 6 - 7 - description = "CLUnit is a Common Lisp unit testing framework."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clunit2/2021-10-20/clunit2-20211020-git.tgz"; 13 - sha256 = "0qly5gk1fn0bd0kx6spdhmnsf58gdg19py46w10p5vvs41vvriy3"; 14 - }; 15 - 16 - packageName = "clunit2"; 17 - 18 - asdFilesToKeep = ["clunit2.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM clunit2 DESCRIPTION CLUnit is a Common Lisp unit testing framework. 22 - SHA256 0qly5gk1fn0bd0kx6spdhmnsf58gdg19py46w10p5vvs41vvriy3 URL 23 - http://beta.quicklisp.org/archive/clunit2/2021-10-20/clunit2-20211020-git.tgz 24 - MD5 0ee5b2d53c81e9640d3aa8c904b0b236 NAME clunit2 FILENAME clunit2 DEPS NIL 25 - DEPENDENCIES NIL VERSION 20211020-git SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/clx.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "clx"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "clx/test" ]; 8 - 9 - description = "An implementation of the X Window System protocol in Lisp."; 10 - 11 - deps = [ args."fiasco" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/clx/2021-10-20/clx-20211020-git.tgz"; 15 - sha256 = "1mgqcqakbm8s4w2r9831xzhy9lyifcl2b3rhl5p76s5vpnjmp88k"; 16 - }; 17 - 18 - packageName = "clx"; 19 - 20 - asdFilesToKeep = ["clx.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM clx DESCRIPTION 24 - An implementation of the X Window System protocol in Lisp. SHA256 25 - 1mgqcqakbm8s4w2r9831xzhy9lyifcl2b3rhl5p76s5vpnjmp88k URL 26 - http://beta.quicklisp.org/archive/clx/2021-10-20/clx-20211020-git.tgz MD5 27 - ac10db96a6426cf462f8d417a7797621 NAME clx FILENAME clx DEPS 28 - ((NAME fiasco FILENAME fiasco)) DEPENDENCIES (fiasco) VERSION 20211020-git 29 - SIBLINGS NIL PARASITES (clx/test)) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/collectors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "collectors"; 5 - version = "20161204-git"; 6 - 7 - parasites = [ "collectors-test" ]; 8 - 9 - description = "A library providing various collector type macros 10 - pulled from arnesi into its own library and stripped of dependencies"; 11 - 12 - deps = [ args."alexandria" args."closer-mop" args."iterate" args."lisp-unit2" args."symbol-munger" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz"; 16 - sha256 = "0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf"; 17 - }; 18 - 19 - packageName = "collectors"; 20 - 21 - asdFilesToKeep = ["collectors.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM collectors DESCRIPTION 25 - A library providing various collector type macros 26 - pulled from arnesi into its own library and stripped of dependencies 27 - SHA256 0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf URL 28 - http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz 29 - MD5 59c8c885a8e512d4f09e73d3e0c97b1f NAME collectors FILENAME collectors 30 - DEPS 31 - ((NAME alexandria FILENAME alexandria) 32 - (NAME closer-mop FILENAME closer-mop) (NAME iterate FILENAME iterate) 33 - (NAME lisp-unit2 FILENAME lisp-unit2) 34 - (NAME symbol-munger FILENAME symbol-munger)) 35 - DEPENDENCIES (alexandria closer-mop iterate lisp-unit2 symbol-munger) 36 - VERSION 20161204-git SIBLINGS NIL PARASITES (collectors-test)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/colorize.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "colorize"; 5 - version = "20180228-git"; 6 - 7 - description = "A Syntax highlighting library"; 8 - 9 - deps = [ args."alexandria" args."html-encode" args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz"; 13 - sha256 = "1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h"; 14 - }; 15 - 16 - packageName = "colorize"; 17 - 18 - asdFilesToKeep = ["colorize.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM colorize DESCRIPTION A Syntax highlighting library SHA256 22 - 1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h URL 23 - http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz 24 - MD5 1bc08c8f76b747e4d254669a205dc611 NAME colorize FILENAME colorize DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME html-encode FILENAME html-encode) 27 - (NAME split-sequence FILENAME split-sequence)) 28 - DEPENDENCIES (alexandria html-encode split-sequence) VERSION 20180228-git 29 - SIBLINGS NIL PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/command-line-arguments.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "command-line-arguments"; 5 - version = "20210807-git"; 6 - 7 - parasites = [ "command-line-arguments/test" ]; 8 - 9 - description = "small library to deal with command-line arguments"; 10 - 11 - deps = [ args."alexandria" args."hu_dot_dwim_dot_stefil" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/command-line-arguments/2021-08-07/command-line-arguments-20210807-git.tgz"; 15 - sha256 = "1ggrzdaw79ls7hk629m31z0pikibqi8x1hyi3fwd0zc8w9k3k6wk"; 16 - }; 17 - 18 - packageName = "command-line-arguments"; 19 - 20 - asdFilesToKeep = ["command-line-arguments.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM command-line-arguments DESCRIPTION 24 - small library to deal with command-line arguments SHA256 25 - 1ggrzdaw79ls7hk629m31z0pikibqi8x1hyi3fwd0zc8w9k3k6wk URL 26 - http://beta.quicklisp.org/archive/command-line-arguments/2021-08-07/command-line-arguments-20210807-git.tgz 27 - MD5 b50ca36f5b2b19d4322ac5b5969fee22 NAME command-line-arguments FILENAME 28 - command-line-arguments DEPS 29 - ((NAME alexandria FILENAME alexandria) 30 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil)) 31 - DEPENDENCIES (alexandria hu.dwim.stefil) VERSION 20210807-git SIBLINGS NIL 32 - PARASITES (command-line-arguments/test)) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/css-lite.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "css-lite"; 5 - version = "20120407-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz"; 13 - sha256 = "1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg"; 14 - }; 15 - 16 - packageName = "css-lite"; 17 - 18 - asdFilesToKeep = ["css-lite.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM css-lite DESCRIPTION System lacks description SHA256 22 - 1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg URL 23 - http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz 24 - MD5 9b25afb0d2c3f0c32d2303ab1d3f570d NAME css-lite FILENAME css-lite DEPS 25 - NIL DEPENDENCIES NIL VERSION 20120407-git SIBLINGS NIL PARASITES NIL) */
-52
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/css-selectors-simple-tree.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "css-selectors-simple-tree"; 5 - version = "css-selectors-20160628-git"; 6 - 7 - description = "An implementation of css selectors that interacts with cl-html5-parser's simple-tree"; 8 - 9 - deps = [ args."alexandria" args."babel" args."buildnode" args."cl-html5-parser" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."css-selectors" args."cxml" args."flexi-streams" args."iterate" args."named-readtables" args."puri" args."split-sequence" args."string-case" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 13 - sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 14 - }; 15 - 16 - packageName = "css-selectors-simple-tree"; 17 - 18 - asdFilesToKeep = ["css-selectors-simple-tree.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM css-selectors-simple-tree DESCRIPTION 22 - An implementation of css selectors that interacts with cl-html5-parser's simple-tree 23 - SHA256 0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b URL 24 - http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz 25 - MD5 28537144b89af4ebe28c2eb365d5569f NAME css-selectors-simple-tree 26 - FILENAME css-selectors-simple-tree DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME buildnode FILENAME buildnode) 29 - (NAME cl-html5-parser FILENAME cl-html5-parser) 30 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME cl-unicode FILENAME cl-unicode) 32 - (NAME closer-mop FILENAME closer-mop) 33 - (NAME closure-common FILENAME closure-common) 34 - (NAME closure-html FILENAME closure-html) 35 - (NAME collectors FILENAME collectors) 36 - (NAME css-selectors FILENAME css-selectors) (NAME cxml FILENAME cxml) 37 - (NAME flexi-streams FILENAME flexi-streams) 38 - (NAME iterate FILENAME iterate) 39 - (NAME named-readtables FILENAME named-readtables) 40 - (NAME puri FILENAME puri) (NAME split-sequence FILENAME split-sequence) 41 - (NAME string-case FILENAME string-case) (NAME swank FILENAME swank) 42 - (NAME symbol-munger FILENAME symbol-munger) 43 - (NAME trivial-features FILENAME trivial-features) 44 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 45 - (NAME yacc FILENAME yacc)) 46 - DEPENDENCIES 47 - (alexandria babel buildnode cl-html5-parser cl-interpol cl-ppcre cl-unicode 48 - closer-mop closure-common closure-html collectors css-selectors cxml 49 - flexi-streams iterate named-readtables puri split-sequence string-case 50 - swank symbol-munger trivial-features trivial-gray-streams yacc) 51 - VERSION css-selectors-20160628-git SIBLINGS 52 - (css-selectors-stp css-selectors) PARASITES NIL) */
-52
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/css-selectors-stp.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "css-selectors-stp"; 5 - version = "css-selectors-20160628-git"; 6 - 7 - description = "An implementation of css selectors that interacts with cxml-stp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."buildnode" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."css-selectors" args."cxml" args."cxml-stp" args."flexi-streams" args."iterate" args."named-readtables" args."parse-number" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."xpath" args."yacc" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 13 - sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 14 - }; 15 - 16 - packageName = "css-selectors-stp"; 17 - 18 - asdFilesToKeep = ["css-selectors-stp.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM css-selectors-stp DESCRIPTION 22 - An implementation of css selectors that interacts with cxml-stp SHA256 23 - 0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b URL 24 - http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz 25 - MD5 28537144b89af4ebe28c2eb365d5569f NAME css-selectors-stp FILENAME 26 - css-selectors-stp DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME buildnode FILENAME buildnode) 29 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-unicode FILENAME cl-unicode) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME closure-common FILENAME closure-common) 33 - (NAME closure-html FILENAME closure-html) 34 - (NAME collectors FILENAME collectors) 35 - (NAME css-selectors FILENAME css-selectors) (NAME cxml FILENAME cxml) 36 - (NAME cxml-stp FILENAME cxml-stp) 37 - (NAME flexi-streams FILENAME flexi-streams) 38 - (NAME iterate FILENAME iterate) 39 - (NAME named-readtables FILENAME named-readtables) 40 - (NAME parse-number FILENAME parse-number) (NAME puri FILENAME puri) 41 - (NAME split-sequence FILENAME split-sequence) (NAME swank FILENAME swank) 42 - (NAME symbol-munger FILENAME symbol-munger) 43 - (NAME trivial-features FILENAME trivial-features) 44 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 45 - (NAME xpath FILENAME xpath) (NAME yacc FILENAME yacc)) 46 - DEPENDENCIES 47 - (alexandria babel buildnode cl-interpol cl-ppcre cl-unicode closer-mop 48 - closure-common closure-html collectors css-selectors cxml cxml-stp 49 - flexi-streams iterate named-readtables parse-number puri split-sequence 50 - swank symbol-munger trivial-features trivial-gray-streams xpath yacc) 51 - VERSION css-selectors-20160628-git SIBLINGS 52 - (css-selectors-simple-tree css-selectors) PARASITES NIL) */
-51
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/css-selectors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "css-selectors"; 5 - version = "20160628-git"; 6 - 7 - parasites = [ "css-selectors-test" ]; 8 - 9 - description = "An implementation of css selectors"; 10 - 11 - deps = [ args."alexandria" args."babel" args."buildnode" args."buildnode-xhtml" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 15 - sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 16 - }; 17 - 18 - packageName = "css-selectors"; 19 - 20 - asdFilesToKeep = ["css-selectors.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM css-selectors DESCRIPTION An implementation of css selectors SHA256 24 - 0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b URL 25 - http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz 26 - MD5 28537144b89af4ebe28c2eb365d5569f NAME css-selectors FILENAME 27 - css-selectors DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 29 - (NAME buildnode FILENAME buildnode) 30 - (NAME buildnode-xhtml FILENAME buildnode-xhtml) 31 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 32 - (NAME cl-unicode FILENAME cl-unicode) 33 - (NAME closer-mop FILENAME closer-mop) 34 - (NAME closure-common FILENAME closure-common) 35 - (NAME closure-html FILENAME closure-html) 36 - (NAME collectors FILENAME collectors) (NAME cxml FILENAME cxml) 37 - (NAME flexi-streams FILENAME flexi-streams) 38 - (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2) 39 - (NAME named-readtables FILENAME named-readtables) 40 - (NAME puri FILENAME puri) (NAME split-sequence FILENAME split-sequence) 41 - (NAME swank FILENAME swank) (NAME symbol-munger FILENAME symbol-munger) 42 - (NAME trivial-features FILENAME trivial-features) 43 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 44 - (NAME yacc FILENAME yacc)) 45 - DEPENDENCIES 46 - (alexandria babel buildnode buildnode-xhtml cl-interpol cl-ppcre cl-unicode 47 - closer-mop closure-common closure-html collectors cxml flexi-streams 48 - iterate lisp-unit2 named-readtables puri split-sequence swank 49 - symbol-munger trivial-features trivial-gray-streams yacc) 50 - VERSION 20160628-git SIBLINGS (css-selectors-simple-tree css-selectors-stp) 51 - PARASITES (css-selectors-test)) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cxml-stp.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cxml-stp"; 5 - version = "20200325-git"; 6 - 7 - parasites = [ "cxml-stp/test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."cxml_slash_test" args."parse-number" args."puri" args."rt" args."trivial-features" args."trivial-gray-streams" args."xpath" args."xpath_slash_test" args."yacc" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz"; 15 - sha256 = "1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n"; 16 - }; 17 - 18 - packageName = "cxml-stp"; 19 - 20 - asdFilesToKeep = ["cxml-stp.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cxml-stp DESCRIPTION System lacks description SHA256 24 - 1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n URL 25 - http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz 26 - MD5 5622b4aae55e448473f1ba14fa3a5f4c NAME cxml-stp FILENAME cxml-stp DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 30 - (NAME cxml/test FILENAME cxml_slash_test) 31 - (NAME parse-number FILENAME parse-number) (NAME puri FILENAME puri) 32 - (NAME rt FILENAME rt) (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 34 - (NAME xpath FILENAME xpath) (NAME xpath/test FILENAME xpath_slash_test) 35 - (NAME yacc FILENAME yacc)) 36 - DEPENDENCIES 37 - (alexandria babel cl-ppcre closure-common cxml cxml/test parse-number puri 38 - rt trivial-features trivial-gray-streams xpath xpath/test yacc) 39 - VERSION 20200325-git SIBLINGS NIL PARASITES (cxml-stp/test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/cxml.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "cxml"; 5 - version = "20200610-git"; 6 - 7 - parasites = [ "cxml/dom" "cxml/klacks" "cxml/test" "cxml/xml" ]; 8 - 9 - description = "Closure XML - a Common Lisp XML parser"; 10 - 11 - deps = [ args."alexandria" args."babel" args."closure-common" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz"; 15 - sha256 = "0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq"; 16 - }; 17 - 18 - packageName = "cxml"; 19 - 20 - asdFilesToKeep = ["cxml.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM cxml DESCRIPTION Closure XML - a Common Lisp XML parser SHA256 24 - 0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq URL 25 - http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz MD5 26 - 0b6f34edb79f7b63cc5855f18d0d66f0 NAME cxml FILENAME cxml DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME closure-common FILENAME closure-common) (NAME puri FILENAME puri) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 31 - DEPENDENCIES 32 - (alexandria babel closure-common puri trivial-features 33 - trivial-gray-streams) 34 - VERSION 20200610-git SIBLINGS (cxml-dom cxml-klacks cxml-test) PARASITES 35 - (cxml/dom cxml/klacks cxml/test cxml/xml)) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/data-frame.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "data-frame"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "data-frame/tests" ]; 8 - 9 - description = "Data frames for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."clunit" args."let-plus" args."num-utils" args."select" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/data-frame/2021-04-11/data-frame-20210411-git.tgz"; 15 - sha256 = "1ycpbhzkc54x4mvghq6ss6s9ya1zn1s6d0cifh20c3b9kfca1xgv"; 16 - }; 17 - 18 - packageName = "data-frame"; 19 - 20 - asdFilesToKeep = ["data-frame.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM data-frame DESCRIPTION Data frames for Common Lisp SHA256 24 - 1ycpbhzkc54x4mvghq6ss6s9ya1zn1s6d0cifh20c3b9kfca1xgv URL 25 - http://beta.quicklisp.org/archive/data-frame/2021-04-11/data-frame-20210411-git.tgz 26 - MD5 b376dd3510b55efe93cbcbf8478f94ed NAME data-frame FILENAME data-frame 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 29 - (NAME array-operations FILENAME array-operations) 30 - (NAME clunit FILENAME clunit) (NAME let-plus FILENAME let-plus) 31 - (NAME num-utils FILENAME num-utils) (NAME select FILENAME select)) 32 - DEPENDENCIES 33 - (alexandria anaphora array-operations clunit let-plus num-utils select) 34 - VERSION 20210411-git SIBLINGS NIL PARASITES (data-frame/tests)) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/data-table.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "data-table"; 5 - version = "20160208-git"; 6 - 7 - parasites = [ "data-table-test" ]; 8 - 9 - description = "A library providing a data-table class, and useful functionality around this"; 10 - 11 - deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."symbol-munger" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/data-table/2016-02-08/data-table-20160208-git.tgz"; 15 - sha256 = "0xzjk3jxx11ziw5348ddalygi84wwwcjcxmqvm5rscgzh012h8gm"; 16 - }; 17 - 18 - packageName = "data-table"; 19 - 20 - asdFilesToKeep = ["data-table.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM data-table DESCRIPTION 24 - A library providing a data-table class, and useful functionality around this 25 - SHA256 0xzjk3jxx11ziw5348ddalygi84wwwcjcxmqvm5rscgzh012h8gm URL 26 - http://beta.quicklisp.org/archive/data-table/2016-02-08/data-table-20160208-git.tgz 27 - MD5 0507150b0fcfdab96e0ef7668d31113c NAME data-table FILENAME data-table 28 - DEPS 29 - ((NAME alexandria FILENAME alexandria) 30 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME cl-unicode FILENAME cl-unicode) 32 - (NAME flexi-streams FILENAME flexi-streams) 33 - (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2) 34 - (NAME named-readtables FILENAME named-readtables) 35 - (NAME symbol-munger FILENAME symbol-munger)) 36 - DEPENDENCIES 37 - (alexandria cl-interpol cl-ppcre cl-unicode flexi-streams iterate 38 - lisp-unit2 named-readtables symbol-munger) 39 - VERSION 20160208-git SIBLINGS (data-table-clsql) PARASITES 40 - (data-table-test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbd-mysql.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbd-mysql"; 5 - version = "cl-dbi-20211020-git"; 6 - 7 - description = "Database driver for MySQL."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-mysql" args."closer-mop" args."dbi" args."split-sequence" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 13 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 14 - }; 15 - 16 - packageName = "dbd-mysql"; 17 - 18 - asdFilesToKeep = ["dbd-mysql.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dbd-mysql DESCRIPTION Database driver for MySQL. SHA256 22 - 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 23 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 24 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME dbd-mysql FILENAME dbd-mysql DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cl-mysql FILENAME cl-mysql) 28 - (NAME closer-mop FILENAME closer-mop) (NAME dbi FILENAME dbi) 29 - (NAME split-sequence FILENAME split-sequence) 30 - (NAME trivial-features FILENAME trivial-features)) 31 - DEPENDENCIES 32 - (alexandria babel bordeaux-threads cffi cl-mysql closer-mop dbi 33 - split-sequence trivial-features) 34 - VERSION cl-dbi-20211020-git SIBLINGS 35 - (cl-dbi dbd-postgres dbd-sqlite3 dbi-test dbi) PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbd-postgres.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbd-postgres"; 5 - version = "cl-dbi-20211020-git"; 6 - 7 - description = "Database driver for PostgreSQL."; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-ppcre" args."closer-mop" args."dbi" args."ironclad" args."md5" args."split-sequence" args."trivial-garbage" args."uax-15" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 13 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 14 - }; 15 - 16 - packageName = "dbd-postgres"; 17 - 18 - asdFilesToKeep = ["dbd-postgres.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dbd-postgres DESCRIPTION Database driver for PostgreSQL. SHA256 22 - 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 23 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 24 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME dbd-postgres FILENAME 25 - dbd-postgres DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cl-base64 FILENAME cl-base64) 29 - (NAME cl-postgres FILENAME cl-postgres) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME closer-mop FILENAME closer-mop) (NAME dbi FILENAME dbi) 31 - (NAME ironclad FILENAME ironclad) (NAME md5 FILENAME md5) 32 - (NAME split-sequence FILENAME split-sequence) 33 - (NAME trivial-garbage FILENAME trivial-garbage) 34 - (NAME uax-15 FILENAME uax-15) (NAME usocket FILENAME usocket)) 35 - DEPENDENCIES 36 - (alexandria bordeaux-threads cl-base64 cl-postgres cl-ppcre closer-mop dbi 37 - ironclad md5 split-sequence trivial-garbage uax-15 usocket) 38 - VERSION cl-dbi-20211020-git SIBLINGS 39 - (cl-dbi dbd-mysql dbd-sqlite3 dbi-test dbi) PARASITES NIL) */
-38
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbd-sqlite3.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbd-sqlite3"; 5 - version = "cl-dbi-20211020-git"; 6 - 7 - description = "Database driver for SQLite3."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."closer-mop" args."dbi" args."iterate" args."split-sequence" args."sqlite" args."trivial-features" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 13 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 14 - }; 15 - 16 - packageName = "dbd-sqlite3"; 17 - 18 - asdFilesToKeep = ["dbd-sqlite3.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dbd-sqlite3 DESCRIPTION Database driver for SQLite3. SHA256 22 - 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 23 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 24 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME dbd-sqlite3 FILENAME dbd-sqlite3 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME closer-mop FILENAME closer-mop) 29 - (NAME dbi FILENAME dbi) (NAME iterate FILENAME iterate) 30 - (NAME split-sequence FILENAME split-sequence) 31 - (NAME sqlite FILENAME sqlite) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-garbage FILENAME trivial-garbage)) 34 - DEPENDENCIES 35 - (alexandria babel bordeaux-threads cffi closer-mop dbi iterate 36 - split-sequence sqlite trivial-features trivial-garbage) 37 - VERSION cl-dbi-20211020-git SIBLINGS 38 - (cl-dbi dbd-mysql dbd-postgres dbi-test dbi) PARASITES NIL) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbi-test.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbi-test"; 5 - version = "cl-dbi-20211020-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."dissect" args."rove" args."split-sequence" args."trivial-gray-streams" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 13 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 14 - }; 15 - 16 - packageName = "dbi-test"; 17 - 18 - asdFilesToKeep = ["dbi-test.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dbi-test DESCRIPTION System lacks description SHA256 22 - 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 23 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 24 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME dbi-test FILENAME dbi-test DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME closer-mop FILENAME closer-mop) (NAME dbi FILENAME dbi) 28 - (NAME dissect FILENAME dissect) (NAME rove FILENAME rove) 29 - (NAME split-sequence FILENAME split-sequence) 30 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 31 - (NAME trivial-types FILENAME trivial-types)) 32 - DEPENDENCIES 33 - (alexandria bordeaux-threads closer-mop dbi dissect rove split-sequence 34 - trivial-gray-streams trivial-types) 35 - VERSION cl-dbi-20211020-git SIBLINGS 36 - (cl-dbi dbd-mysql dbd-postgres dbd-sqlite3 dbi) PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbi"; 5 - version = "cl-20211020-git"; 6 - 7 - parasites = [ "dbi/test" ]; 8 - 9 - description = "Database independent interface for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-mysql" args."cl-postgres" args."closer-mop" args."dbd-mysql" args."dbd-postgres" args."dbd-sqlite3" args."dbi-test" args."rove" args."split-sequence" args."sqlite" args."trivial-garbage" args."trivial-types" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz"; 15 - sha256 = "1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr"; 16 - }; 17 - 18 - packageName = "dbi"; 19 - 20 - asdFilesToKeep = ["dbi.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM dbi DESCRIPTION Database independent interface for Common Lisp 24 - SHA256 1khvf4b2pa9wv8blcwb77byi5nyb8g8bnaq4ml20g674iwgvvvmr URL 25 - http://beta.quicklisp.org/archive/cl-dbi/2021-10-20/cl-dbi-20211020-git.tgz 26 - MD5 565a1f32b2d924ad59876afcdc5cf263 NAME dbi FILENAME dbi DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-mysql FILENAME cl-mysql) (NAME cl-postgres FILENAME cl-postgres) 30 - (NAME closer-mop FILENAME closer-mop) (NAME dbd-mysql FILENAME dbd-mysql) 31 - (NAME dbd-postgres FILENAME dbd-postgres) 32 - (NAME dbd-sqlite3 FILENAME dbd-sqlite3) (NAME dbi-test FILENAME dbi-test) 33 - (NAME rove FILENAME rove) (NAME split-sequence FILENAME split-sequence) 34 - (NAME sqlite FILENAME sqlite) 35 - (NAME trivial-garbage FILENAME trivial-garbage) 36 - (NAME trivial-types FILENAME trivial-types)) 37 - DEPENDENCIES 38 - (alexandria bordeaux-threads cl-mysql cl-postgres closer-mop dbd-mysql 39 - dbd-postgres dbd-sqlite3 dbi-test rove split-sequence sqlite 40 - trivial-garbage trivial-types) 41 - VERSION cl-20211020-git SIBLINGS 42 - (cl-dbi dbd-mysql dbd-postgres dbd-sqlite3 dbi-test) PARASITES (dbi/test)) */
-51
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dbus.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dbus"; 5 - version = "20211020-git"; 6 - 7 - description = "A D-BUS client library for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."asdf-package-system" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-ppcre" args."cl-xmlspam" args."closure-common" args."cxml" args."flexi-streams" args."idna" args."ieee-floats" args."iolib" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."ironclad" args."puri" args."split-sequence" args."swap-bytes" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/dbus/2021-10-20/dbus-20211020-git.tgz"; 13 - sha256 = "1h0qa609qplq3grjf3n31h1bcdj154ww2dn29mjxlkm76n5asz14"; 14 - }; 15 - 16 - packageName = "dbus"; 17 - 18 - asdFilesToKeep = ["dbus.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dbus DESCRIPTION A D-BUS client library for Common Lisp SHA256 22 - 1h0qa609qplq3grjf3n31h1bcdj154ww2dn29mjxlkm76n5asz14 URL 23 - http://beta.quicklisp.org/archive/dbus/2021-10-20/dbus-20211020-git.tgz MD5 24 - f3fb2ad37c197d99d9c446f556a12bdb NAME dbus FILENAME dbus DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME asdf-package-system FILENAME asdf-package-system) 27 - (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 30 - (NAME cffi-toolchain FILENAME cffi-toolchain) 31 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-xmlspam FILENAME cl-xmlspam) 32 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 33 - (NAME flexi-streams FILENAME flexi-streams) (NAME idna FILENAME idna) 34 - (NAME ieee-floats FILENAME ieee-floats) (NAME iolib FILENAME iolib) 35 - (NAME iolib.asdf FILENAME iolib_dot_asdf) 36 - (NAME iolib.base FILENAME iolib_dot_base) 37 - (NAME iolib.common-lisp FILENAME iolib_dot_common-lisp) 38 - (NAME iolib.conf FILENAME iolib_dot_conf) 39 - (NAME ironclad FILENAME ironclad) (NAME puri FILENAME puri) 40 - (NAME split-sequence FILENAME split-sequence) 41 - (NAME swap-bytes FILENAME swap-bytes) 42 - (NAME trivial-features FILENAME trivial-features) 43 - (NAME trivial-garbage FILENAME trivial-garbage) 44 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 45 - DEPENDENCIES 46 - (alexandria asdf-package-system babel bordeaux-threads cffi cffi-grovel 47 - cffi-toolchain cl-ppcre cl-xmlspam closure-common cxml flexi-streams idna 48 - ieee-floats iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf 49 - ironclad puri split-sequence swap-bytes trivial-features trivial-garbage 50 - trivial-gray-streams) 51 - VERSION 20211020-git SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/defclass-std.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "defclass-std"; 5 - version = "20201220-git"; 6 - 7 - description = "A shortcut macro to write DEFCLASS forms quickly."; 8 - 9 - deps = [ args."alexandria" args."anaphora" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/defclass-std/2020-12-20/defclass-std-20201220-git.tgz"; 13 - sha256 = "1ldivz1zmg0yxja43gj0lcgf10k0kj2bhb0576f0xnhy56sya0w3"; 14 - }; 15 - 16 - packageName = "defclass-std"; 17 - 18 - asdFilesToKeep = ["defclass-std.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM defclass-std DESCRIPTION 22 - A shortcut macro to write DEFCLASS forms quickly. SHA256 23 - 1ldivz1zmg0yxja43gj0lcgf10k0kj2bhb0576f0xnhy56sya0w3 URL 24 - http://beta.quicklisp.org/archive/defclass-std/2020-12-20/defclass-std-20201220-git.tgz 25 - MD5 b7a3bec06318b10818dc3941d407fe65 NAME defclass-std FILENAME 26 - defclass-std DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)) 28 - DEPENDENCIES (alexandria anaphora) VERSION 20201220-git SIBLINGS 29 - (defclass-std-test) PARASITES NIL) */
-51
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dexador.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dexador"; 5 - version = "20211209-git"; 6 - 7 - description = "Yet another HTTP client for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-cookie" args."cl-ppcre" args."cl-utilities" args."fast-http" args."fast-io" args."flexi-streams" args."local-time" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."uiop" args."usocket" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/dexador/2021-12-09/dexador-20211209-git.tgz"; 13 - sha256 = "0cknpgz9cbqnaa0wafs7nfqlis8cikfxi11gd5r9md8zm0iw3gi7"; 14 - }; 15 - 16 - packageName = "dexador"; 17 - 18 - asdFilesToKeep = ["dexador.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dexador DESCRIPTION Yet another HTTP client for Common Lisp SHA256 22 - 0cknpgz9cbqnaa0wafs7nfqlis8cikfxi11gd5r9md8zm0iw3gi7 URL 23 - http://beta.quicklisp.org/archive/dexador/2021-12-09/dexador-20211209-git.tgz 24 - MD5 211593b3d20b0be78f8c525a9a1f5cfb NAME dexador FILENAME dexador DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 28 - (NAME cffi-toolchain FILENAME cffi-toolchain) (NAME chipz FILENAME chipz) 29 - (NAME chunga FILENAME chunga) (NAME cl+ssl FILENAME cl_plus_ssl) 30 - (NAME cl-base64 FILENAME cl-base64) (NAME cl-cookie FILENAME cl-cookie) 31 - (NAME cl-ppcre FILENAME cl-ppcre) 32 - (NAME cl-utilities FILENAME cl-utilities) 33 - (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io) 34 - (NAME flexi-streams FILENAME flexi-streams) 35 - (NAME local-time FILENAME local-time) 36 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 37 - (NAME smart-buffer FILENAME smart-buffer) 38 - (NAME split-sequence FILENAME split-sequence) 39 - (NAME static-vectors FILENAME static-vectors) 40 - (NAME trivial-features FILENAME trivial-features) 41 - (NAME trivial-garbage FILENAME trivial-garbage) 42 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 43 - (NAME trivial-mimes FILENAME trivial-mimes) (NAME uiop FILENAME uiop) 44 - (NAME usocket FILENAME usocket) (NAME xsubseq FILENAME xsubseq)) 45 - DEPENDENCIES 46 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain chipz 47 - chunga cl+ssl cl-base64 cl-cookie cl-ppcre cl-utilities fast-http fast-io 48 - flexi-streams local-time proc-parse quri smart-buffer split-sequence 49 - static-vectors trivial-features trivial-garbage trivial-gray-streams 50 - trivial-mimes uiop usocket xsubseq) 51 - VERSION 20211209-git SIBLINGS (dexador-test) PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dfio.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dfio"; 5 - version = "20210411-git"; 6 - 7 - description = "Common Lisp library for reading data from text files (eg CSV)."; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-csv" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."data-frame" args."flexi-streams" args."iterate" args."let-plus" args."named-readtables" args."num-utils" args."select" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/dfio/2021-04-11/dfio-20210411-git.tgz"; 13 - sha256 = "0r1ljv22mfjlp0khgfbmh9ajp9qmw8lqj2wl6k9abr5cc32vnmi5"; 14 - }; 15 - 16 - packageName = "dfio"; 17 - 18 - asdFilesToKeep = ["dfio.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dfio DESCRIPTION 22 - Common Lisp library for reading data from text files (eg CSV). SHA256 23 - 0r1ljv22mfjlp0khgfbmh9ajp9qmw8lqj2wl6k9abr5cc32vnmi5 URL 24 - http://beta.quicklisp.org/archive/dfio/2021-04-11/dfio-20210411-git.tgz MD5 25 - f8d9923e8c2fb095c7dbc1c9f6b68568 NAME dfio FILENAME dfio DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 27 - (NAME array-operations FILENAME array-operations) 28 - (NAME cl-csv FILENAME cl-csv) (NAME cl-interpol FILENAME cl-interpol) 29 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-unicode FILENAME cl-unicode) 30 - (NAME data-frame FILENAME data-frame) 31 - (NAME flexi-streams FILENAME flexi-streams) 32 - (NAME iterate FILENAME iterate) (NAME let-plus FILENAME let-plus) 33 - (NAME named-readtables FILENAME named-readtables) 34 - (NAME num-utils FILENAME num-utils) (NAME select FILENAME select)) 35 - DEPENDENCIES 36 - (alexandria anaphora array-operations cl-csv cl-interpol cl-ppcre 37 - cl-unicode data-frame flexi-streams iterate let-plus named-readtables 38 - num-utils select) 39 - VERSION 20210411-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/dissect.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "dissect"; 5 - version = "20210531-git"; 6 - 7 - description = "A lib for introspecting the call stack and active restarts."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/dissect/2021-05-31/dissect-20210531-git.tgz"; 13 - sha256 = "07f5sk2nvhj5jjrw5k561dfnwbjcaniqi2z7wgdrw8qb9h8kkkzk"; 14 - }; 15 - 16 - packageName = "dissect"; 17 - 18 - asdFilesToKeep = ["dissect.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM dissect DESCRIPTION 22 - A lib for introspecting the call stack and active restarts. SHA256 23 - 07f5sk2nvhj5jjrw5k561dfnwbjcaniqi2z7wgdrw8qb9h8kkkzk URL 24 - http://beta.quicklisp.org/archive/dissect/2021-05-31/dissect-20210531-git.tgz 25 - MD5 41dfb42dc93aa41d825c167fe173fa89 NAME dissect FILENAME dissect DEPS NIL 26 - DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL PARASITES NIL) */
-54
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/djula.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "djula"; 5 - version = "20211209-git"; 6 - 7 - description = "An implementation of Django templates for Common Lisp."; 8 - 9 - deps = [ args."access" args."alexandria" args."anaphora" args."arnesi" args."babel" args."cl-annot" args."cl-interpol" args."cl-locale" args."cl-ppcre" args."cl-slice" args."cl-syntax" args."cl-syntax-annot" args."cl-unicode" args."closer-mop" args."collectors" args."flexi-streams" args."gettext" args."iterate" args."let-plus" args."local-time" args."named-readtables" args."parser-combinators" args."split-sequence" args."symbol-munger" args."trivial-backtrace" args."trivial-features" args."trivial-gray-streams" args."trivial-types" args."yacc" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/djula/2021-12-09/djula-20211209-git.tgz"; 13 - sha256 = "0csr3c12wf1qcwwfabgz9rvkramj74l15cwj8c01pmcraly8cya7"; 14 - }; 15 - 16 - packageName = "djula"; 17 - 18 - asdFilesToKeep = ["djula.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM djula DESCRIPTION 22 - An implementation of Django templates for Common Lisp. SHA256 23 - 0csr3c12wf1qcwwfabgz9rvkramj74l15cwj8c01pmcraly8cya7 URL 24 - http://beta.quicklisp.org/archive/djula/2021-12-09/djula-20211209-git.tgz 25 - MD5 f7cb3581b5eb40c8609e90cdf87a2a06 NAME djula FILENAME djula DEPS 26 - ((NAME access FILENAME access) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arnesi FILENAME arnesi) 28 - (NAME babel FILENAME babel) (NAME cl-annot FILENAME cl-annot) 29 - (NAME cl-interpol FILENAME cl-interpol) 30 - (NAME cl-locale FILENAME cl-locale) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME cl-slice FILENAME cl-slice) (NAME cl-syntax FILENAME cl-syntax) 32 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 33 - (NAME cl-unicode FILENAME cl-unicode) 34 - (NAME closer-mop FILENAME closer-mop) 35 - (NAME collectors FILENAME collectors) 36 - (NAME flexi-streams FILENAME flexi-streams) 37 - (NAME gettext FILENAME gettext) (NAME iterate FILENAME iterate) 38 - (NAME let-plus FILENAME let-plus) (NAME local-time FILENAME local-time) 39 - (NAME named-readtables FILENAME named-readtables) 40 - (NAME parser-combinators FILENAME parser-combinators) 41 - (NAME split-sequence FILENAME split-sequence) 42 - (NAME symbol-munger FILENAME symbol-munger) 43 - (NAME trivial-backtrace FILENAME trivial-backtrace) 44 - (NAME trivial-features FILENAME trivial-features) 45 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 46 - (NAME trivial-types FILENAME trivial-types) (NAME yacc FILENAME yacc)) 47 - DEPENDENCIES 48 - (access alexandria anaphora arnesi babel cl-annot cl-interpol cl-locale 49 - cl-ppcre cl-slice cl-syntax cl-syntax-annot cl-unicode closer-mop 50 - collectors flexi-streams gettext iterate let-plus local-time 51 - named-readtables parser-combinators split-sequence symbol-munger 52 - trivial-backtrace trivial-features trivial-gray-streams trivial-types 53 - yacc) 54 - VERSION 20211209-git SIBLINGS (djula-demo djula-test) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/do-urlencode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "do-urlencode"; 5 - version = "20181018-git"; 6 - 7 - description = "Percent Encoding (aka URL Encoding) library"; 8 - 9 - deps = [ args."alexandria" args."babel" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz"; 13 - sha256 = "1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2"; 14 - }; 15 - 16 - packageName = "do-urlencode"; 17 - 18 - asdFilesToKeep = ["do-urlencode.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM do-urlencode DESCRIPTION Percent Encoding (aka URL Encoding) library 22 - SHA256 1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2 URL 23 - http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz 24 - MD5 cb6ab78689fe52680ee1b94cd7738b94 NAME do-urlencode FILENAME 25 - do-urlencode DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME trivial-features FILENAME trivial-features)) 28 - DEPENDENCIES (alexandria babel trivial-features) VERSION 20181018-git 29 - SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/documentation-utils.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "documentation-utils"; 5 - version = "20190710-git"; 6 - 7 - description = "A few simple tools to help you with documenting your library."; 8 - 9 - deps = [ args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz"; 13 - sha256 = "1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3"; 14 - }; 15 - 16 - packageName = "documentation-utils"; 17 - 18 - asdFilesToKeep = ["documentation-utils.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM documentation-utils DESCRIPTION 22 - A few simple tools to help you with documenting your library. SHA256 23 - 1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3 URL 24 - http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz 25 - MD5 4f45f511ac55008b8b8aa04f7feaa2d4 NAME documentation-utils FILENAME 26 - documentation-utils DEPS ((NAME trivial-indent FILENAME trivial-indent)) 27 - DEPENDENCIES (trivial-indent) VERSION 20190710-git SIBLINGS 28 - (multilang-documentation-utils) PARASITES NIL) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/drakma.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "drakma"; 5 - version = "v2.0.8"; 6 - 7 - description = "Full-featured http/https client based on usocket"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-ppcre" args."flexi-streams" args."puri" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/drakma/2021-08-07/drakma-v2.0.8.tgz"; 13 - sha256 = "07rig1649yxs0n03y2dc9is6cp9lxlyzqlhsb8g02ds8g86czdjf"; 14 - }; 15 - 16 - packageName = "drakma"; 17 - 18 - asdFilesToKeep = ["drakma.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM drakma DESCRIPTION Full-featured http/https client based on usocket 22 - SHA256 07rig1649yxs0n03y2dc9is6cp9lxlyzqlhsb8g02ds8g86czdjf URL 23 - http://beta.quicklisp.org/archive/drakma/2021-08-07/drakma-v2.0.8.tgz MD5 24 - 948225b3183ab3d46b641ccda3c5fc54 NAME drakma FILENAME drakma DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME chipz FILENAME chipz) 28 - (NAME chunga FILENAME chunga) (NAME cl+ssl FILENAME cl_plus_ssl) 29 - (NAME cl-base64 FILENAME cl-base64) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME flexi-streams FILENAME flexi-streams) (NAME puri FILENAME puri) 31 - (NAME split-sequence FILENAME split-sequence) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-garbage FILENAME trivial-garbage) 34 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 35 - (NAME usocket FILENAME usocket)) 36 - DEPENDENCIES 37 - (alexandria babel bordeaux-threads cffi chipz chunga cl+ssl cl-base64 38 - cl-ppcre flexi-streams puri split-sequence trivial-features 39 - trivial-garbage trivial-gray-streams usocket) 40 - VERSION v2.0.8 SIBLINGS (drakma-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/eager-future2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "eager-future2"; 5 - version = "20191130-git"; 6 - 7 - description = "Parallel programming library providing the futures/promises synchronization mechanism"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."trivial-garbage" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/eager-future2/2019-11-30/eager-future2-20191130-git.tgz"; 13 - sha256 = "01pvgcp6d4hz1arpvsv73m8xnbv8qm2d0qychpxc72d0m71p6ks0"; 14 - }; 15 - 16 - packageName = "eager-future2"; 17 - 18 - asdFilesToKeep = ["eager-future2.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM eager-future2 DESCRIPTION 22 - Parallel programming library providing the futures/promises synchronization mechanism 23 - SHA256 01pvgcp6d4hz1arpvsv73m8xnbv8qm2d0qychpxc72d0m71p6ks0 URL 24 - http://beta.quicklisp.org/archive/eager-future2/2019-11-30/eager-future2-20191130-git.tgz 25 - MD5 72298620b0fb2f874d86d887cce4acf0 NAME eager-future2 FILENAME 26 - eager-future2 DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME trivial-garbage FILENAME trivial-garbage)) 30 - DEPENDENCIES (alexandria bordeaux-threads trivial-garbage) VERSION 31 - 20191130-git SIBLINGS (test.eager-future2) PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/enchant.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "enchant"; 5 - version = "cl-20211209-git"; 6 - 7 - description = "Programming interface for Enchant spell-checker library"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-enchant/2021-12-09/cl-enchant-20211209-git.tgz"; 13 - sha256 = "1j9qliyxfjfz4bbc6snysccnmmk2d2y8kb613rna239dh5g6c03c"; 14 - }; 15 - 16 - packageName = "enchant"; 17 - 18 - asdFilesToKeep = ["enchant.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM enchant DESCRIPTION 22 - Programming interface for Enchant spell-checker library SHA256 23 - 1j9qliyxfjfz4bbc6snysccnmmk2d2y8kb613rna239dh5g6c03c URL 24 - http://beta.quicklisp.org/archive/cl-enchant/2021-12-09/cl-enchant-20211209-git.tgz 25 - MD5 c12162b3a7c383815ff77c96aca0c11f NAME enchant FILENAME enchant DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES (alexandria babel cffi trivial-features) VERSION 30 - cl-20211209-git SIBLINGS (enchant-autoload) PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/esrap-peg.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "esrap-peg"; 5 - version = "20191007-git"; 6 - 7 - description = "A wrapper around Esrap to allow generating Esrap grammars from PEG definitions"; 8 - 9 - deps = [ args."alexandria" args."cl-unification" args."esrap" args."iterate" args."trivial-with-current-source-form" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz"; 13 - sha256 = "0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis"; 14 - }; 15 - 16 - packageName = "esrap-peg"; 17 - 18 - asdFilesToKeep = ["esrap-peg.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM esrap-peg DESCRIPTION 22 - A wrapper around Esrap to allow generating Esrap grammars from PEG definitions 23 - SHA256 0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis URL 24 - http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz 25 - MD5 48d87d3118febeefc23ca3a8dda36fc0 NAME esrap-peg FILENAME esrap-peg DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME cl-unification FILENAME cl-unification) (NAME esrap FILENAME esrap) 28 - (NAME iterate FILENAME iterate) 29 - (NAME trivial-with-current-source-form FILENAME 30 - trivial-with-current-source-form)) 31 - DEPENDENCIES 32 - (alexandria cl-unification esrap iterate trivial-with-current-source-form) 33 - VERSION 20191007-git SIBLINGS NIL PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/esrap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "esrap"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "esrap/tests" ]; 8 - 9 - description = "A Packrat / Parsing Grammar / TDPL parser for Common Lisp."; 10 - 11 - deps = [ args."alexandria" args."fiveam" args."trivial-with-current-source-form" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/esrap/2021-10-20/esrap-20211020-git.tgz"; 15 - sha256 = "06cqvalqsid82an8c4acbf13y65gw8nb4pckm8gv8fknvh4k1x7h"; 16 - }; 17 - 18 - packageName = "esrap"; 19 - 20 - asdFilesToKeep = ["esrap.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM esrap DESCRIPTION 24 - A Packrat / Parsing Grammar / TDPL parser for Common Lisp. SHA256 25 - 06cqvalqsid82an8c4acbf13y65gw8nb4pckm8gv8fknvh4k1x7h URL 26 - http://beta.quicklisp.org/archive/esrap/2021-10-20/esrap-20211020-git.tgz 27 - MD5 9657755b3fe896c1252dc7fdd22320b7 NAME esrap FILENAME esrap DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME fiveam FILENAME fiveam) 29 - (NAME trivial-with-current-source-form FILENAME 30 - trivial-with-current-source-form)) 31 - DEPENDENCIES (alexandria fiveam trivial-with-current-source-form) VERSION 32 - 20211020-git SIBLINGS NIL PARASITES (esrap/tests)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/external-program.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "external-program"; 5 - version = "20190307-git"; 6 - 7 - parasites = [ "external-program-test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."fiveam" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz"; 15 - sha256 = "1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz"; 16 - }; 17 - 18 - packageName = "external-program"; 19 - 20 - asdFilesToKeep = ["external-program.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM external-program DESCRIPTION System lacks description SHA256 24 - 1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz URL 25 - http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz 26 - MD5 b30fe104c34059506fd4c493fa79fe1a NAME external-program FILENAME 27 - external-program DEPS 28 - ((NAME fiveam FILENAME fiveam) 29 - (NAME trivial-features FILENAME trivial-features)) 30 - DEPENDENCIES (fiveam trivial-features) VERSION 20190307-git SIBLINGS NIL 31 - PARASITES (external-program-test)) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-csv.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-csv"; 5 - version = "20171227-git"; 6 - 7 - description = "Robust CSV parser and printer"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz"; 13 - sha256 = "1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x"; 14 - }; 15 - 16 - packageName = "fare-csv"; 17 - 18 - asdFilesToKeep = ["fare-csv.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-csv DESCRIPTION Robust CSV parser and printer SHA256 22 - 1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x URL 23 - http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz 24 - MD5 1d73aaac9fcd86cc5ddb72019722bc2a NAME fare-csv FILENAME fare-csv DEPS 25 - NIL DEPENDENCIES NIL VERSION 20171227-git SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-mop.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-mop"; 5 - version = "20151218-git"; 6 - 7 - description = "Utilities using the MOP; notably make informative pretty-printing trivial"; 8 - 9 - deps = [ args."closer-mop" args."fare-utils" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz"; 13 - sha256 = "0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9"; 14 - }; 15 - 16 - packageName = "fare-mop"; 17 - 18 - asdFilesToKeep = ["fare-mop.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-mop DESCRIPTION 22 - Utilities using the MOP; notably make informative pretty-printing trivial 23 - SHA256 0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9 URL 24 - http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz 25 - MD5 4721ff62e2ac2c55079cdd4f2a0f6d4a NAME fare-mop FILENAME fare-mop DEPS 26 - ((NAME closer-mop FILENAME closer-mop) 27 - (NAME fare-utils FILENAME fare-utils)) 28 - DEPENDENCIES (closer-mop fare-utils) VERSION 20151218-git SIBLINGS NIL 29 - PARASITES NIL) */
-47
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-quasiquote-extras.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-quasiquote-extras"; 5 - version = "fare-quasiquote-20200925-git"; 6 - 7 - description = "fare-quasiquote plus extras"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 - sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 14 - }; 15 - 16 - packageName = "fare-quasiquote-extras"; 17 - 18 - asdFilesToKeep = ["fare-quasiquote-extras.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-quasiquote-extras DESCRIPTION fare-quasiquote plus extras 22 - SHA256 0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b URL 23 - http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz 24 - MD5 7af0a97c445d88acacecfc851496adb3 NAME fare-quasiquote-extras FILENAME 25 - fare-quasiquote-extras DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME closer-mop FILENAME closer-mop) 28 - (NAME fare-quasiquote FILENAME fare-quasiquote) 29 - (NAME fare-quasiquote-optima FILENAME fare-quasiquote-optima) 30 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 31 - (NAME fare-utils FILENAME fare-utils) 32 - (NAME lisp-namespace FILENAME lisp-namespace) 33 - (NAME named-readtables FILENAME named-readtables) 34 - (NAME trivia.level0 FILENAME trivia_dot_level0) 35 - (NAME trivia.level1 FILENAME trivia_dot_level1) 36 - (NAME trivia.level2 FILENAME trivia_dot_level2) 37 - (NAME trivia.quasiquote FILENAME trivia_dot_quasiquote) 38 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 39 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 40 - DEPENDENCIES 41 - (alexandria closer-mop fare-quasiquote fare-quasiquote-optima 42 - fare-quasiquote-readtable fare-utils lisp-namespace named-readtables 43 - trivia.level0 trivia.level1 trivia.level2 trivia.quasiquote trivia.trivial 44 - trivial-cltl2) 45 - VERSION fare-quasiquote-20200925-git SIBLINGS 46 - (fare-quasiquote-optima fare-quasiquote-readtable fare-quasiquote) 47 - PARASITES NIL) */
-46
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-quasiquote-optima.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-quasiquote-optima"; 5 - version = "fare-quasiquote-20200925-git"; 6 - 7 - description = "fare-quasiquote extension for optima"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 - sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 14 - }; 15 - 16 - packageName = "fare-quasiquote-optima"; 17 - 18 - asdFilesToKeep = ["fare-quasiquote-optima.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-quasiquote-optima DESCRIPTION 22 - fare-quasiquote extension for optima SHA256 23 - 0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b URL 24 - http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz 25 - MD5 7af0a97c445d88acacecfc851496adb3 NAME fare-quasiquote-optima FILENAME 26 - fare-quasiquote-optima DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME closer-mop FILENAME closer-mop) 29 - (NAME fare-quasiquote FILENAME fare-quasiquote) 30 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 31 - (NAME fare-utils FILENAME fare-utils) 32 - (NAME lisp-namespace FILENAME lisp-namespace) 33 - (NAME named-readtables FILENAME named-readtables) 34 - (NAME trivia.level0 FILENAME trivia_dot_level0) 35 - (NAME trivia.level1 FILENAME trivia_dot_level1) 36 - (NAME trivia.level2 FILENAME trivia_dot_level2) 37 - (NAME trivia.quasiquote FILENAME trivia_dot_quasiquote) 38 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 39 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 40 - DEPENDENCIES 41 - (alexandria closer-mop fare-quasiquote fare-quasiquote-readtable fare-utils 42 - lisp-namespace named-readtables trivia.level0 trivia.level1 trivia.level2 43 - trivia.quasiquote trivia.trivial trivial-cltl2) 44 - VERSION fare-quasiquote-20200925-git SIBLINGS 45 - (fare-quasiquote-extras fare-quasiquote-readtable fare-quasiquote) 46 - PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-quasiquote-readtable.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-quasiquote-readtable"; 5 - version = "fare-quasiquote-20200925-git"; 6 - 7 - description = "Using fare-quasiquote with named-readtable"; 8 - 9 - deps = [ args."fare-quasiquote" args."fare-utils" args."named-readtables" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 - sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 14 - }; 15 - 16 - packageName = "fare-quasiquote-readtable"; 17 - 18 - asdFilesToKeep = ["fare-quasiquote-readtable.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-quasiquote-readtable DESCRIPTION 22 - Using fare-quasiquote with named-readtable SHA256 23 - 0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b URL 24 - http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz 25 - MD5 7af0a97c445d88acacecfc851496adb3 NAME fare-quasiquote-readtable 26 - FILENAME fare-quasiquote-readtable DEPS 27 - ((NAME fare-quasiquote FILENAME fare-quasiquote) 28 - (NAME fare-utils FILENAME fare-utils) 29 - (NAME named-readtables FILENAME named-readtables)) 30 - DEPENDENCIES (fare-quasiquote fare-utils named-readtables) VERSION 31 - fare-quasiquote-20200925-git SIBLINGS 32 - (fare-quasiquote-extras fare-quasiquote-optima fare-quasiquote) PARASITES 33 - NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-quasiquote.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-quasiquote"; 5 - version = "20200925-git"; 6 - 7 - description = "Portable, matchable implementation of quasiquote"; 8 - 9 - deps = [ args."fare-utils" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 - sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 14 - }; 15 - 16 - packageName = "fare-quasiquote"; 17 - 18 - asdFilesToKeep = ["fare-quasiquote.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-quasiquote DESCRIPTION 22 - Portable, matchable implementation of quasiquote SHA256 23 - 0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b URL 24 - http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz 25 - MD5 7af0a97c445d88acacecfc851496adb3 NAME fare-quasiquote FILENAME 26 - fare-quasiquote DEPS ((NAME fare-utils FILENAME fare-utils)) DEPENDENCIES 27 - (fare-utils) VERSION 20200925-git SIBLINGS 28 - (fare-quasiquote-extras fare-quasiquote-optima fare-quasiquote-readtable) 29 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fare-utils.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fare-utils"; 5 - version = "20170124-git"; 6 - 7 - description = "Basic functions and macros, interfaces, pure and stateful datastructures"; 8 - 9 - deps = [ args."asdf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz"; 13 - sha256 = "0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq"; 14 - }; 15 - 16 - packageName = "fare-utils"; 17 - 18 - asdFilesToKeep = ["fare-utils.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fare-utils DESCRIPTION 22 - Basic functions and macros, interfaces, pure and stateful datastructures 23 - SHA256 0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq URL 24 - http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz 25 - MD5 6752362d0c7c03df6576ab2dbe807ee2 NAME fare-utils FILENAME fare-utils 26 - DEPS ((NAME asdf FILENAME asdf)) DEPENDENCIES (asdf) VERSION 20170124-git 27 - SIBLINGS (fare-utils-test) PARASITES NIL) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fast-http.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fast-http"; 5 - version = "20191007-git"; 6 - 7 - description = "A fast HTTP protocol parser in Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cl-utilities" args."flexi-streams" args."proc-parse" args."smart-buffer" args."trivial-features" args."trivial-gray-streams" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz"; 13 - sha256 = "00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32"; 14 - }; 15 - 16 - packageName = "fast-http"; 17 - 18 - asdFilesToKeep = ["fast-http.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fast-http DESCRIPTION A fast HTTP protocol parser in Common Lisp 22 - SHA256 00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32 URL 23 - http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz 24 - MD5 fd43be4dd72fd9bda5a3ecce87104c97 NAME fast-http FILENAME fast-http DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cl-utilities FILENAME cl-utilities) 27 - (NAME flexi-streams FILENAME flexi-streams) 28 - (NAME proc-parse FILENAME proc-parse) 29 - (NAME smart-buffer FILENAME smart-buffer) 30 - (NAME trivial-features FILENAME trivial-features) 31 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 32 - (NAME xsubseq FILENAME xsubseq)) 33 - DEPENDENCIES 34 - (alexandria babel cl-utilities flexi-streams proc-parse smart-buffer 35 - trivial-features trivial-gray-streams xsubseq) 36 - VERSION 20191007-git SIBLINGS (fast-http-test) PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fast-io.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fast-io"; 5 - version = "20200925-git"; 6 - 7 - description = "Alternative I/O mechanism to a stream or vector"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz"; 13 - sha256 = "1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975"; 14 - }; 15 - 16 - packageName = "fast-io"; 17 - 18 - asdFilesToKeep = ["fast-io.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fast-io DESCRIPTION Alternative I/O mechanism to a stream or vector 22 - SHA256 1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975 URL 23 - http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz 24 - MD5 aa948bd29b8733f08e79a60226243117 NAME fast-io FILENAME fast-io DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 27 - (NAME cffi-toolchain FILENAME cffi-toolchain) 28 - (NAME static-vectors FILENAME static-vectors) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 31 - DEPENDENCIES 32 - (alexandria babel cffi cffi-grovel cffi-toolchain static-vectors 33 - trivial-features trivial-gray-streams) 34 - VERSION 20200925-git SIBLINGS (fast-io-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fiasco.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fiasco"; 5 - version = "20200610-git"; 6 - 7 - parasites = [ "fiasco-self-tests" ]; 8 - 9 - description = "A Common Lisp test framework that treasures your failures, logical continuation of Stefil."; 10 - 11 - deps = [ args."alexandria" args."trivial-gray-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz"; 15 - sha256 = "1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4"; 16 - }; 17 - 18 - packageName = "fiasco"; 19 - 20 - asdFilesToKeep = ["fiasco.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM fiasco DESCRIPTION 24 - A Common Lisp test framework that treasures your failures, logical continuation of Stefil. 25 - SHA256 1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4 URL 26 - http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz 27 - MD5 c5a84e4a0a8afe45729cd6e39af772ac NAME fiasco FILENAME fiasco DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 30 - DEPENDENCIES (alexandria trivial-gray-streams) VERSION 20200610-git 31 - SIBLINGS NIL PARASITES (fiasco-self-tests)) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/file-attributes.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "file-attributes"; 5 - version = "20210807-git"; 6 - 7 - description = "Access to file attributes (uid, gid, atime, mtime, mod)"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."documentation-utils" args."trivial-features" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/file-attributes/2021-08-07/file-attributes-20210807-git.tgz"; 13 - sha256 = "0f2kr886jn83hlsk6a548cd0vdq4f1dsxscnslni0nhlxsbi1gsg"; 14 - }; 15 - 16 - packageName = "file-attributes"; 17 - 18 - asdFilesToKeep = ["file-attributes.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM file-attributes DESCRIPTION 22 - Access to file attributes (uid, gid, atime, mtime, mod) SHA256 23 - 0f2kr886jn83hlsk6a548cd0vdq4f1dsxscnslni0nhlxsbi1gsg URL 24 - http://beta.quicklisp.org/archive/file-attributes/2021-08-07/file-attributes-20210807-git.tgz 25 - MD5 ba0c3667061d97674f5b1666bcbc8506 NAME file-attributes FILENAME 26 - file-attributes DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cffi FILENAME cffi) 29 - (NAME documentation-utils FILENAME documentation-utils) 30 - (NAME trivial-features FILENAME trivial-features) 31 - (NAME trivial-indent FILENAME trivial-indent)) 32 - DEPENDENCIES 33 - (alexandria babel cffi documentation-utils trivial-features trivial-indent) 34 - VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fiveam.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fiveam"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "fiveam/test" ]; 8 - 9 - description = "A simple regression testing framework"; 10 - 11 - deps = [ args."alexandria" args."net_dot_didierverna_dot_asdf-flv" args."trivial-backtrace" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/fiveam/2021-12-09/fiveam-20211209-git.tgz"; 15 - sha256 = "0kyyr2dlgpzkn2cw9i4fwyip1d1la4cbv8l4b8jz31f5c1p76ab7"; 16 - }; 17 - 18 - packageName = "fiveam"; 19 - 20 - asdFilesToKeep = ["fiveam.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM fiveam DESCRIPTION A simple regression testing framework SHA256 24 - 0kyyr2dlgpzkn2cw9i4fwyip1d1la4cbv8l4b8jz31f5c1p76ab7 URL 25 - http://beta.quicklisp.org/archive/fiveam/2021-12-09/fiveam-20211209-git.tgz 26 - MD5 10d6a5a19f47ed94cbd9edf1d4c20933 NAME fiveam FILENAME fiveam DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME net.didierverna.asdf-flv FILENAME net_dot_didierverna_dot_asdf-flv) 29 - (NAME trivial-backtrace FILENAME trivial-backtrace)) 30 - DEPENDENCIES (alexandria net.didierverna.asdf-flv trivial-backtrace) 31 - VERSION 20211209-git SIBLINGS NIL PARASITES (fiveam/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/flexi-streams.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "flexi-streams"; 5 - version = "20210807-git"; 6 - 7 - parasites = [ "flexi-streams-test" ]; 8 - 9 - description = "Flexible bivalent streams for Common Lisp"; 10 - 11 - deps = [ args."trivial-gray-streams" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/flexi-streams/2021-08-07/flexi-streams-20210807-git.tgz"; 15 - sha256 = "1g2cvz0bjigr6lw3gigdwcm1x1w0pcyr3ainnix9wyp1kxc2n2rw"; 16 - }; 17 - 18 - packageName = "flexi-streams"; 19 - 20 - asdFilesToKeep = ["flexi-streams.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM flexi-streams DESCRIPTION Flexible bivalent streams for Common Lisp 24 - SHA256 1g2cvz0bjigr6lw3gigdwcm1x1w0pcyr3ainnix9wyp1kxc2n2rw URL 25 - http://beta.quicklisp.org/archive/flexi-streams/2021-08-07/flexi-streams-20210807-git.tgz 26 - MD5 6c026daab0766c11f5aee9cc3df3394e NAME flexi-streams FILENAME 27 - flexi-streams DEPS 28 - ((NAME trivial-gray-streams FILENAME trivial-gray-streams)) DEPENDENCIES 29 - (trivial-gray-streams) VERSION 20210807-git SIBLINGS NIL PARASITES 30 - (flexi-streams-test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/float-features.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "float-features"; 5 - version = "20210228-git"; 6 - 7 - description = "A portability library for IEEE float features not covered by the CL standard."; 8 - 9 - deps = [ args."documentation-utils" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/float-features/2021-02-28/float-features-20210228-git.tgz"; 13 - sha256 = "1giy9qm9bgdfp1mm4d36fcj544kfq68qckmijlrhwbvkpk18hgrd"; 14 - }; 15 - 16 - packageName = "float-features"; 17 - 18 - asdFilesToKeep = ["float-features.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM float-features DESCRIPTION 22 - A portability library for IEEE float features not covered by the CL standard. 23 - SHA256 1giy9qm9bgdfp1mm4d36fcj544kfq68qckmijlrhwbvkpk18hgrd URL 24 - http://beta.quicklisp.org/archive/float-features/2021-02-28/float-features-20210228-git.tgz 25 - MD5 77223b9c85dca49d0f599e51ba95953a NAME float-features FILENAME 26 - float-features DEPS 27 - ((NAME documentation-utils FILENAME documentation-utils) 28 - (NAME trivial-indent FILENAME trivial-indent)) 29 - DEPENDENCIES (documentation-utils trivial-indent) VERSION 20210228-git 30 - SIBLINGS (float-features-tests) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/flow.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "flow"; 5 - version = "20200610-git"; 6 - 7 - description = "A flowchart and generalised graph library."; 8 - 9 - deps = [ args."closer-mop" args."documentation-utils" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/flow/2020-06-10/flow-20200610-git.tgz"; 13 - sha256 = "1z1krk1iiz7n1mvpnmqnrgfhicpppb45i0jgkqnrds749xjnx194"; 14 - }; 15 - 16 - packageName = "flow"; 17 - 18 - asdFilesToKeep = ["flow.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM flow DESCRIPTION A flowchart and generalised graph library. SHA256 22 - 1z1krk1iiz7n1mvpnmqnrgfhicpppb45i0jgkqnrds749xjnx194 URL 23 - http://beta.quicklisp.org/archive/flow/2020-06-10/flow-20200610-git.tgz MD5 24 - f0767467d5e9bfda6fe5777a26719811 NAME flow FILENAME flow DEPS 25 - ((NAME closer-mop FILENAME closer-mop) 26 - (NAME documentation-utils FILENAME documentation-utils) 27 - (NAME trivial-indent FILENAME trivial-indent)) 28 - DEPENDENCIES (closer-mop documentation-utils trivial-indent) VERSION 29 - 20200610-git SIBLINGS (flow-visualizer) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fn.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fn"; 5 - version = "20171019-git"; 6 - 7 - description = "Some macros for lambda brevity"; 8 - 9 - deps = [ args."named-readtables" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz"; 13 - sha256 = "0r062ffn31sc7313xlfaa9pwnf2wdkiq4spqlr1lk5r8isvdnzz8"; 14 - }; 15 - 16 - packageName = "fn"; 17 - 18 - asdFilesToKeep = ["fn.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM fn DESCRIPTION Some macros for lambda brevity SHA256 22 - 0r062ffn31sc7313xlfaa9pwnf2wdkiq4spqlr1lk5r8isvdnzz8 URL 23 - http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz MD5 24 - 0e1cfe5f19ceec8966baa3037772d31e NAME fn FILENAME fn DEPS 25 - ((NAME named-readtables FILENAME named-readtables)) DEPENDENCIES 26 - (named-readtables) VERSION 20171019-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/form-fiddle.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "form-fiddle"; 5 - version = "20190710-git"; 6 - 7 - description = "A collection of utilities to destructure lambda forms."; 8 - 9 - deps = [ args."documentation-utils" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz"; 13 - sha256 = "12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl"; 14 - }; 15 - 16 - packageName = "form-fiddle"; 17 - 18 - asdFilesToKeep = ["form-fiddle.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM form-fiddle DESCRIPTION 22 - A collection of utilities to destructure lambda forms. SHA256 23 - 12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl URL 24 - http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz 25 - MD5 2576065de1e3c95751285fb155f5bcf6 NAME form-fiddle FILENAME form-fiddle 26 - DEPS 27 - ((NAME documentation-utils FILENAME documentation-utils) 28 - (NAME trivial-indent FILENAME trivial-indent)) 29 - DEPENDENCIES (documentation-utils trivial-indent) VERSION 20190710-git 30 - SIBLINGS NIL PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/fset.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "fset"; 5 - version = "20200925-git"; 6 - 7 - parasites = [ "fset/test" ]; 8 - 9 - description = "A functional set-theoretic collections library. 10 - See: http://www.ergy.com/FSet.html 11 - "; 12 - 13 - deps = [ args."misc-extensions" args."mt19937" args."named-readtables" ]; 14 - 15 - src = fetchurl { 16 - url = "http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz"; 17 - sha256 = "19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv"; 18 - }; 19 - 20 - packageName = "fset"; 21 - 22 - asdFilesToKeep = ["fset.asd"]; 23 - overrides = x: x; 24 - } 25 - /* (SYSTEM fset DESCRIPTION A functional set-theoretic collections library. 26 - See: http://www.ergy.com/FSet.html 27 - 28 - SHA256 19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv URL 29 - http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz MD5 30 - 481e7207099c061459db68813e7bf70c NAME fset FILENAME fset DEPS 31 - ((NAME misc-extensions FILENAME misc-extensions) 32 - (NAME mt19937 FILENAME mt19937) 33 - (NAME named-readtables FILENAME named-readtables)) 34 - DEPENDENCIES (misc-extensions mt19937 named-readtables) VERSION 35 - 20200925-git SIBLINGS NIL PARASITES (fset/test)) */
-76
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "generic-cl/test" ]; 8 - 9 - description = "Standard Common Lisp functions implemented using generic functions."; 10 - 11 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."fiveam" args."generic-cl_dot_arithmetic" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_lazy-seq" args."generic-cl_dot_map" args."generic-cl_dot_math" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."generic-cl_dot_set" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 15 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 16 - }; 17 - 18 - packageName = "generic-cl"; 19 - 20 - asdFilesToKeep = ["generic-cl.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM generic-cl DESCRIPTION 24 - Standard Common Lisp functions implemented using generic functions. SHA256 25 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 26 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 27 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl FILENAME generic-cl 28 - DEPS 29 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 30 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 31 - (NAME cl-custom-hash-table FILENAME cl-custom-hash-table) 32 - (NAME cl-environments FILENAME cl-environments) 33 - (NAME cl-form-types FILENAME cl-form-types) 34 - (NAME closer-mop FILENAME closer-mop) 35 - (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam) 36 - (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic) 37 - (NAME generic-cl.collector FILENAME generic-cl_dot_collector) 38 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 39 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 40 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 41 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 42 - (NAME generic-cl.lazy-seq FILENAME generic-cl_dot_lazy-seq) 43 - (NAME generic-cl.map FILENAME generic-cl_dot_map) 44 - (NAME generic-cl.math FILENAME generic-cl_dot_math) 45 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 46 - (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence) 47 - (NAME generic-cl.set FILENAME generic-cl_dot_set) 48 - (NAME introspect-environment FILENAME introspect-environment) 49 - (NAME iterate FILENAME iterate) 50 - (NAME lisp-namespace FILENAME lisp-namespace) 51 - (NAME optima FILENAME optima) 52 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 53 - (NAME static-dispatch FILENAME static-dispatch) 54 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 55 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 56 - (NAME trivia.level0 FILENAME trivia_dot_level0) 57 - (NAME trivia.level1 FILENAME trivia_dot_level1) 58 - (NAME trivia.level2 FILENAME trivia_dot_level2) 59 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 60 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 61 - DEPENDENCIES 62 - (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments 63 - cl-form-types closer-mop collectors fiveam generic-cl.arithmetic 64 - generic-cl.collector generic-cl.comparison generic-cl.container 65 - generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map 66 - generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set 67 - introspect-environment iterate lisp-namespace optima 68 - parse-declarations-1.0 static-dispatch symbol-munger trivia 69 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 70 - trivia.trivial trivial-cltl2 type-i) 71 - VERSION 20211020-git SIBLINGS 72 - (generic-cl.arithmetic generic-cl.collector generic-cl.comparison 73 - generic-cl.container generic-cl.internal generic-cl.iterator 74 - generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object 75 - generic-cl.sequence generic-cl.set generic-cl.util) 76 - PARASITES (generic-cl/test)) */
-60
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_arithmetic"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic arithmetic function interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.arithmetic"; 17 - 18 - asdFilesToKeep = ["generic-cl.arithmetic.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.arithmetic DESCRIPTION 22 - Generic arithmetic function interface SHA256 23 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 24 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 25 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.arithmetic FILENAME 26 - generic-cl_dot_arithmetic DEPS 27 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 28 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 34 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) 37 - (NAME lisp-namespace FILENAME lisp-namespace) 38 - (NAME optima FILENAME optima) 39 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 40 - (NAME static-dispatch FILENAME static-dispatch) 41 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 47 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 48 - DEPENDENCIES 49 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 50 - collectors generic-cl.comparison generic-cl.internal 51 - introspect-environment iterate lisp-namespace optima 52 - parse-declarations-1.0 static-dispatch symbol-munger trivia 53 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 54 - trivia.trivial trivial-cltl2 type-i) 55 - VERSION generic-cl-20211020-git SIBLINGS 56 - (generic-cl generic-cl.collector generic-cl.comparison generic-cl.container 57 - generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map 58 - generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set 59 - generic-cl.util) 60 - PARASITES NIL) */
-62
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_collector.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_collector"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic collector interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.collector"; 17 - 18 - asdFilesToKeep = ["generic-cl.collector.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.collector DESCRIPTION Generic collector interface SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.collector FILENAME 25 - generic-cl_dot_collector DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-environments FILENAME cl-environments) 29 - (NAME cl-form-types FILENAME cl-form-types) 30 - (NAME closer-mop FILENAME closer-mop) 31 - (NAME collectors FILENAME collectors) 32 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 33 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 34 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 35 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 36 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 37 - (NAME introspect-environment FILENAME introspect-environment) 38 - (NAME iterate FILENAME iterate) 39 - (NAME lisp-namespace FILENAME lisp-namespace) 40 - (NAME optima FILENAME optima) 41 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 42 - (NAME static-dispatch FILENAME static-dispatch) 43 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 44 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 45 - (NAME trivia.level0 FILENAME trivia_dot_level0) 46 - (NAME trivia.level1 FILENAME trivia_dot_level1) 47 - (NAME trivia.level2 FILENAME trivia_dot_level2) 48 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 49 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 50 - DEPENDENCIES 51 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 52 - collectors generic-cl.comparison generic-cl.container generic-cl.internal 53 - generic-cl.iterator generic-cl.object introspect-environment iterate 54 - lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger 55 - trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 56 - trivia.trivial trivial-cltl2 type-i) 57 - VERSION generic-cl-20211020-git SIBLINGS 58 - (generic-cl.arithmetic generic-cl generic-cl.comparison 59 - generic-cl.container generic-cl.internal generic-cl.iterator 60 - generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object 61 - generic-cl.sequence generic-cl.set generic-cl.util) 62 - PARASITES NIL) */
-57
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_comparison.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_comparison"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic comparison interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.comparison"; 17 - 18 - asdFilesToKeep = ["generic-cl.comparison.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.comparison DESCRIPTION Generic comparison interface 22 - SHA256 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.comparison FILENAME 25 - generic-cl_dot_comparison DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-environments FILENAME cl-environments) 29 - (NAME cl-form-types FILENAME cl-form-types) 30 - (NAME closer-mop FILENAME closer-mop) 31 - (NAME collectors FILENAME collectors) 32 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 33 - (NAME introspect-environment FILENAME introspect-environment) 34 - (NAME iterate FILENAME iterate) 35 - (NAME lisp-namespace FILENAME lisp-namespace) 36 - (NAME optima FILENAME optima) 37 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 38 - (NAME static-dispatch FILENAME static-dispatch) 39 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 40 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 41 - (NAME trivia.level0 FILENAME trivia_dot_level0) 42 - (NAME trivia.level1 FILENAME trivia_dot_level1) 43 - (NAME trivia.level2 FILENAME trivia_dot_level2) 44 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 45 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 46 - DEPENDENCIES 47 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 48 - collectors generic-cl.internal introspect-environment iterate 49 - lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger 50 - trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 51 - trivia.trivial trivial-cltl2 type-i) 52 - VERSION generic-cl-20211020-git SIBLINGS 53 - (generic-cl.arithmetic generic-cl generic-cl.collector generic-cl.container 54 - generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map 55 - generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set 56 - generic-cl.util) 57 - PARASITES NIL) */
-60
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_container.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_container"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic container interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.container"; 17 - 18 - asdFilesToKeep = ["generic-cl.container.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.container DESCRIPTION Generic container interface SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.container FILENAME 25 - generic-cl_dot_container DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-environments FILENAME cl-environments) 29 - (NAME cl-form-types FILENAME cl-form-types) 30 - (NAME closer-mop FILENAME closer-mop) 31 - (NAME collectors FILENAME collectors) 32 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 33 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 34 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) 37 - (NAME lisp-namespace FILENAME lisp-namespace) 38 - (NAME optima FILENAME optima) 39 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 40 - (NAME static-dispatch FILENAME static-dispatch) 41 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 47 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 48 - DEPENDENCIES 49 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 50 - collectors generic-cl.comparison generic-cl.internal generic-cl.object 51 - introspect-environment iterate lisp-namespace optima 52 - parse-declarations-1.0 static-dispatch symbol-munger trivia 53 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 54 - trivia.trivial trivial-cltl2 type-i) 55 - VERSION generic-cl-20211020-git SIBLINGS 56 - (generic-cl.arithmetic generic-cl generic-cl.collector 57 - generic-cl.comparison generic-cl.internal generic-cl.iterator 58 - generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object 59 - generic-cl.sequence generic-cl.set generic-cl.util) 60 - PARASITES NIL) */
-57
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_internal.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_internal"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Utilities used internally by generic-cl"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.internal"; 17 - 18 - asdFilesToKeep = ["generic-cl.internal.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.internal DESCRIPTION 22 - Utilities used internally by generic-cl SHA256 23 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 24 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 25 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.internal FILENAME 26 - generic-cl_dot_internal DEPS 27 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 28 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME introspect-environment FILENAME introspect-environment) 34 - (NAME iterate FILENAME iterate) 35 - (NAME lisp-namespace FILENAME lisp-namespace) 36 - (NAME optima FILENAME optima) 37 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 38 - (NAME static-dispatch FILENAME static-dispatch) 39 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 40 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 41 - (NAME trivia.level0 FILENAME trivia_dot_level0) 42 - (NAME trivia.level1 FILENAME trivia_dot_level1) 43 - (NAME trivia.level2 FILENAME trivia_dot_level2) 44 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 45 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 46 - DEPENDENCIES 47 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 48 - collectors introspect-environment iterate lisp-namespace optima 49 - parse-declarations-1.0 static-dispatch symbol-munger trivia 50 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 51 - trivia.trivial trivial-cltl2 type-i) 52 - VERSION generic-cl-20211020-git SIBLINGS 53 - (generic-cl.arithmetic generic-cl generic-cl.collector 54 - generic-cl.comparison generic-cl.container generic-cl.iterator 55 - generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object 56 - generic-cl.sequence generic-cl.set generic-cl.util) 57 - PARASITES NIL) */
-61
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_iterator.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_iterator"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic iterator interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.iterator"; 17 - 18 - asdFilesToKeep = ["generic-cl.iterator.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.iterator DESCRIPTION Generic iterator interface SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.iterator FILENAME 25 - generic-cl_dot_iterator DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-environments FILENAME cl-environments) 29 - (NAME cl-form-types FILENAME cl-form-types) 30 - (NAME closer-mop FILENAME closer-mop) 31 - (NAME collectors FILENAME collectors) 32 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 33 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 34 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 35 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 36 - (NAME introspect-environment FILENAME introspect-environment) 37 - (NAME iterate FILENAME iterate) 38 - (NAME lisp-namespace FILENAME lisp-namespace) 39 - (NAME optima FILENAME optima) 40 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 41 - (NAME static-dispatch FILENAME static-dispatch) 42 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 43 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 44 - (NAME trivia.level0 FILENAME trivia_dot_level0) 45 - (NAME trivia.level1 FILENAME trivia_dot_level1) 46 - (NAME trivia.level2 FILENAME trivia_dot_level2) 47 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 48 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 49 - DEPENDENCIES 50 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 51 - collectors generic-cl.comparison generic-cl.container generic-cl.internal 52 - generic-cl.object introspect-environment iterate lisp-namespace optima 53 - parse-declarations-1.0 static-dispatch symbol-munger trivia 54 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 55 - trivia.trivial trivial-cltl2 type-i) 56 - VERSION generic-cl-20211020-git SIBLINGS 57 - (generic-cl.arithmetic generic-cl generic-cl.collector 58 - generic-cl.comparison generic-cl.container generic-cl.internal 59 - generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object 60 - generic-cl.sequence generic-cl.set generic-cl.util) 61 - PARASITES NIL) */
-68
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_lazy-seq"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Lazy sequences"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.lazy-seq"; 17 - 18 - asdFilesToKeep = ["generic-cl.lazy-seq.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.lazy-seq DESCRIPTION Lazy sequences SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.lazy-seq FILENAME 25 - generic-cl_dot_lazy-seq DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-custom-hash-table FILENAME cl-custom-hash-table) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.collector FILENAME generic-cl_dot_collector) 34 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 35 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 36 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 37 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 38 - (NAME generic-cl.map FILENAME generic-cl_dot_map) 39 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 40 - (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence) 41 - (NAME introspect-environment FILENAME introspect-environment) 42 - (NAME iterate FILENAME iterate) 43 - (NAME lisp-namespace FILENAME lisp-namespace) 44 - (NAME optima FILENAME optima) 45 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 46 - (NAME static-dispatch FILENAME static-dispatch) 47 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 48 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 49 - (NAME trivia.level0 FILENAME trivia_dot_level0) 50 - (NAME trivia.level1 FILENAME trivia_dot_level1) 51 - (NAME trivia.level2 FILENAME trivia_dot_level2) 52 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 53 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 54 - DEPENDENCIES 55 - (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments 56 - cl-form-types closer-mop collectors generic-cl.collector 57 - generic-cl.comparison generic-cl.container generic-cl.internal 58 - generic-cl.iterator generic-cl.map generic-cl.object generic-cl.sequence 59 - introspect-environment iterate lisp-namespace optima 60 - parse-declarations-1.0 static-dispatch symbol-munger trivia 61 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 62 - trivia.trivial trivial-cltl2 type-i) 63 - VERSION generic-cl-20211020-git SIBLINGS 64 - (generic-cl.arithmetic generic-cl generic-cl.collector 65 - generic-cl.comparison generic-cl.container generic-cl.internal 66 - generic-cl.iterator generic-cl.map generic-cl.math generic-cl.object 67 - generic-cl.sequence generic-cl.set generic-cl.util) 68 - PARASITES NIL) */
-65
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_map.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_map"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic map and hash-table interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.map"; 17 - 18 - asdFilesToKeep = ["generic-cl.map.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.map DESCRIPTION Generic map and hash-table interface 22 - SHA256 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.map FILENAME 25 - generic-cl_dot_map DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-custom-hash-table FILENAME cl-custom-hash-table) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.collector FILENAME generic-cl_dot_collector) 34 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 35 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 36 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 37 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 38 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 39 - (NAME introspect-environment FILENAME introspect-environment) 40 - (NAME iterate FILENAME iterate) 41 - (NAME lisp-namespace FILENAME lisp-namespace) 42 - (NAME optima FILENAME optima) 43 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 44 - (NAME static-dispatch FILENAME static-dispatch) 45 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 46 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 47 - (NAME trivia.level0 FILENAME trivia_dot_level0) 48 - (NAME trivia.level1 FILENAME trivia_dot_level1) 49 - (NAME trivia.level2 FILENAME trivia_dot_level2) 50 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 51 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 52 - DEPENDENCIES 53 - (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments 54 - cl-form-types closer-mop collectors generic-cl.collector 55 - generic-cl.comparison generic-cl.container generic-cl.internal 56 - generic-cl.iterator generic-cl.object introspect-environment iterate 57 - lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger 58 - trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 59 - trivia.trivial trivial-cltl2 type-i) 60 - VERSION generic-cl-20211020-git SIBLINGS 61 - (generic-cl.arithmetic generic-cl generic-cl.collector 62 - generic-cl.comparison generic-cl.container generic-cl.internal 63 - generic-cl.iterator generic-cl.lazy-seq generic-cl.math generic-cl.object 64 - generic-cl.sequence generic-cl.set generic-cl.util) 65 - PARASITES NIL) */
-60
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_math.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_math"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic math function interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_arithmetic" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.math"; 17 - 18 - asdFilesToKeep = ["generic-cl.math.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.math DESCRIPTION Generic math function interface SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.math FILENAME 25 - generic-cl_dot_math DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-environments FILENAME cl-environments) 29 - (NAME cl-form-types FILENAME cl-form-types) 30 - (NAME closer-mop FILENAME closer-mop) 31 - (NAME collectors FILENAME collectors) 32 - (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic) 33 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 34 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) 37 - (NAME lisp-namespace FILENAME lisp-namespace) 38 - (NAME optima FILENAME optima) 39 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 40 - (NAME static-dispatch FILENAME static-dispatch) 41 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 47 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 48 - DEPENDENCIES 49 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 50 - collectors generic-cl.arithmetic generic-cl.comparison generic-cl.internal 51 - introspect-environment iterate lisp-namespace optima 52 - parse-declarations-1.0 static-dispatch symbol-munger trivia 53 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 54 - trivia.trivial trivial-cltl2 type-i) 55 - VERSION generic-cl-20211020-git SIBLINGS 56 - (generic-cl.arithmetic generic-cl generic-cl.collector 57 - generic-cl.comparison generic-cl.container generic-cl.internal 58 - generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.object 59 - generic-cl.sequence generic-cl.set generic-cl.util) 60 - PARASITES NIL) */
-60
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_object.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_object"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic object copying and type conversion interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.object"; 17 - 18 - asdFilesToKeep = ["generic-cl.object.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.object DESCRIPTION 22 - Generic object copying and type conversion interface SHA256 23 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 24 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 25 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.object FILENAME 26 - generic-cl_dot_object DEPS 27 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 28 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 34 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) 37 - (NAME lisp-namespace FILENAME lisp-namespace) 38 - (NAME optima FILENAME optima) 39 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 40 - (NAME static-dispatch FILENAME static-dispatch) 41 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 47 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 48 - DEPENDENCIES 49 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 50 - collectors generic-cl.comparison generic-cl.internal 51 - introspect-environment iterate lisp-namespace optima 52 - parse-declarations-1.0 static-dispatch symbol-munger trivia 53 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 54 - trivia.trivial trivial-cltl2 type-i) 55 - VERSION generic-cl-20211020-git SIBLINGS 56 - (generic-cl.arithmetic generic-cl generic-cl.collector 57 - generic-cl.comparison generic-cl.container generic-cl.internal 58 - generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math 59 - generic-cl.sequence generic-cl.set generic-cl.util) 60 - PARASITES NIL) */
-67
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_sequence.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_sequence"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic sequence operations"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.sequence"; 17 - 18 - asdFilesToKeep = ["generic-cl.sequence.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.sequence DESCRIPTION Generic sequence operations SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.sequence FILENAME 25 - generic-cl_dot_sequence DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-custom-hash-table FILENAME cl-custom-hash-table) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.collector FILENAME generic-cl_dot_collector) 34 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 35 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 36 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 37 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 38 - (NAME generic-cl.map FILENAME generic-cl_dot_map) 39 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 40 - (NAME introspect-environment FILENAME introspect-environment) 41 - (NAME iterate FILENAME iterate) 42 - (NAME lisp-namespace FILENAME lisp-namespace) 43 - (NAME optima FILENAME optima) 44 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 45 - (NAME static-dispatch FILENAME static-dispatch) 46 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 47 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 48 - (NAME trivia.level0 FILENAME trivia_dot_level0) 49 - (NAME trivia.level1 FILENAME trivia_dot_level1) 50 - (NAME trivia.level2 FILENAME trivia_dot_level2) 51 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 52 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 53 - DEPENDENCIES 54 - (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments 55 - cl-form-types closer-mop collectors generic-cl.collector 56 - generic-cl.comparison generic-cl.container generic-cl.internal 57 - generic-cl.iterator generic-cl.map generic-cl.object 58 - introspect-environment iterate lisp-namespace optima 59 - parse-declarations-1.0 static-dispatch symbol-munger trivia 60 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 61 - trivia.trivial trivial-cltl2 type-i) 62 - VERSION generic-cl-20211020-git SIBLINGS 63 - (generic-cl.arithmetic generic-cl generic-cl.collector 64 - generic-cl.comparison generic-cl.container generic-cl.internal 65 - generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math 66 - generic-cl.object generic-cl.set generic-cl.util) 67 - PARASITES NIL) */
-69
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/generic-cl_dot_set.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "generic-cl_dot_set"; 5 - version = "generic-cl-20211020-git"; 6 - 7 - description = "Generic set interface"; 8 - 9 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_arithmetic" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; 13 - sha256 = "0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa"; 14 - }; 15 - 16 - packageName = "generic-cl.set"; 17 - 18 - asdFilesToKeep = ["generic-cl.set.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM generic-cl.set DESCRIPTION Generic set interface SHA256 22 - 0jryfmxwqhrarmpbb643b7iv5rlib5pcx4i4jcd6h2rscnrbj8sa URL 23 - http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz 24 - MD5 ce42f45dd7c5be44de45ee259a46d7b8 NAME generic-cl.set FILENAME 25 - generic-cl_dot_set DEPS 26 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 27 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 28 - (NAME cl-custom-hash-table FILENAME cl-custom-hash-table) 29 - (NAME cl-environments FILENAME cl-environments) 30 - (NAME cl-form-types FILENAME cl-form-types) 31 - (NAME closer-mop FILENAME closer-mop) 32 - (NAME collectors FILENAME collectors) 33 - (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic) 34 - (NAME generic-cl.collector FILENAME generic-cl_dot_collector) 35 - (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison) 36 - (NAME generic-cl.container FILENAME generic-cl_dot_container) 37 - (NAME generic-cl.internal FILENAME generic-cl_dot_internal) 38 - (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator) 39 - (NAME generic-cl.map FILENAME generic-cl_dot_map) 40 - (NAME generic-cl.object FILENAME generic-cl_dot_object) 41 - (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence) 42 - (NAME introspect-environment FILENAME introspect-environment) 43 - (NAME iterate FILENAME iterate) 44 - (NAME lisp-namespace FILENAME lisp-namespace) 45 - (NAME optima FILENAME optima) 46 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 47 - (NAME static-dispatch FILENAME static-dispatch) 48 - (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia) 49 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 50 - (NAME trivia.level0 FILENAME trivia_dot_level0) 51 - (NAME trivia.level1 FILENAME trivia_dot_level1) 52 - (NAME trivia.level2 FILENAME trivia_dot_level2) 53 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 54 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 55 - DEPENDENCIES 56 - (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments 57 - cl-form-types closer-mop collectors generic-cl.arithmetic 58 - generic-cl.collector generic-cl.comparison generic-cl.container 59 - generic-cl.internal generic-cl.iterator generic-cl.map generic-cl.object 60 - generic-cl.sequence introspect-environment iterate lisp-namespace optima 61 - parse-declarations-1.0 static-dispatch symbol-munger trivia 62 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 63 - trivia.trivial trivial-cltl2 type-i) 64 - VERSION generic-cl-20211020-git SIBLINGS 65 - (generic-cl.arithmetic generic-cl generic-cl.collector 66 - generic-cl.comparison generic-cl.container generic-cl.internal 67 - generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math 68 - generic-cl.object generic-cl.sequence generic-cl.util) 69 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/gettext.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "gettext"; 5 - version = "20171130-git"; 6 - 7 - description = "An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems."; 8 - 9 - deps = [ args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."yacc" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz"; 13 - sha256 = "0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd"; 14 - }; 15 - 16 - packageName = "gettext"; 17 - 18 - asdFilesToKeep = ["gettext.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM gettext DESCRIPTION 22 - An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems. 23 - SHA256 0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd URL 24 - http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz 25 - MD5 d162cb5310db5011c82ef6343fd280ed NAME gettext FILENAME gettext DEPS 26 - ((NAME flexi-streams FILENAME flexi-streams) 27 - (NAME split-sequence FILENAME split-sequence) 28 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 29 - (NAME yacc FILENAME yacc)) 30 - DEPENDENCIES (flexi-streams split-sequence trivial-gray-streams yacc) 31 - VERSION 20171130-git SIBLINGS (gettext-example gettext-tests) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/global-vars.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "global-vars"; 5 - version = "20141106-git"; 6 - 7 - description = "Define efficient global variables."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz"; 13 - sha256 = "0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j"; 14 - }; 15 - 16 - packageName = "global-vars"; 17 - 18 - asdFilesToKeep = ["global-vars.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM global-vars DESCRIPTION Define efficient global variables. SHA256 22 - 0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j URL 23 - http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz 24 - MD5 dd3153ee75c972a80450aa00644b2200 NAME global-vars FILENAME global-vars 25 - DEPS NIL DEPENDENCIES NIL VERSION 20141106-git SIBLINGS (global-vars-test) 26 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/glsl-docs.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "glsl-docs"; 5 - version = "glsl-spec-release-quicklisp-f04476f7-git"; 6 - 7 - description = "The official docs for all the symbols in glsl-symbols"; 8 - 9 - deps = [ args."glsl-symbols" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 - sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 - }; 15 - 16 - packageName = "glsl-docs"; 17 - 18 - asdFilesToKeep = ["glsl-docs.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM glsl-docs DESCRIPTION 22 - The official docs for all the symbols in glsl-symbols SHA256 23 - 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 24 - http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 25 - MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-docs FILENAME glsl-docs DEPS 26 - ((NAME glsl-symbols FILENAME glsl-symbols)) DEPENDENCIES (glsl-symbols) 27 - VERSION glsl-spec-release-quicklisp-f04476f7-git SIBLINGS 28 - (glsl-spec glsl-symbols) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/glsl-spec.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "glsl-spec"; 5 - version = "release-quicklisp-f04476f7-git"; 6 - 7 - description = "The GLSL Spec as a datastructure"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 - sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 - }; 15 - 16 - packageName = "glsl-spec"; 17 - 18 - asdFilesToKeep = ["glsl-spec.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM glsl-spec DESCRIPTION The GLSL Spec as a datastructure SHA256 22 - 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 23 - http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 24 - MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-spec FILENAME glsl-spec DEPS 25 - NIL DEPENDENCIES NIL VERSION release-quicklisp-f04476f7-git SIBLINGS 26 - (glsl-docs glsl-symbols) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/glsl-symbols.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "glsl-symbols"; 5 - version = "glsl-spec-release-quicklisp-f04476f7-git"; 6 - 7 - description = "Lispy versions of all glsl names as symbols"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 - sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 - }; 15 - 16 - packageName = "glsl-symbols"; 17 - 18 - asdFilesToKeep = ["glsl-symbols.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM glsl-symbols DESCRIPTION Lispy versions of all glsl names as symbols 22 - SHA256 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 23 - http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 24 - MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-symbols FILENAME 25 - glsl-symbols DEPS NIL DEPENDENCIES NIL VERSION 26 - glsl-spec-release-quicklisp-f04476f7-git SIBLINGS (glsl-docs glsl-spec) 27 - PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/heap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "heap"; 5 - version = "20181018-git"; 6 - 7 - description = "Binary Heap for Common Lisp."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/heap/2018-10-18/heap-20181018-git.tgz"; 13 - sha256 = "1376i9vq5kcskzhqfxvsfvxz7kwkp6d3bd7rxn94dgnha988fd77"; 14 - }; 15 - 16 - packageName = "heap"; 17 - 18 - asdFilesToKeep = ["heap.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM heap DESCRIPTION Binary Heap for Common Lisp. SHA256 22 - 1376i9vq5kcskzhqfxvsfvxz7kwkp6d3bd7rxn94dgnha988fd77 URL 23 - http://beta.quicklisp.org/archive/heap/2018-10-18/heap-20181018-git.tgz MD5 24 - a2355ef9c113a3335919a45195083951 NAME heap FILENAME heap DEPS NIL 25 - DEPENDENCIES NIL VERSION 20181018-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/html-encode.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "html-encode"; 5 - version = "1.2"; 6 - 7 - description = "A library for encoding text in various web-savvy encodings."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz"; 13 - sha256 = "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"; 14 - }; 15 - 16 - packageName = "html-encode"; 17 - 18 - asdFilesToKeep = ["html-encode.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM html-encode DESCRIPTION 22 - A library for encoding text in various web-savvy encodings. SHA256 23 - 06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf URL 24 - http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz 25 - MD5 67f22483fe6d270b8830f78f285a1016 NAME html-encode FILENAME html-encode 26 - DEPS NIL DEPENDENCIES NIL VERSION 1.2 SIBLINGS NIL PARASITES NIL) */
-50
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/http-body.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "http-body"; 5 - version = "20190813-git"; 6 - 7 - description = "HTTP POST data parser for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-ppcre" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."fast-http" args."fast-io" args."flexi-streams" args."jonathan" args."named-readtables" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."trivial-types" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz"; 13 - sha256 = "1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8"; 14 - }; 15 - 16 - packageName = "http-body"; 17 - 18 - asdFilesToKeep = ["http-body.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM http-body DESCRIPTION HTTP POST data parser for Common Lisp SHA256 22 - 1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8 URL 23 - http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz 24 - MD5 d46ac52643ae7dc148438f84a8107a79 NAME http-body FILENAME http-body DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 27 - (NAME cffi-toolchain FILENAME cffi-toolchain) 28 - (NAME cl-annot FILENAME cl-annot) (NAME cl-ppcre FILENAME cl-ppcre) 29 - (NAME cl-syntax FILENAME cl-syntax) 30 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 31 - (NAME cl-utilities FILENAME cl-utilities) 32 - (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io) 33 - (NAME flexi-streams FILENAME flexi-streams) 34 - (NAME jonathan FILENAME jonathan) 35 - (NAME named-readtables FILENAME named-readtables) 36 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 37 - (NAME smart-buffer FILENAME smart-buffer) 38 - (NAME split-sequence FILENAME split-sequence) 39 - (NAME static-vectors FILENAME static-vectors) 40 - (NAME trivial-features FILENAME trivial-features) 41 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 42 - (NAME trivial-types FILENAME trivial-types) 43 - (NAME xsubseq FILENAME xsubseq)) 44 - DEPENDENCIES 45 - (alexandria babel cffi cffi-grovel cffi-toolchain cl-annot cl-ppcre 46 - cl-syntax cl-syntax-annot cl-utilities fast-http fast-io flexi-streams 47 - jonathan named-readtables proc-parse quri smart-buffer split-sequence 48 - static-vectors trivial-features trivial-gray-streams trivial-types 49 - xsubseq) 50 - VERSION 20190813-git SIBLINGS (http-body-test) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_asdf"; 5 - version = "20200925-darcs"; 6 - 7 - description = "Various ASDF extensions such as attached test and documentation system, explicit development support, etc."; 8 - 9 - deps = [ args."asdf" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz"; 13 - sha256 = "1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h"; 14 - }; 15 - 16 - packageName = "hu.dwim.asdf"; 17 - 18 - asdFilesToKeep = ["hu.dwim.asdf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.asdf DESCRIPTION 22 - Various ASDF extensions such as attached test and documentation system, explicit development support, etc. 23 - SHA256 1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h URL 24 - http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz 25 - MD5 feec747077117dd9850db77ed1919c21 NAME hu.dwim.asdf FILENAME 26 - hu_dot_dwim_dot_asdf DEPS 27 - ((NAME asdf FILENAME asdf) (NAME uiop FILENAME uiop)) DEPENDENCIES 28 - (asdf uiop) VERSION 20200925-darcs SIBLINGS (hu.dwim.asdf.documentation) 29 - PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_common-lisp.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_common-lisp"; 5 - version = "stable-git"; 6 - 7 - description = "A redefinition of the standard Common Lisp package that includes a number of renames and shadows."; 8 - 9 - deps = [ args."hu_dot_dwim_dot_asdf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.common-lisp/2021-02-28/hu.dwim.common-lisp-stable-git.tgz"; 13 - sha256 = "1v111qvpfs0jml54a4qccyicgq4jg3h72z8484wa1x0acc9hgz76"; 14 - }; 15 - 16 - packageName = "hu.dwim.common-lisp"; 17 - 18 - asdFilesToKeep = ["hu.dwim.common-lisp.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.common-lisp DESCRIPTION 22 - A redefinition of the standard Common Lisp package that includes a number of renames and shadows. 23 - SHA256 1v111qvpfs0jml54a4qccyicgq4jg3h72z8484wa1x0acc9hgz76 URL 24 - http://beta.quicklisp.org/archive/hu.dwim.common-lisp/2021-02-28/hu.dwim.common-lisp-stable-git.tgz 25 - MD5 4f0c7a375cc55381efdbeb17ef17dd7d NAME hu.dwim.common-lisp FILENAME 26 - hu_dot_dwim_dot_common-lisp DEPS 27 - ((NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf)) DEPENDENCIES 28 - (hu.dwim.asdf) VERSION stable-git SIBLINGS 29 - (hu.dwim.common-lisp.documentation) PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_common.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_common"; 5 - version = "20150709-darcs"; 6 - 7 - description = "An extended Common Lisp package to the general needs of other hu.dwim systems."; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."closer-mop" args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_common-lisp" args."iterate" args."metabang-bind" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.common/2015-07-09/hu.dwim.common-20150709-darcs.tgz"; 13 - sha256 = "12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp"; 14 - }; 15 - 16 - packageName = "hu.dwim.common"; 17 - 18 - asdFilesToKeep = ["hu.dwim.common.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.common DESCRIPTION 22 - An extended Common Lisp package to the general needs of other hu.dwim systems. 23 - SHA256 12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp URL 24 - http://beta.quicklisp.org/archive/hu.dwim.common/2015-07-09/hu.dwim.common-20150709-darcs.tgz 25 - MD5 fff7f05c24e71a0270021909ca86a9ef NAME hu.dwim.common FILENAME 26 - hu_dot_dwim_dot_common DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME closer-mop FILENAME closer-mop) 29 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 30 - (NAME hu.dwim.common-lisp FILENAME hu_dot_dwim_dot_common-lisp) 31 - (NAME iterate FILENAME iterate) 32 - (NAME metabang-bind FILENAME metabang-bind)) 33 - DEPENDENCIES 34 - (alexandria anaphora closer-mop hu.dwim.asdf hu.dwim.common-lisp iterate 35 - metabang-bind) 36 - VERSION 20150709-darcs SIBLINGS (hu.dwim.common.documentation) PARASITES 37 - NIL) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_def"; 5 - version = "20201016-darcs"; 6 - 7 - description = "General purpose, homogenous, extensible definer macro."; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."hu_dot_dwim_dot_asdf" args."iterate" args."metabang-bind" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.def/2020-10-16/hu.dwim.def-20201016-darcs.tgz"; 13 - sha256 = "0m9id405f0s1438yr2qppdw5z7xdx3ajaa1frd04pibqgf4db4cj"; 14 - }; 15 - 16 - packageName = "hu.dwim.def"; 17 - 18 - asdFilesToKeep = ["hu.dwim.def.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.def DESCRIPTION 22 - General purpose, homogenous, extensible definer macro. SHA256 23 - 0m9id405f0s1438yr2qppdw5z7xdx3ajaa1frd04pibqgf4db4cj URL 24 - http://beta.quicklisp.org/archive/hu.dwim.def/2020-10-16/hu.dwim.def-20201016-darcs.tgz 25 - MD5 c4d7469472f57cd700d8319e35dd5f32 NAME hu.dwim.def FILENAME 26 - hu_dot_dwim_dot_def DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 29 - (NAME iterate FILENAME iterate) 30 - (NAME metabang-bind FILENAME metabang-bind)) 31 - DEPENDENCIES (alexandria anaphora hu.dwim.asdf iterate metabang-bind) 32 - VERSION 20201016-darcs SIBLINGS 33 - (hu.dwim.def+cl-l10n hu.dwim.def+contextl hu.dwim.def+hu.dwim.common 34 - hu.dwim.def+hu.dwim.delico hu.dwim.def+swank hu.dwim.def.documentation 35 - hu.dwim.def.namespace hu.dwim.def.test) 36 - PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_def_plus_swank.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_def_plus_swank"; 5 - version = "hu.dwim.def-20201016-darcs"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_def" args."iterate" args."metabang-bind" args."swank" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.def/2020-10-16/hu.dwim.def-20201016-darcs.tgz"; 13 - sha256 = "0m9id405f0s1438yr2qppdw5z7xdx3ajaa1frd04pibqgf4db4cj"; 14 - }; 15 - 16 - packageName = "hu.dwim.def+swank"; 17 - 18 - asdFilesToKeep = ["hu.dwim.def+swank.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.def+swank DESCRIPTION System lacks description SHA256 22 - 0m9id405f0s1438yr2qppdw5z7xdx3ajaa1frd04pibqgf4db4cj URL 23 - http://beta.quicklisp.org/archive/hu.dwim.def/2020-10-16/hu.dwim.def-20201016-darcs.tgz 24 - MD5 c4d7469472f57cd700d8319e35dd5f32 NAME hu.dwim.def+swank FILENAME 25 - hu_dot_dwim_dot_def_plus_swank DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 27 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 28 - (NAME hu.dwim.def FILENAME hu_dot_dwim_dot_def) 29 - (NAME iterate FILENAME iterate) 30 - (NAME metabang-bind FILENAME metabang-bind) (NAME swank FILENAME swank)) 31 - DEPENDENCIES 32 - (alexandria anaphora hu.dwim.asdf hu.dwim.def iterate metabang-bind swank) 33 - VERSION hu.dwim.def-20201016-darcs SIBLINGS 34 - (hu.dwim.def+cl-l10n hu.dwim.def+contextl hu.dwim.def+hu.dwim.common 35 - hu.dwim.def+hu.dwim.delico hu.dwim.def hu.dwim.def.documentation 36 - hu.dwim.def.namespace hu.dwim.def.test) 37 - PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_defclass-star.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_defclass-star"; 5 - version = "stable-git"; 6 - 7 - parasites = [ "hu.dwim.defclass-star/test" ]; 8 - 9 - description = "Simplify class like definitions with defclass* and friends."; 10 - 11 - deps = [ args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_common" args."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2021-12-09/hu.dwim.defclass-star-stable-git.tgz"; 15 - sha256 = "0draahmhi5mmrj9aqabqdaipqcb9adxqdypjbdiawg55dw36g0cy"; 16 - }; 17 - 18 - packageName = "hu.dwim.defclass-star"; 19 - 20 - asdFilesToKeep = ["hu.dwim.defclass-star.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM hu.dwim.defclass-star DESCRIPTION 24 - Simplify class like definitions with defclass* and friends. SHA256 25 - 0draahmhi5mmrj9aqabqdaipqcb9adxqdypjbdiawg55dw36g0cy URL 26 - http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2021-12-09/hu.dwim.defclass-star-stable-git.tgz 27 - MD5 e35fa9767089eb2fb03befaec18d5081 NAME hu.dwim.defclass-star FILENAME 28 - hu_dot_dwim_dot_defclass-star DEPS 29 - ((NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 30 - (NAME hu.dwim.common FILENAME hu_dot_dwim_dot_common) 31 - (NAME hu.dwim.stefil+hu.dwim.def+swank FILENAME 32 - hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank)) 33 - DEPENDENCIES (hu.dwim.asdf hu.dwim.common hu.dwim.stefil+hu.dwim.def+swank) 34 - VERSION stable-git SIBLINGS 35 - (hu.dwim.defclass-star+contextl hu.dwim.defclass-star+hu.dwim.def+contextl 36 - hu.dwim.defclass-star+hu.dwim.def hu.dwim.defclass-star+swank) 37 - PARASITES (hu.dwim.defclass-star/test)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_stefil"; 5 - version = "20200218-darcs"; 6 - 7 - parasites = [ "hu.dwim.stefil/test" ]; 8 - 9 - description = "A Simple Test Framework In Lisp."; 10 - 11 - deps = [ args."alexandria" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 15 - sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 16 - }; 17 - 18 - packageName = "hu.dwim.stefil"; 19 - 20 - asdFilesToKeep = ["hu.dwim.stefil.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM hu.dwim.stefil DESCRIPTION A Simple Test Framework In Lisp. SHA256 24 - 16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf URL 25 - http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz 26 - MD5 3e87e0973f8373e342b75b13c802cc53 NAME hu.dwim.stefil FILENAME 27 - hu_dot_dwim_dot_stefil DEPS ((NAME alexandria FILENAME alexandria)) 28 - DEPENDENCIES (alexandria) VERSION 20200218-darcs SIBLINGS 29 - (hu.dwim.stefil+hu.dwim.def+swank hu.dwim.stefil+hu.dwim.def 30 - hu.dwim.stefil+swank) 31 - PARASITES (hu.dwim.stefil/test)) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def"; 5 - version = "hu.dwim.stefil-20200218-darcs"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_def" args."hu_dot_dwim_dot_stefil" args."iterate" args."metabang-bind" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 13 - sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 14 - }; 15 - 16 - packageName = "hu.dwim.stefil+hu.dwim.def"; 17 - 18 - asdFilesToKeep = ["hu.dwim.stefil+hu.dwim.def.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.stefil+hu.dwim.def DESCRIPTION System lacks description 22 - SHA256 16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf URL 23 - http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz 24 - MD5 3e87e0973f8373e342b75b13c802cc53 NAME hu.dwim.stefil+hu.dwim.def 25 - FILENAME hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 27 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 28 - (NAME hu.dwim.def FILENAME hu_dot_dwim_dot_def) 29 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 30 - (NAME iterate FILENAME iterate) 31 - (NAME metabang-bind FILENAME metabang-bind)) 32 - DEPENDENCIES 33 - (alexandria anaphora hu.dwim.asdf hu.dwim.def hu.dwim.stefil iterate 34 - metabang-bind) 35 - VERSION hu.dwim.stefil-20200218-darcs SIBLINGS 36 - (hu.dwim.stefil+hu.dwim.def+swank hu.dwim.stefil+swank hu.dwim.stefil) 37 - PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank"; 5 - version = "hu.dwim.stefil-20200218-darcs"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_def" args."hu_dot_dwim_dot_def_plus_swank" args."hu_dot_dwim_dot_stefil" args."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def" args."hu_dot_dwim_dot_stefil_plus_swank" args."iterate" args."metabang-bind" args."swank" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 13 - sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 14 - }; 15 - 16 - packageName = "hu.dwim.stefil+hu.dwim.def+swank"; 17 - 18 - asdFilesToKeep = ["hu.dwim.stefil+hu.dwim.def+swank.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.stefil+hu.dwim.def+swank DESCRIPTION 22 - System lacks description SHA256 23 - 16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf URL 24 - http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz 25 - MD5 3e87e0973f8373e342b75b13c802cc53 NAME hu.dwim.stefil+hu.dwim.def+swank 26 - FILENAME hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 29 - (NAME hu.dwim.def FILENAME hu_dot_dwim_dot_def) 30 - (NAME hu.dwim.def+swank FILENAME hu_dot_dwim_dot_def_plus_swank) 31 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 32 - (NAME hu.dwim.stefil+hu.dwim.def FILENAME 33 - hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def) 34 - (NAME hu.dwim.stefil+swank FILENAME hu_dot_dwim_dot_stefil_plus_swank) 35 - (NAME iterate FILENAME iterate) 36 - (NAME metabang-bind FILENAME metabang-bind) (NAME swank FILENAME swank)) 37 - DEPENDENCIES 38 - (alexandria anaphora hu.dwim.asdf hu.dwim.def hu.dwim.def+swank 39 - hu.dwim.stefil hu.dwim.stefil+hu.dwim.def hu.dwim.stefil+swank iterate 40 - metabang-bind swank) 41 - VERSION hu.dwim.stefil-20200218-darcs SIBLINGS 42 - (hu.dwim.stefil+hu.dwim.def hu.dwim.stefil+swank hu.dwim.stefil) PARASITES 43 - NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_swank.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hu_dot_dwim_dot_stefil_plus_swank"; 5 - version = "hu.dwim.stefil-20200218-darcs"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."hu_dot_dwim_dot_asdf" args."hu_dot_dwim_dot_stefil" args."swank" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 13 - sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 14 - }; 15 - 16 - packageName = "hu.dwim.stefil+swank"; 17 - 18 - asdFilesToKeep = ["hu.dwim.stefil+swank.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM hu.dwim.stefil+swank DESCRIPTION System lacks description SHA256 22 - 16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf URL 23 - http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz 24 - MD5 3e87e0973f8373e342b75b13c802cc53 NAME hu.dwim.stefil+swank FILENAME 25 - hu_dot_dwim_dot_stefil_plus_swank DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME hu.dwim.asdf FILENAME hu_dot_dwim_dot_asdf) 28 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 29 - (NAME swank FILENAME swank)) 30 - DEPENDENCIES (alexandria hu.dwim.asdf hu.dwim.stefil swank) VERSION 31 - hu.dwim.stefil-20200218-darcs SIBLINGS 32 - (hu.dwim.stefil+hu.dwim.def+swank hu.dwim.stefil+hu.dwim.def 33 - hu.dwim.stefil) 34 - PARASITES NIL) */
-48
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hunchensocket.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hunchensocket"; 5 - version = "20210531-git"; 6 - 7 - parasites = [ "hunchensocket-tests" ]; 8 - 9 - description = "WebSockets for Hunchentoot"; 10 - 11 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."fiasco" args."flexi-streams" args."hunchentoot" args."ironclad" args."md5" args."rfc2388" args."split-sequence" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-utf-8" args."usocket" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/hunchensocket/2021-05-31/hunchensocket-20210531-git.tgz"; 15 - sha256 = "18zy11fir6vlg5vh29pr221dydbl9carfj9xkmsnygyzxkl6jghl"; 16 - }; 17 - 18 - packageName = "hunchensocket"; 19 - 20 - asdFilesToKeep = ["hunchensocket.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM hunchensocket DESCRIPTION WebSockets for Hunchentoot SHA256 24 - 18zy11fir6vlg5vh29pr221dydbl9carfj9xkmsnygyzxkl6jghl URL 25 - http://beta.quicklisp.org/archive/hunchensocket/2021-05-31/hunchensocket-20210531-git.tgz 26 - MD5 a529901753a54eb48c93aa86b0c3747d NAME hunchensocket FILENAME 27 - hunchensocket DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME cffi FILENAME cffi) (NAME chunga FILENAME chunga) 31 - (NAME cl+ssl FILENAME cl_plus_ssl) (NAME cl-base64 FILENAME cl-base64) 32 - (NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre) 33 - (NAME fiasco FILENAME fiasco) (NAME flexi-streams FILENAME flexi-streams) 34 - (NAME hunchentoot FILENAME hunchentoot) (NAME ironclad FILENAME ironclad) 35 - (NAME md5 FILENAME md5) (NAME rfc2388 FILENAME rfc2388) 36 - (NAME split-sequence FILENAME split-sequence) 37 - (NAME trivial-backtrace FILENAME trivial-backtrace) 38 - (NAME trivial-features FILENAME trivial-features) 39 - (NAME trivial-garbage FILENAME trivial-garbage) 40 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 41 - (NAME trivial-utf-8 FILENAME trivial-utf-8) 42 - (NAME usocket FILENAME usocket)) 43 - DEPENDENCIES 44 - (alexandria babel bordeaux-threads cffi chunga cl+ssl cl-base64 cl-fad 45 - cl-ppcre fiasco flexi-streams hunchentoot ironclad md5 rfc2388 46 - split-sequence trivial-backtrace trivial-features trivial-garbage 47 - trivial-gray-streams trivial-utf-8 usocket) 48 - VERSION 20210531-git SIBLINGS NIL PARASITES (hunchensocket-tests)) */
-54
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/hunchentoot.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "hunchentoot"; 5 - version = "v1.3.0"; 6 - 7 - parasites = [ "hunchentoot-dev" "hunchentoot-test" ]; 8 - 9 - description = "Hunchentoot is a HTTP server based on USOCKET and 10 - BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a 11 - simple framework for user-defined handlers and can be extended 12 - through subclassing."; 13 - 14 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."cl-who" args."cxml-stp" args."drakma" args."flexi-streams" args."md5" args."rfc2388" args."split-sequence" args."swank" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" args."xpath" ]; 15 - 16 - src = fetchurl { 17 - url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; 18 - sha256 = "08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8"; 19 - }; 20 - 21 - packageName = "hunchentoot"; 22 - 23 - asdFilesToKeep = ["hunchentoot.asd"]; 24 - overrides = x: x; 25 - } 26 - /* (SYSTEM hunchentoot DESCRIPTION 27 - Hunchentoot is a HTTP server based on USOCKET and 28 - BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a 29 - simple framework for user-defined handlers and can be extended 30 - through subclassing. 31 - SHA256 08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8 URL 32 - http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz 33 - MD5 b1bb0c8df41a0ffaba4309e5084930fe NAME hunchentoot FILENAME hunchentoot 34 - DEPS 35 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 36 - (NAME bordeaux-threads FILENAME bordeaux-threads) 37 - (NAME cffi FILENAME cffi) (NAME chunga FILENAME chunga) 38 - (NAME cl+ssl FILENAME cl_plus_ssl) (NAME cl-base64 FILENAME cl-base64) 39 - (NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre) 40 - (NAME cl-who FILENAME cl-who) (NAME cxml-stp FILENAME cxml-stp) 41 - (NAME drakma FILENAME drakma) (NAME flexi-streams FILENAME flexi-streams) 42 - (NAME md5 FILENAME md5) (NAME rfc2388 FILENAME rfc2388) 43 - (NAME split-sequence FILENAME split-sequence) (NAME swank FILENAME swank) 44 - (NAME trivial-backtrace FILENAME trivial-backtrace) 45 - (NAME trivial-features FILENAME trivial-features) 46 - (NAME trivial-garbage FILENAME trivial-garbage) 47 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 48 - (NAME usocket FILENAME usocket) (NAME xpath FILENAME xpath)) 49 - DEPENDENCIES 50 - (alexandria babel bordeaux-threads cffi chunga cl+ssl cl-base64 cl-fad 51 - cl-ppcre cl-who cxml-stp drakma flexi-streams md5 rfc2388 split-sequence 52 - swank trivial-backtrace trivial-features trivial-garbage 53 - trivial-gray-streams usocket xpath) 54 - VERSION v1.3.0 SIBLINGS NIL PARASITES (hunchentoot-dev hunchentoot-test)) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/idna.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "idna"; 5 - version = "20120107-git"; 6 - 7 - description = "IDNA (international domain names) string encoding and decoding routines"; 8 - 9 - deps = [ args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz"; 13 - sha256 = "0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c"; 14 - }; 15 - 16 - packageName = "idna"; 17 - 18 - asdFilesToKeep = ["idna.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM idna DESCRIPTION 22 - IDNA (international domain names) string encoding and decoding routines 23 - SHA256 0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c URL 24 - http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz MD5 25 - 85b91a66efe4381bf116cdb5d2b756b6 NAME idna FILENAME idna DEPS 26 - ((NAME split-sequence FILENAME split-sequence)) DEPENDENCIES 27 - (split-sequence) VERSION 20120107-git SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/ieee-floats.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "ieee-floats"; 5 - version = "20170830-git"; 6 - 7 - parasites = [ "ieee-floats-tests" ]; 8 - 9 - description = "Convert floating point values to IEEE 754 binary representation"; 10 - 11 - deps = [ args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz"; 15 - sha256 = "15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk"; 16 - }; 17 - 18 - packageName = "ieee-floats"; 19 - 20 - asdFilesToKeep = ["ieee-floats.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM ieee-floats DESCRIPTION 24 - Convert floating point values to IEEE 754 binary representation SHA256 25 - 15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk URL 26 - http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz 27 - MD5 3434b4d91224ca6a817ced9d83f14bb6 NAME ieee-floats FILENAME ieee-floats 28 - DEPS ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) VERSION 29 - 20170830-git SIBLINGS NIL PARASITES (ieee-floats-tests)) */
-55
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/inferior-shell.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "inferior-shell"; 5 - version = "20200925-git"; 6 - 7 - parasites = [ "inferior-shell/test" ]; 8 - 9 - description = "spawn local or remote processes and shell pipes"; 10 - 11 - deps = [ args."alexandria" args."asdf" args."closer-mop" args."fare-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."hu_dot_dwim_dot_stefil" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz"; 15 - sha256 = "1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80"; 16 - }; 17 - 18 - packageName = "inferior-shell"; 19 - 20 - asdFilesToKeep = ["inferior-shell.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM inferior-shell DESCRIPTION 24 - spawn local or remote processes and shell pipes SHA256 25 - 1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80 URL 26 - http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz 27 - MD5 7ca5f15446ef80715758610a930bccba NAME inferior-shell FILENAME 28 - inferior-shell DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf) 30 - (NAME closer-mop FILENAME closer-mop) (NAME fare-mop FILENAME fare-mop) 31 - (NAME fare-quasiquote FILENAME fare-quasiquote) 32 - (NAME fare-quasiquote-extras FILENAME fare-quasiquote-extras) 33 - (NAME fare-quasiquote-optima FILENAME fare-quasiquote-optima) 34 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 35 - (NAME fare-utils FILENAME fare-utils) 36 - (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 37 - (NAME introspect-environment FILENAME introspect-environment) 38 - (NAME iterate FILENAME iterate) 39 - (NAME lisp-namespace FILENAME lisp-namespace) 40 - (NAME named-readtables FILENAME named-readtables) 41 - (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.quasiquote FILENAME trivia_dot_quasiquote) 47 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 48 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 49 - DEPENDENCIES 50 - (alexandria asdf closer-mop fare-mop fare-quasiquote fare-quasiquote-extras 51 - fare-quasiquote-optima fare-quasiquote-readtable fare-utils hu.dwim.stefil 52 - introspect-environment iterate lisp-namespace named-readtables trivia 53 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 54 - trivia.quasiquote trivia.trivial trivial-cltl2 type-i) 55 - VERSION 20200925-git SIBLINGS NIL PARASITES (inferior-shell/test)) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/introspect-environment.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "introspect-environment"; 5 - version = "20210807-git"; 6 - 7 - description = "Small interface to portable but nonstandard introspection of CL environments."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/introspect-environment/2021-08-07/introspect-environment-20210807-git.tgz"; 13 - sha256 = "124rnbcjygw7wm07bpcibsqkvsqxhr8pq42p7phw39kmcp9hns4j"; 14 - }; 15 - 16 - packageName = "introspect-environment"; 17 - 18 - asdFilesToKeep = ["introspect-environment.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM introspect-environment DESCRIPTION 22 - Small interface to portable but nonstandard introspection of CL environments. 23 - SHA256 124rnbcjygw7wm07bpcibsqkvsqxhr8pq42p7phw39kmcp9hns4j URL 24 - http://beta.quicklisp.org/archive/introspect-environment/2021-08-07/introspect-environment-20210807-git.tgz 25 - MD5 f9d4e1208146e9435c2ce1b82a87a209 NAME introspect-environment FILENAME 26 - introspect-environment DEPS NIL DEPENDENCIES NIL VERSION 20210807-git 27 - SIBLINGS (introspect-environment-test) PARASITES NIL) */
-47
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib"; 5 - version = "v0.8.4"; 6 - 7 - parasites = [ "iolib/multiplex" "iolib/os" "iolib/pathnames" "iolib/sockets" "iolib/streams" "iolib/syscalls" "iolib/tests" "iolib/trivial-sockets" "iolib/zstreams" ]; 8 - 9 - description = "I/O library."; 10 - 11 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."idna" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" args."swap-bytes" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz"; 15 - sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq"; 16 - }; 17 - 18 - packageName = "iolib"; 19 - 20 - asdFilesToKeep = ["iolib.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM iolib DESCRIPTION I/O library. SHA256 24 - 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL 25 - http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5 26 - 5650165890f8b278b357864f597b377d NAME iolib FILENAME iolib DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 30 - (NAME cffi-toolchain FILENAME cffi-toolchain) 31 - (NAME fiveam FILENAME fiveam) (NAME idna FILENAME idna) 32 - (NAME iolib.asdf FILENAME iolib_dot_asdf) 33 - (NAME iolib.base FILENAME iolib_dot_base) 34 - (NAME iolib.common-lisp FILENAME iolib_dot_common-lisp) 35 - (NAME iolib.conf FILENAME iolib_dot_conf) 36 - (NAME split-sequence FILENAME split-sequence) 37 - (NAME swap-bytes FILENAME swap-bytes) 38 - (NAME trivial-features FILENAME trivial-features)) 39 - DEPENDENCIES 40 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain fiveam 41 - idna iolib.asdf iolib.base iolib.common-lisp iolib.conf split-sequence 42 - swap-bytes trivial-features) 43 - VERSION v0.8.4 SIBLINGS 44 - (iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples) 45 - PARASITES 46 - (iolib/multiplex iolib/os iolib/pathnames iolib/sockets iolib/streams 47 - iolib/syscalls iolib/tests iolib/trivial-sockets iolib/zstreams)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib_dot_asdf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib_dot_asdf"; 5 - version = "iolib-v0.8.4"; 6 - 7 - description = "A few ASDF component classes."; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz"; 13 - sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq"; 14 - }; 15 - 16 - packageName = "iolib.asdf"; 17 - 18 - asdFilesToKeep = ["iolib.asdf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM iolib.asdf DESCRIPTION A few ASDF component classes. SHA256 22 - 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL 23 - http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5 24 - 5650165890f8b278b357864f597b377d NAME iolib.asdf FILENAME iolib_dot_asdf 25 - DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) 26 - VERSION iolib-v0.8.4 SIBLINGS 27 - (iolib iolib.base iolib.common-lisp iolib.conf iolib.examples) PARASITES 28 - NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib_dot_base.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib_dot_base"; 5 - version = "iolib-v0.8.4"; 6 - 7 - description = "Base IOlib package, used instead of CL."; 8 - 9 - deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz"; 13 - sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq"; 14 - }; 15 - 16 - packageName = "iolib.base"; 17 - 18 - asdFilesToKeep = ["iolib.base.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM iolib.base DESCRIPTION Base IOlib package, used instead of CL. 22 - SHA256 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL 23 - http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5 24 - 5650165890f8b278b357864f597b377d NAME iolib.base FILENAME iolib_dot_base 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME iolib.asdf FILENAME iolib_dot_asdf) 28 - (NAME iolib.common-lisp FILENAME iolib_dot_common-lisp) 29 - (NAME iolib.conf FILENAME iolib_dot_conf) 30 - (NAME split-sequence FILENAME split-sequence)) 31 - DEPENDENCIES 32 - (alexandria iolib.asdf iolib.common-lisp iolib.conf split-sequence) VERSION 33 - iolib-v0.8.4 SIBLINGS 34 - (iolib iolib.asdf iolib.common-lisp iolib.conf iolib.examples) PARASITES 35 - NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib_dot_common-lisp"; 5 - version = "iolib-v0.8.4"; 6 - 7 - description = "Slightly modified Common Lisp."; 8 - 9 - deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_conf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz"; 13 - sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq"; 14 - }; 15 - 16 - packageName = "iolib.common-lisp"; 17 - 18 - asdFilesToKeep = ["iolib.common-lisp.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM iolib.common-lisp DESCRIPTION Slightly modified Common Lisp. SHA256 22 - 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL 23 - http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5 24 - 5650165890f8b278b357864f597b377d NAME iolib.common-lisp FILENAME 25 - iolib_dot_common-lisp DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME iolib.asdf FILENAME iolib_dot_asdf) 28 - (NAME iolib.conf FILENAME iolib_dot_conf)) 29 - DEPENDENCIES (alexandria iolib.asdf iolib.conf) VERSION iolib-v0.8.4 30 - SIBLINGS (iolib iolib.asdf iolib.base iolib.conf iolib.examples) PARASITES 31 - NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib_dot_conf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib_dot_conf"; 5 - version = "iolib-v0.8.4"; 6 - 7 - description = "Compile-time configuration for IOLib."; 8 - 9 - deps = [ args."alexandria" args."iolib_dot_asdf" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz"; 13 - sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq"; 14 - }; 15 - 16 - packageName = "iolib.conf"; 17 - 18 - asdFilesToKeep = ["iolib.conf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM iolib.conf DESCRIPTION Compile-time configuration for IOLib. SHA256 22 - 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL 23 - http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5 24 - 5650165890f8b278b357864f597b377d NAME iolib.conf FILENAME iolib_dot_conf 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME iolib.asdf FILENAME iolib_dot_asdf)) 28 - DEPENDENCIES (alexandria iolib.asdf) VERSION iolib-v0.8.4 SIBLINGS 29 - (iolib iolib.asdf iolib.base iolib.common-lisp iolib.examples) PARASITES 30 - NIL) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iolib_dot_grovel.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iolib_dot_grovel"; 5 - version = "iolib-v0.8.3"; 6 - 7 - description = "The CFFI Groveller"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" args."trivial-features" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 - sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 14 - }; 15 - 16 - packageName = "iolib.grovel"; 17 - 18 - asdFilesToKeep = ["iolib.grovel.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM iolib.grovel DESCRIPTION The CFFI Groveller SHA256 22 - 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL 23 - http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5 24 - fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib.grovel FILENAME 25 - iolib_dot_grovel DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) (NAME iolib.asdf FILENAME iolib_dot_asdf) 28 - (NAME iolib.base FILENAME iolib_dot_base) 29 - (NAME iolib.common-lisp FILENAME iolib_dot_common-lisp) 30 - (NAME iolib.conf FILENAME iolib_dot_conf) 31 - (NAME split-sequence FILENAME split-sequence) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME uiop FILENAME uiop)) 34 - DEPENDENCIES 35 - (alexandria babel cffi iolib.asdf iolib.base iolib.common-lisp iolib.conf 36 - split-sequence trivial-features uiop) 37 - VERSION iolib-v0.8.3 SIBLINGS 38 - (iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples 39 - iolib.tests) 40 - PARASITES NIL) */
-62
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/ironclad.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "ironclad"; 5 - version = "v0.56"; 6 - 7 - parasites = [ "ironclad/aead/eax" "ironclad/aead/etm" "ironclad/aead/gcm" "ironclad/aeads" "ironclad/cipher/aes" "ironclad/cipher/arcfour" "ironclad/cipher/aria" "ironclad/cipher/blowfish" "ironclad/cipher/camellia" "ironclad/cipher/cast5" "ironclad/cipher/chacha" "ironclad/cipher/des" "ironclad/cipher/idea" "ironclad/cipher/kalyna" "ironclad/cipher/keystream" "ironclad/cipher/kuznyechik" "ironclad/cipher/misty1" "ironclad/cipher/rc2" "ironclad/cipher/rc5" "ironclad/cipher/rc6" "ironclad/cipher/salsa20" "ironclad/cipher/seed" "ironclad/cipher/serpent" "ironclad/cipher/sm4" "ironclad/cipher/sosemanuk" "ironclad/cipher/square" "ironclad/cipher/tea" "ironclad/cipher/threefish" "ironclad/cipher/twofish" "ironclad/cipher/xchacha" "ironclad/cipher/xor" "ironclad/cipher/xsalsa20" "ironclad/cipher/xtea" "ironclad/ciphers" "ironclad/core" "ironclad/digest/adler32" "ironclad/digest/blake2" "ironclad/digest/blake2s" "ironclad/digest/crc24" "ironclad/digest/crc32" "ironclad/digest/groestl" "ironclad/digest/jh" "ironclad/digest/kupyna" "ironclad/digest/md2" "ironclad/digest/md4" "ironclad/digest/md5" "ironclad/digest/ripemd-128" "ironclad/digest/ripemd-160" "ironclad/digest/sha1" "ironclad/digest/sha256" "ironclad/digest/sha3" "ironclad/digest/sha512" "ironclad/digest/skein" "ironclad/digest/sm3" "ironclad/digest/streebog" "ironclad/digest/tiger" "ironclad/digest/tree-hash" "ironclad/digest/whirlpool" "ironclad/digests" "ironclad/kdf/argon2" "ironclad/kdf/bcrypt" "ironclad/kdf/hmac" "ironclad/kdf/password-hash" "ironclad/kdf/pkcs5" "ironclad/kdf/scrypt" "ironclad/kdfs" "ironclad/mac/blake2-mac" "ironclad/mac/blake2s-mac" "ironclad/mac/cmac" "ironclad/mac/gmac" "ironclad/mac/hmac" "ironclad/mac/poly1305" "ironclad/mac/siphash" "ironclad/mac/skein-mac" "ironclad/macs" "ironclad/prng/fortuna" "ironclad/prngs" "ironclad/public-key/curve25519" "ironclad/public-key/curve448" "ironclad/public-key/dsa" "ironclad/public-key/ed25519" "ironclad/public-key/ed448" "ironclad/public-key/elgamal" "ironclad/public-key/rsa" "ironclad/public-key/secp256k1" "ironclad/public-key/secp256r1" "ironclad/public-key/secp384r1" "ironclad/public-key/secp521r1" "ironclad/public-keys" "ironclad/tests" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/ironclad/2021-10-20/ironclad-v0.56.tgz"; 15 - sha256 = "06jya7y8xlwak84akhp4qg9x6nyjrnnzqmzdigxc5a3c77mk3p6k"; 16 - }; 17 - 18 - packageName = "ironclad"; 19 - 20 - asdFilesToKeep = ["ironclad.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM ironclad DESCRIPTION System lacks description SHA256 24 - 06jya7y8xlwak84akhp4qg9x6nyjrnnzqmzdigxc5a3c77mk3p6k URL 25 - http://beta.quicklisp.org/archive/ironclad/2021-10-20/ironclad-v0.56.tgz 26 - MD5 3ea7bf7271864fd960d7e06a4e5aa9b7 NAME ironclad FILENAME ironclad DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME rt FILENAME rt)) 29 - DEPENDENCIES (alexandria bordeaux-threads rt) VERSION v0.56 SIBLINGS 30 - (ironclad-text) PARASITES 31 - (ironclad/aead/eax ironclad/aead/etm ironclad/aead/gcm ironclad/aeads 32 - ironclad/cipher/aes ironclad/cipher/arcfour ironclad/cipher/aria 33 - ironclad/cipher/blowfish ironclad/cipher/camellia ironclad/cipher/cast5 34 - ironclad/cipher/chacha ironclad/cipher/des ironclad/cipher/idea 35 - ironclad/cipher/kalyna ironclad/cipher/keystream 36 - ironclad/cipher/kuznyechik ironclad/cipher/misty1 ironclad/cipher/rc2 37 - ironclad/cipher/rc5 ironclad/cipher/rc6 ironclad/cipher/salsa20 38 - ironclad/cipher/seed ironclad/cipher/serpent ironclad/cipher/sm4 39 - ironclad/cipher/sosemanuk ironclad/cipher/square ironclad/cipher/tea 40 - ironclad/cipher/threefish ironclad/cipher/twofish ironclad/cipher/xchacha 41 - ironclad/cipher/xor ironclad/cipher/xsalsa20 ironclad/cipher/xtea 42 - ironclad/ciphers ironclad/core ironclad/digest/adler32 43 - ironclad/digest/blake2 ironclad/digest/blake2s ironclad/digest/crc24 44 - ironclad/digest/crc32 ironclad/digest/groestl ironclad/digest/jh 45 - ironclad/digest/kupyna ironclad/digest/md2 ironclad/digest/md4 46 - ironclad/digest/md5 ironclad/digest/ripemd-128 ironclad/digest/ripemd-160 47 - ironclad/digest/sha1 ironclad/digest/sha256 ironclad/digest/sha3 48 - ironclad/digest/sha512 ironclad/digest/skein ironclad/digest/sm3 49 - ironclad/digest/streebog ironclad/digest/tiger ironclad/digest/tree-hash 50 - ironclad/digest/whirlpool ironclad/digests ironclad/kdf/argon2 51 - ironclad/kdf/bcrypt ironclad/kdf/hmac ironclad/kdf/password-hash 52 - ironclad/kdf/pkcs5 ironclad/kdf/scrypt ironclad/kdfs 53 - ironclad/mac/blake2-mac ironclad/mac/blake2s-mac ironclad/mac/cmac 54 - ironclad/mac/gmac ironclad/mac/hmac ironclad/mac/poly1305 55 - ironclad/mac/siphash ironclad/mac/skein-mac ironclad/macs 56 - ironclad/prng/fortuna ironclad/prngs ironclad/public-key/curve25519 57 - ironclad/public-key/curve448 ironclad/public-key/dsa 58 - ironclad/public-key/ed25519 ironclad/public-key/ed448 59 - ironclad/public-key/elgamal ironclad/public-key/rsa 60 - ironclad/public-key/secp256k1 ironclad/public-key/secp256r1 61 - ironclad/public-key/secp384r1 ironclad/public-key/secp521r1 62 - ironclad/public-keys ironclad/tests)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/iterate.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "iterate"; 5 - version = "release-b0f9a9c6-git"; 6 - 7 - parasites = [ "iterate/tests" ]; 8 - 9 - description = "Jonathan Amsterdam's iterator/gatherer/accumulator facility"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/iterate/2021-05-31/iterate-release-b0f9a9c6-git.tgz"; 15 - sha256 = "1fqk0iaqg7xjwhdr8q05birlpwh4zvmlranmsmfps3wmldccc4ck"; 16 - }; 17 - 18 - packageName = "iterate"; 19 - 20 - asdFilesToKeep = ["iterate.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM iterate DESCRIPTION 24 - Jonathan Amsterdam's iterator/gatherer/accumulator facility SHA256 25 - 1fqk0iaqg7xjwhdr8q05birlpwh4zvmlranmsmfps3wmldccc4ck URL 26 - http://beta.quicklisp.org/archive/iterate/2021-05-31/iterate-release-b0f9a9c6-git.tgz 27 - MD5 0b2661e9b8195f3e5891aa14601e5a69 NAME iterate FILENAME iterate DEPS NIL 28 - DEPENDENCIES NIL VERSION release-b0f9a9c6-git SIBLINGS NIL PARASITES 29 - (iterate/tests)) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/jonathan.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "jonathan"; 5 - version = "20200925-git"; 6 - 7 - description = "High performance JSON encoder and decoder. Currently support: SBCL, CCL."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-ppcre" args."cl-syntax" args."cl-syntax-annot" args."fast-io" args."named-readtables" args."proc-parse" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."trivial-types" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz"; 13 - sha256 = "1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx"; 14 - }; 15 - 16 - packageName = "jonathan"; 17 - 18 - asdFilesToKeep = ["jonathan.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM jonathan DESCRIPTION 22 - High performance JSON encoder and decoder. Currently support: SBCL, CCL. 23 - SHA256 1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx URL 24 - http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz 25 - MD5 27cad3c107544f587f9f33295c10d81e NAME jonathan FILENAME jonathan DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 28 - (NAME cffi-toolchain FILENAME cffi-toolchain) 29 - (NAME cl-annot FILENAME cl-annot) (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME cl-syntax FILENAME cl-syntax) 31 - (NAME cl-syntax-annot FILENAME cl-syntax-annot) 32 - (NAME fast-io FILENAME fast-io) 33 - (NAME named-readtables FILENAME named-readtables) 34 - (NAME proc-parse FILENAME proc-parse) 35 - (NAME static-vectors FILENAME static-vectors) 36 - (NAME trivial-features FILENAME trivial-features) 37 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 38 - (NAME trivial-types FILENAME trivial-types)) 39 - DEPENDENCIES 40 - (alexandria babel cffi cffi-grovel cffi-toolchain cl-annot cl-ppcre 41 - cl-syntax cl-syntax-annot fast-io named-readtables proc-parse 42 - static-vectors trivial-features trivial-gray-streams trivial-types) 43 - VERSION 20200925-git SIBLINGS (jonathan-test) PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/jpl-queues.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "jpl-queues"; 5 - version = "0.1"; 6 - 7 - description = "A few different kinds of queues, with optional 8 - multithreading synchronization."; 9 - 10 - deps = [ args."alexandria" args."bordeaux-threads" args."jpl-util" ]; 11 - 12 - src = fetchurl { 13 - url = "http://beta.quicklisp.org/archive/jpl-queues/2010-10-06/jpl-queues-0.1.tgz"; 14 - sha256 = "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"; 15 - }; 16 - 17 - packageName = "jpl-queues"; 18 - 19 - asdFilesToKeep = ["jpl-queues.asd"]; 20 - overrides = x: x; 21 - } 22 - /* (SYSTEM jpl-queues DESCRIPTION A few different kinds of queues, with optional 23 - multithreading synchronization. 24 - SHA256 1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96 URL 25 - http://beta.quicklisp.org/archive/jpl-queues/2010-10-06/jpl-queues-0.1.tgz 26 - MD5 7c3d14c955db0a5c8ece2b9409333ce0 NAME jpl-queues FILENAME jpl-queues 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME jpl-util FILENAME jpl-util)) 31 - DEPENDENCIES (alexandria bordeaux-threads jpl-util) VERSION 0.1 SIBLINGS 32 - NIL PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/jpl-util.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "jpl-util"; 5 - version = "cl-20151031-git"; 6 - 7 - description = "Sundry utilities for J.P. Larocque."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-jpl-util/2015-10-31/cl-jpl-util-20151031-git.tgz"; 13 - sha256 = "1a3sfamgrqgsf0ql3fkbpmjbs837v1b3nxqxp4mkisp6yxanmhzx"; 14 - }; 15 - 16 - packageName = "jpl-util"; 17 - 18 - asdFilesToKeep = ["jpl-util.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM jpl-util DESCRIPTION Sundry utilities for J.P. Larocque. SHA256 22 - 1a3sfamgrqgsf0ql3fkbpmjbs837v1b3nxqxp4mkisp6yxanmhzx URL 23 - http://beta.quicklisp.org/archive/cl-jpl-util/2015-10-31/cl-jpl-util-20151031-git.tgz 24 - MD5 e294bedace729724873e7633b8265a00 NAME jpl-util FILENAME jpl-util DEPS 25 - NIL DEPENDENCIES NIL VERSION cl-20151031-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/jsown.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "jsown"; 5 - version = "20200218-git"; 6 - 7 - description = "Fast JSON parsing library. Mainly geared torwards fetching only a few keys of many objects, but efficient for other types of content too"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/jsown/2020-02-18/jsown-20200218-git.tgz"; 13 - sha256 = "10cn1fkznyq73vxwy95wsd36yfiiakmk278lv7mzzsyqc1jrn2hj"; 14 - }; 15 - 16 - packageName = "jsown"; 17 - 18 - asdFilesToKeep = ["jsown.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM jsown DESCRIPTION 22 - Fast JSON parsing library. Mainly geared torwards fetching only a few keys of many objects, but efficient for other types of content too 23 - SHA256 10cn1fkznyq73vxwy95wsd36yfiiakmk278lv7mzzsyqc1jrn2hj URL 24 - http://beta.quicklisp.org/archive/jsown/2020-02-18/jsown-20200218-git.tgz 25 - MD5 ecf8bfcc2a2ccbab9baddca6592b34ba NAME jsown FILENAME jsown DEPS NIL 26 - DEPENDENCIES NIL VERSION 20200218-git SIBLINGS (jsown-tests) PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/kmrcl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "kmrcl"; 5 - version = "20201016-git"; 6 - 7 - parasites = [ "kmrcl/test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz"; 15 - sha256 = "0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf"; 16 - }; 17 - 18 - packageName = "kmrcl"; 19 - 20 - asdFilesToKeep = ["kmrcl.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM kmrcl DESCRIPTION System lacks description SHA256 24 - 0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf URL 25 - http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz 26 - MD5 f86bc410907f748c3c453469702755b8 NAME kmrcl FILENAME kmrcl DEPS 27 - ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20201016-git SIBLINGS NIL 28 - PARASITES (kmrcl/test)) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lack-component.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lack-component"; 5 - version = "lack-20211209-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz"; 13 - sha256 = "0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg"; 14 - }; 15 - 16 - packageName = "lack-component"; 17 - 18 - asdFilesToKeep = ["lack-component.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lack-component DESCRIPTION System lacks description SHA256 22 - 0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg URL 23 - http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz MD5 24 - 610b1aea0280193d6f125aa1317a2d79 NAME lack-component FILENAME 25 - lack-component DEPS NIL DEPENDENCIES NIL VERSION lack-20211209-git SIBLINGS 26 - (lack-app-directory lack-app-file lack-middleware-accesslog 27 - lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf 28 - lack-middleware-mount lack-middleware-session lack-middleware-static 29 - lack-request lack-response lack-session-store-dbi lack-session-store-redis 30 - lack-test lack-util-writer-stream lack-util lack t-lack-component 31 - t-lack-middleware-accesslog t-lack-middleware-auth-basic 32 - t-lack-middleware-backtrace t-lack-middleware-csrf t-lack-middleware-mount 33 - t-lack-middleware-session t-lack-middleware-static t-lack-request 34 - t-lack-session-store-dbi t-lack-session-store-redis t-lack-util t-lack) 35 - PARASITES NIL) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lack-middleware-backtrace.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lack-middleware-backtrace"; 5 - version = "lack-20211209-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz"; 13 - sha256 = "0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg"; 14 - }; 15 - 16 - packageName = "lack-middleware-backtrace"; 17 - 18 - asdFilesToKeep = ["lack-middleware-backtrace.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lack-middleware-backtrace DESCRIPTION System lacks description 22 - SHA256 0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg URL 23 - http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz MD5 24 - 610b1aea0280193d6f125aa1317a2d79 NAME lack-middleware-backtrace FILENAME 25 - lack-middleware-backtrace DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES 26 - (uiop) VERSION lack-20211209-git SIBLINGS 27 - (lack-app-directory lack-app-file lack-component lack-middleware-accesslog 28 - lack-middleware-auth-basic lack-middleware-csrf lack-middleware-mount 29 - lack-middleware-session lack-middleware-static lack-request lack-response 30 - lack-session-store-dbi lack-session-store-redis lack-test 31 - lack-util-writer-stream lack-util lack t-lack-component 32 - t-lack-middleware-accesslog t-lack-middleware-auth-basic 33 - t-lack-middleware-backtrace t-lack-middleware-csrf t-lack-middleware-mount 34 - t-lack-middleware-session t-lack-middleware-static t-lack-request 35 - t-lack-session-store-dbi t-lack-session-store-redis t-lack-util t-lack) 36 - PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lack-util.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lack-util"; 5 - version = "lack-20211209-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz"; 13 - sha256 = "0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg"; 14 - }; 15 - 16 - packageName = "lack-util"; 17 - 18 - asdFilesToKeep = ["lack-util.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lack-util DESCRIPTION System lacks description SHA256 22 - 0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg URL 23 - http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz MD5 24 - 610b1aea0280193d6f125aa1317a2d79 NAME lack-util FILENAME lack-util DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME ironclad FILENAME ironclad)) 28 - DEPENDENCIES (alexandria bordeaux-threads ironclad) VERSION 29 - lack-20211209-git SIBLINGS 30 - (lack-app-directory lack-app-file lack-component lack-middleware-accesslog 31 - lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf 32 - lack-middleware-mount lack-middleware-session lack-middleware-static 33 - lack-request lack-response lack-session-store-dbi lack-session-store-redis 34 - lack-test lack-util-writer-stream lack t-lack-component 35 - t-lack-middleware-accesslog t-lack-middleware-auth-basic 36 - t-lack-middleware-backtrace t-lack-middleware-csrf t-lack-middleware-mount 37 - t-lack-middleware-session t-lack-middleware-static t-lack-request 38 - t-lack-session-store-dbi t-lack-session-store-redis t-lack-util t-lack) 39 - PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lack.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lack"; 5 - version = "20211209-git"; 6 - 7 - description = "A minimal Clack"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack-component" args."lack-util" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz"; 13 - sha256 = "0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg"; 14 - }; 15 - 16 - packageName = "lack"; 17 - 18 - asdFilesToKeep = ["lack.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lack DESCRIPTION A minimal Clack SHA256 22 - 0vd36hjcf98s9slkm6rmgsa7r10wvzl9s4xhfmcwh7qv7jxdgkhg URL 23 - http://beta.quicklisp.org/archive/lack/2021-12-09/lack-20211209-git.tgz MD5 24 - 610b1aea0280193d6f125aa1317a2d79 NAME lack FILENAME lack DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME ironclad FILENAME ironclad) 28 - (NAME lack-component FILENAME lack-component) 29 - (NAME lack-util FILENAME lack-util)) 30 - DEPENDENCIES 31 - (alexandria bordeaux-threads ironclad lack-component lack-util) VERSION 32 - 20211209-git SIBLINGS 33 - (lack-app-directory lack-app-file lack-component lack-middleware-accesslog 34 - lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf 35 - lack-middleware-mount lack-middleware-session lack-middleware-static 36 - lack-request lack-response lack-session-store-dbi lack-session-store-redis 37 - lack-test lack-util-writer-stream lack-util t-lack-component 38 - t-lack-middleware-accesslog t-lack-middleware-auth-basic 39 - t-lack-middleware-backtrace t-lack-middleware-csrf t-lack-middleware-mount 40 - t-lack-middleware-session t-lack-middleware-static t-lack-request 41 - t-lack-session-store-dbi t-lack-session-store-redis t-lack-util t-lack) 42 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lambda-fiddle.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lambda-fiddle"; 5 - version = "20190710-git"; 6 - 7 - description = "A collection of functions to process lambda-lists."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lambda-fiddle/2019-07-10/lambda-fiddle-20190710-git.tgz"; 13 - sha256 = "0v4qjpp9fq9rlxhr5f6mjs5f076xrjk19rl6qgp1ap1ykcrx8k4j"; 14 - }; 15 - 16 - packageName = "lambda-fiddle"; 17 - 18 - asdFilesToKeep = ["lambda-fiddle.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lambda-fiddle DESCRIPTION 22 - A collection of functions to process lambda-lists. SHA256 23 - 0v4qjpp9fq9rlxhr5f6mjs5f076xrjk19rl6qgp1ap1ykcrx8k4j URL 24 - http://beta.quicklisp.org/archive/lambda-fiddle/2019-07-10/lambda-fiddle-20190710-git.tgz 25 - MD5 78f68f144ace9cb8f634ac14b3414e5e NAME lambda-fiddle FILENAME 26 - lambda-fiddle DEPS NIL DEPENDENCIES NIL VERSION 20190710-git SIBLINGS NIL 27 - PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/legit.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "legit"; 5 - version = "20190710-git"; 6 - 7 - description = "CL interface to the GIT binary."; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-ppcre" args."documentation-utils" args."lambda-fiddle" args."simple-inferiors" args."trivial-indent" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/legit/2019-07-10/legit-20190710-git.tgz"; 13 - sha256 = "0g7cn50qvivsn0w9yszqw2qh22jsj60067pmg5pvwsjm03xdl9s9"; 14 - }; 15 - 16 - packageName = "legit"; 17 - 18 - asdFilesToKeep = ["legit.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM legit DESCRIPTION CL interface to the GIT binary. SHA256 22 - 0g7cn50qvivsn0w9yszqw2qh22jsj60067pmg5pvwsjm03xdl9s9 URL 23 - http://beta.quicklisp.org/archive/legit/2019-07-10/legit-20190710-git.tgz 24 - MD5 9b380fc23d4bab086df8a0e4a598457a NAME legit FILENAME legit DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cl-ppcre FILENAME cl-ppcre) 28 - (NAME documentation-utils FILENAME documentation-utils) 29 - (NAME lambda-fiddle FILENAME lambda-fiddle) 30 - (NAME simple-inferiors FILENAME simple-inferiors) 31 - (NAME trivial-indent FILENAME trivial-indent) (NAME uiop FILENAME uiop)) 32 - DEPENDENCIES 33 - (alexandria bordeaux-threads cl-ppcre documentation-utils lambda-fiddle 34 - simple-inferiors trivial-indent uiop) 35 - VERSION 20190710-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/let-plus.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "let-plus"; 5 - version = "20191130-git"; 6 - 7 - parasites = [ "let-plus/tests" ]; 8 - 9 - description = "Destructuring extension of LET*."; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."lift" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz"; 15 - sha256 = "0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p"; 16 - }; 17 - 18 - packageName = "let-plus"; 19 - 20 - asdFilesToKeep = ["let-plus.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM let-plus DESCRIPTION Destructuring extension of LET*. SHA256 24 - 0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p URL 25 - http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz 26 - MD5 1b8d1660ed67852ea31cad44a6fc15d0 NAME let-plus FILENAME let-plus DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME lift FILENAME lift)) 29 - DEPENDENCIES (alexandria anaphora lift) VERSION 20191130-git SIBLINGS NIL 30 - PARASITES (let-plus/tests)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lev.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lev"; 5 - version = "20150505-git"; 6 - 7 - description = "libev bindings for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz"; 13 - sha256 = "0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl"; 14 - }; 15 - 16 - packageName = "lev"; 17 - 18 - asdFilesToKeep = ["lev.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lev DESCRIPTION libev bindings for Common Lisp SHA256 22 - 0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl URL 23 - http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz MD5 24 - 10f340f7500beb98b5c0d4a9876131fb NAME lev FILENAME lev DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cffi FILENAME cffi) 27 - (NAME trivial-features FILENAME trivial-features)) 28 - DEPENDENCIES (alexandria babel cffi trivial-features) VERSION 20150505-git 29 - SIBLINGS NIL PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lfarm-client.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lfarm-client"; 5 - version = "lfarm-20150608-git"; 6 - 7 - description = "Client component of lfarm, a library for distributing work across machines."; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."lfarm-common" args."lparallel" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 - sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 14 - }; 15 - 16 - packageName = "lfarm-client"; 17 - 18 - asdFilesToKeep = ["lfarm-client.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lfarm-client DESCRIPTION 22 - Client component of lfarm, a library for distributing work across machines. 23 - SHA256 1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66 URL 24 - http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz 25 - MD5 4cc91df44a932b3175a1eabf73d6e42d NAME lfarm-client FILENAME 26 - lfarm-client DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-store FILENAME cl-store) 30 - (NAME flexi-streams FILENAME flexi-streams) 31 - (NAME lfarm-common FILENAME lfarm-common) 32 - (NAME lparallel FILENAME lparallel) 33 - (NAME split-sequence FILENAME split-sequence) 34 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 35 - (NAME usocket FILENAME usocket)) 36 - DEPENDENCIES 37 - (alexandria bordeaux-threads cl-store flexi-streams lfarm-common lparallel 38 - split-sequence trivial-gray-streams usocket) 39 - VERSION lfarm-20150608-git SIBLINGS 40 - (lfarm-admin lfarm-common lfarm-gss lfarm-launcher lfarm-server lfarm-ssl 41 - lfarm-test) 42 - PARASITES NIL) */
-42
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lfarm-common.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lfarm-common"; 5 - version = "lfarm-20150608-git"; 6 - 7 - description = "(private) Common components of lfarm, a library for distributing 8 - work across machines."; 9 - 10 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 11 - 12 - src = fetchurl { 13 - url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 14 - sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 15 - }; 16 - 17 - packageName = "lfarm-common"; 18 - 19 - asdFilesToKeep = ["lfarm-common.asd"]; 20 - overrides = x: x; 21 - } 22 - /* (SYSTEM lfarm-common DESCRIPTION 23 - (private) Common components of lfarm, a library for distributing 24 - work across machines. 25 - SHA256 1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66 URL 26 - http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz 27 - MD5 4cc91df44a932b3175a1eabf73d6e42d NAME lfarm-common FILENAME 28 - lfarm-common DEPS 29 - ((NAME alexandria FILENAME alexandria) 30 - (NAME bordeaux-threads FILENAME bordeaux-threads) 31 - (NAME cl-store FILENAME cl-store) 32 - (NAME flexi-streams FILENAME flexi-streams) 33 - (NAME split-sequence FILENAME split-sequence) 34 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 35 - (NAME usocket FILENAME usocket)) 36 - DEPENDENCIES 37 - (alexandria bordeaux-threads cl-store flexi-streams split-sequence 38 - trivial-gray-streams usocket) 39 - VERSION lfarm-20150608-git SIBLINGS 40 - (lfarm-admin lfarm-client lfarm-gss lfarm-launcher lfarm-server lfarm-ssl 41 - lfarm-test) 42 - PARASITES NIL) */
-41
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lfarm-server.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lfarm-server"; 5 - version = "lfarm-20150608-git"; 6 - 7 - description = "Server component of lfarm, a library for distributing work across machines."; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."lfarm-common" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 - sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 14 - }; 15 - 16 - packageName = "lfarm-server"; 17 - 18 - asdFilesToKeep = ["lfarm-server.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lfarm-server DESCRIPTION 22 - Server component of lfarm, a library for distributing work across machines. 23 - SHA256 1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66 URL 24 - http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz 25 - MD5 4cc91df44a932b3175a1eabf73d6e42d NAME lfarm-server FILENAME 26 - lfarm-server DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-store FILENAME cl-store) 30 - (NAME flexi-streams FILENAME flexi-streams) 31 - (NAME lfarm-common FILENAME lfarm-common) 32 - (NAME split-sequence FILENAME split-sequence) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 34 - (NAME usocket FILENAME usocket)) 35 - DEPENDENCIES 36 - (alexandria bordeaux-threads cl-store flexi-streams lfarm-common 37 - split-sequence trivial-gray-streams usocket) 38 - VERSION lfarm-20150608-git SIBLINGS 39 - (lfarm-admin lfarm-client lfarm-common lfarm-gss lfarm-launcher lfarm-ssl 40 - lfarm-test) 41 - PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lfarm-ssl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lfarm-ssl"; 5 - version = "lfarm-20150608-git"; 6 - 7 - description = "SSL support for lfarm"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl_plus_ssl" args."cl-store" args."flexi-streams" args."lfarm-common" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 - sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 14 - }; 15 - 16 - packageName = "lfarm-ssl"; 17 - 18 - asdFilesToKeep = ["lfarm-ssl.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lfarm-ssl DESCRIPTION SSL support for lfarm SHA256 22 - 1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66 URL 23 - http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz 24 - MD5 4cc91df44a932b3175a1eabf73d6e42d NAME lfarm-ssl FILENAME lfarm-ssl DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cl+ssl FILENAME cl_plus_ssl) 28 - (NAME cl-store FILENAME cl-store) 29 - (NAME flexi-streams FILENAME flexi-streams) 30 - (NAME lfarm-common FILENAME lfarm-common) 31 - (NAME split-sequence FILENAME split-sequence) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-garbage FILENAME trivial-garbage) 34 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 35 - (NAME usocket FILENAME usocket)) 36 - DEPENDENCIES 37 - (alexandria babel bordeaux-threads cffi cl+ssl cl-store flexi-streams 38 - lfarm-common split-sequence trivial-features trivial-garbage 39 - trivial-gray-streams usocket) 40 - VERSION lfarm-20150608-git SIBLINGS 41 - (lfarm-admin lfarm-client lfarm-common lfarm-gss lfarm-launcher 42 - lfarm-server lfarm-test) 43 - PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lift.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lift"; 5 - version = "20211209-git"; 6 - 7 - description = "LIsp Framework for Testing"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lift/2021-12-09/lift-20211209-git.tgz"; 13 - sha256 = "1r3i1gi2kggxbvh6mk58cddp5mi9kh7v23gd3z5q70w7cy69iiy7"; 14 - }; 15 - 16 - packageName = "lift"; 17 - 18 - asdFilesToKeep = ["lift.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lift DESCRIPTION LIsp Framework for Testing SHA256 22 - 1r3i1gi2kggxbvh6mk58cddp5mi9kh7v23gd3z5q70w7cy69iiy7 URL 23 - http://beta.quicklisp.org/archive/lift/2021-12-09/lift-20211209-git.tgz MD5 24 - b98c58658dba0b84a034aa1f0f68dcc9 NAME lift FILENAME lift DEPS NIL 25 - DEPENDENCIES NIL VERSION 20211209-git SIBLINGS 26 - (lift-documentation lift-test) PARASITES NIL) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lisp-binary.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lisp-binary"; 5 - version = "20210411-git"; 6 - 7 - description = "Declare binary formats as structs and then read and write them."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."closer-mop" args."flexi-streams" args."iterate" args."moptilities" args."quasiquote-2_dot_0" args."trivial-features" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lisp-binary/2021-04-11/lisp-binary-20210411-git.tgz"; 13 - sha256 = "1sbapl8qla4xb8wcix9yxpijkbk1bpybhay7ncb3z2im7r2kzsnb"; 14 - }; 15 - 16 - packageName = "lisp-binary"; 17 - 18 - asdFilesToKeep = ["lisp-binary.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lisp-binary DESCRIPTION 22 - Declare binary formats as structs and then read and write them. SHA256 23 - 1sbapl8qla4xb8wcix9yxpijkbk1bpybhay7ncb3z2im7r2kzsnb URL 24 - http://beta.quicklisp.org/archive/lisp-binary/2021-04-11/lisp-binary-20210411-git.tgz 25 - MD5 29d85f01a1cb17742164bacae940d29c NAME lisp-binary FILENAME lisp-binary 26 - DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cffi FILENAME cffi) (NAME closer-mop FILENAME closer-mop) 29 - (NAME flexi-streams FILENAME flexi-streams) 30 - (NAME iterate FILENAME iterate) (NAME moptilities FILENAME moptilities) 31 - (NAME quasiquote-2.0 FILENAME quasiquote-2_dot_0) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 34 - DEPENDENCIES 35 - (alexandria babel cffi closer-mop flexi-streams iterate moptilities 36 - quasiquote-2.0 trivial-features trivial-gray-streams) 37 - VERSION 20210411-git SIBLINGS (lisp-binary-test) PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lisp-namespace.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lisp-namespace"; 5 - version = "20211020-git"; 6 - 7 - description = "Provides LISP-N --- extensible namespaces in Common Lisp."; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lisp-namespace/2021-10-20/lisp-namespace-20211020-git.tgz"; 13 - sha256 = "1vw7zxzhlxqjnas3cxk0f58hxvlvki78vbqsabj6f3n1rq6yx7b7"; 14 - }; 15 - 16 - packageName = "lisp-namespace"; 17 - 18 - asdFilesToKeep = ["lisp-namespace.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lisp-namespace DESCRIPTION 22 - Provides LISP-N --- extensible namespaces in Common Lisp. SHA256 23 - 1vw7zxzhlxqjnas3cxk0f58hxvlvki78vbqsabj6f3n1rq6yx7b7 URL 24 - http://beta.quicklisp.org/archive/lisp-namespace/2021-10-20/lisp-namespace-20211020-git.tgz 25 - MD5 71d02a1704c93281028316e96ecaead2 NAME lisp-namespace FILENAME 26 - lisp-namespace DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES 27 - (alexandria) VERSION 20211020-git SIBLINGS (lisp-namespace.test) PARASITES 28 - NIL) */
-49
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lisp-stat.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lisp-stat"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "lisp-stat/rdata" ]; 8 - 9 - description = "A statistical computing environment for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-ascii-table" args."cl-csv" args."cl-interpol" args."cl-ppcre" args."cl-semver" args."cl-unicode" args."data-frame" args."dexador" args."dfio" args."esrap" args."flexi-streams" args."iterate" args."let-plus" args."make-hash" args."named-readtables" args."num-utils" args."select" args."split-sequence" args."trivial-with-current-source-form" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/lisp-stat/2021-04-11/lisp-stat-20210411-git.tgz"; 15 - sha256 = "110cfj1svn9m9xn6l8p5z88knp0idyf0zcbnwi9rrgxssvaiwncg"; 16 - }; 17 - 18 - packageName = "lisp-stat"; 19 - 20 - asdFilesToKeep = ["lisp-stat.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM lisp-stat DESCRIPTION 24 - A statistical computing environment for Common Lisp SHA256 25 - 110cfj1svn9m9xn6l8p5z88knp0idyf0zcbnwi9rrgxssvaiwncg URL 26 - http://beta.quicklisp.org/archive/lisp-stat/2021-04-11/lisp-stat-20210411-git.tgz 27 - MD5 766777ed3ba44a0835fc02c5b1f13970 NAME lisp-stat FILENAME lisp-stat DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 29 - (NAME array-operations FILENAME array-operations) 30 - (NAME cl-ascii-table FILENAME cl-ascii-table) 31 - (NAME cl-csv FILENAME cl-csv) (NAME cl-interpol FILENAME cl-interpol) 32 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-semver FILENAME cl-semver) 33 - (NAME cl-unicode FILENAME cl-unicode) 34 - (NAME data-frame FILENAME data-frame) (NAME dexador FILENAME dexador) 35 - (NAME dfio FILENAME dfio) (NAME esrap FILENAME esrap) 36 - (NAME flexi-streams FILENAME flexi-streams) 37 - (NAME iterate FILENAME iterate) (NAME let-plus FILENAME let-plus) 38 - (NAME make-hash FILENAME make-hash) 39 - (NAME named-readtables FILENAME named-readtables) 40 - (NAME num-utils FILENAME num-utils) (NAME select FILENAME select) 41 - (NAME split-sequence FILENAME split-sequence) 42 - (NAME trivial-with-current-source-form FILENAME 43 - trivial-with-current-source-form)) 44 - DEPENDENCIES 45 - (alexandria anaphora array-operations cl-ascii-table cl-csv cl-interpol 46 - cl-ppcre cl-semver cl-unicode data-frame dexador dfio esrap flexi-streams 47 - iterate let-plus make-hash named-readtables num-utils select 48 - split-sequence trivial-with-current-source-form) 49 - VERSION 20210411-git SIBLINGS NIL PARASITES (lisp-stat/rdata)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lisp-unit.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lisp-unit"; 5 - version = "20170124-git"; 6 - 7 - description = "Common Lisp library that supports unit testing."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lisp-unit/2017-01-24/lisp-unit-20170124-git.tgz"; 13 - sha256 = "00bc19r7vr76rpk8lh8z7qln0glpf66mzqxw215488zwz3nwcq4m"; 14 - }; 15 - 16 - packageName = "lisp-unit"; 17 - 18 - asdFilesToKeep = ["lisp-unit.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lisp-unit DESCRIPTION 22 - Common Lisp library that supports unit testing. SHA256 23 - 00bc19r7vr76rpk8lh8z7qln0glpf66mzqxw215488zwz3nwcq4m URL 24 - http://beta.quicklisp.org/archive/lisp-unit/2017-01-24/lisp-unit-20170124-git.tgz 25 - MD5 2c55342cb8af18b290bb6a28c75deac5 NAME lisp-unit FILENAME lisp-unit DEPS 26 - NIL DEPENDENCIES NIL VERSION 20170124-git SIBLINGS NIL PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lisp-unit2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lisp-unit2"; 5 - version = "20180131-git"; 6 - 7 - parasites = [ "lisp-unit2-test" ]; 8 - 9 - description = "Common Lisp library that supports unit testing."; 10 - 11 - deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."named-readtables" args."symbol-munger" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz"; 15 - sha256 = "04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7"; 16 - }; 17 - 18 - packageName = "lisp-unit2"; 19 - 20 - asdFilesToKeep = ["lisp-unit2.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM lisp-unit2 DESCRIPTION 24 - Common Lisp library that supports unit testing. SHA256 25 - 04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7 URL 26 - http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz 27 - MD5 d061fa640837441a5d2eecbefd8b2e69 NAME lisp-unit2 FILENAME lisp-unit2 28 - DEPS 29 - ((NAME alexandria FILENAME alexandria) 30 - (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre) 31 - (NAME cl-unicode FILENAME cl-unicode) 32 - (NAME flexi-streams FILENAME flexi-streams) 33 - (NAME iterate FILENAME iterate) 34 - (NAME named-readtables FILENAME named-readtables) 35 - (NAME symbol-munger FILENAME symbol-munger)) 36 - DEPENDENCIES 37 - (alexandria cl-interpol cl-ppcre cl-unicode flexi-streams iterate 38 - named-readtables symbol-munger) 39 - VERSION 20180131-git SIBLINGS NIL PARASITES (lisp-unit2-test)) */
-37
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lla.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lla"; 5 - version = "20180328-git"; 6 - 7 - parasites = [ "lla-tests" ]; 8 - 9 - description = "Lisp Linear Algebra"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."babel" args."cffi" args."cl-num-utils" args."cl-slice" args."clunit" args."let-plus" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/lla/2018-03-28/lla-20180328-git.tgz"; 15 - sha256 = "0azljp93ap9lh2gfh1vvl99r18s6a03p880c3wvwpf9valb784hj"; 16 - }; 17 - 18 - packageName = "lla"; 19 - 20 - asdFilesToKeep = ["lla.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM lla DESCRIPTION Lisp Linear Algebra SHA256 24 - 0azljp93ap9lh2gfh1vvl99r18s6a03p880c3wvwpf9valb784hj URL 25 - http://beta.quicklisp.org/archive/lla/2018-03-28/lla-20180328-git.tgz MD5 26 - 61d583603d5cacf9d81486a0cfcfaf6a NAME lla FILENAME lla DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME array-operations FILENAME array-operations) 29 - (NAME babel FILENAME babel) (NAME cffi FILENAME cffi) 30 - (NAME cl-num-utils FILENAME cl-num-utils) 31 - (NAME cl-slice FILENAME cl-slice) (NAME clunit FILENAME clunit) 32 - (NAME let-plus FILENAME let-plus) 33 - (NAME trivial-features FILENAME trivial-features)) 34 - DEPENDENCIES 35 - (alexandria anaphora array-operations babel cffi cl-num-utils cl-slice 36 - clunit let-plus trivial-features) 37 - VERSION 20180328-git SIBLINGS NIL PARASITES (lla-tests)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/local-time.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "local-time"; 5 - version = "20210124-git"; 6 - 7 - parasites = [ "local-time/test" ]; 8 - 9 - description = "A library for manipulating dates and times, based on a paper by Erik Naggum"; 10 - 11 - deps = [ args."hu_dot_dwim_dot_stefil" args."uiop" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz"; 15 - sha256 = "0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s"; 16 - }; 17 - 18 - packageName = "local-time"; 19 - 20 - asdFilesToKeep = ["local-time.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM local-time DESCRIPTION 24 - A library for manipulating dates and times, based on a paper by Erik Naggum 25 - SHA256 0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s URL 26 - http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz 27 - MD5 631d67bc84ae838792717b256f2cdbaf NAME local-time FILENAME local-time 28 - DEPS 29 - ((NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil) 30 - (NAME uiop FILENAME uiop)) 31 - DEPENDENCIES (hu.dwim.stefil uiop) VERSION 20210124-git SIBLINGS 32 - (cl-postgres+local-time) PARASITES (local-time/test)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/log4cl.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "log4cl"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "log4cl/syslog" "log4cl/test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."stefil" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/log4cl/2021-12-09/log4cl-20211209-git.tgz"; 15 - sha256 = "17jwxhc2ysh3m3cp7wvh8cy359v7w6kz9vk9f07japzi3krv9iq9"; 16 - }; 17 - 18 - packageName = "log4cl"; 19 - 20 - asdFilesToKeep = ["log4cl.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM log4cl DESCRIPTION System lacks description SHA256 24 - 17jwxhc2ysh3m3cp7wvh8cy359v7w6kz9vk9f07japzi3krv9iq9 URL 25 - http://beta.quicklisp.org/archive/log4cl/2021-12-09/log4cl-20211209-git.tgz 26 - MD5 569122fed30c089b67527926468dcf44 NAME log4cl FILENAME log4cl DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME stefil FILENAME stefil)) 30 - DEPENDENCIES (alexandria bordeaux-threads stefil) VERSION 20211209-git 31 - SIBLINGS (log4cl-examples log4cl.log4slime log4cl.log4sly) PARASITES 32 - (log4cl/syslog log4cl/test)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lparallel.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lparallel"; 5 - version = "20160825-git"; 6 - 7 - description = "Parallelism for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz"; 13 - sha256 = "0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1"; 14 - }; 15 - 16 - packageName = "lparallel"; 17 - 18 - asdFilesToKeep = ["lparallel.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lparallel DESCRIPTION Parallelism for Common Lisp SHA256 22 - 0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1 URL 23 - http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz 24 - MD5 6393e8d0c0cc9ed1c88b6e7cca8de5df NAME lparallel FILENAME lparallel DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads)) 27 - DEPENDENCIES (alexandria bordeaux-threads) VERSION 20160825-git SIBLINGS 28 - (lparallel-bench lparallel-test) PARASITES NIL) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/lquery.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "lquery"; 5 - version = "20201220-git"; 6 - 7 - description = "A library to allow jQuery-like HTML/DOM manipulation."; 8 - 9 - deps = [ args."array-utils" args."clss" args."documentation-utils" args."form-fiddle" args."plump" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/lquery/2020-12-20/lquery-20201220-git.tgz"; 13 - sha256 = "0mfnk1p73aihraklw802j5mjgc8cjxva0mdf0c4p7b253crf15jx"; 14 - }; 15 - 16 - packageName = "lquery"; 17 - 18 - asdFilesToKeep = ["lquery.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM lquery DESCRIPTION 22 - A library to allow jQuery-like HTML/DOM manipulation. SHA256 23 - 0mfnk1p73aihraklw802j5mjgc8cjxva0mdf0c4p7b253crf15jx URL 24 - http://beta.quicklisp.org/archive/lquery/2020-12-20/lquery-20201220-git.tgz 25 - MD5 a71685848959cf33cd6963b4a5f9e2ed NAME lquery FILENAME lquery DEPS 26 - ((NAME array-utils FILENAME array-utils) (NAME clss FILENAME clss) 27 - (NAME documentation-utils FILENAME documentation-utils) 28 - (NAME form-fiddle FILENAME form-fiddle) (NAME plump FILENAME plump) 29 - (NAME trivial-indent FILENAME trivial-indent)) 30 - DEPENDENCIES 31 - (array-utils clss documentation-utils form-fiddle plump trivial-indent) 32 - VERSION 20201220-git SIBLINGS (lquery-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/make-hash.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "make-hash"; 5 - version = "20130615-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/make-hash/2013-06-15/make-hash-20130615-git.tgz"; 13 - sha256 = "1ghcyqjhizkbfsvx1cih7d665w8yvbs1xv8pfi3hs1ghbn8njbkw"; 14 - }; 15 - 16 - packageName = "make-hash"; 17 - 18 - asdFilesToKeep = ["make-hash.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM make-hash DESCRIPTION System lacks description SHA256 22 - 1ghcyqjhizkbfsvx1cih7d665w8yvbs1xv8pfi3hs1ghbn8njbkw URL 23 - http://beta.quicklisp.org/archive/make-hash/2013-06-15/make-hash-20130615-git.tgz 24 - MD5 4f612ef068411284c88e0381fa4a0c7f NAME make-hash FILENAME make-hash DEPS 25 - NIL DEPENDENCIES NIL VERSION 20130615-git SIBLINGS (make-hash-tests) 26 - PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/map-set.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "map-set"; 5 - version = "20190307-hg"; 6 - 7 - description = "Set-like data structure."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz"; 13 - sha256 = "1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9"; 14 - }; 15 - 16 - packageName = "map-set"; 17 - 18 - asdFilesToKeep = ["map-set.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM map-set DESCRIPTION Set-like data structure. SHA256 22 - 1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9 URL 23 - http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz 24 - MD5 866dba36cdf060c943267cb79ccc0532 NAME map-set FILENAME map-set DEPS NIL 25 - DEPENDENCIES NIL VERSION 20190307-hg SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/marshal.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "marshal"; 5 - version = "cl-20211020-git"; 6 - 7 - description = "marshal: Simple (de)serialization of Lisp datastructures."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-marshal/2021-10-20/cl-marshal-20211020-git.tgz"; 13 - sha256 = "0zv4bpj352frdrsk7r1yc67385h2n00cy19nz3b72sznsjynqvk8"; 14 - }; 15 - 16 - packageName = "marshal"; 17 - 18 - asdFilesToKeep = ["marshal.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM marshal DESCRIPTION 22 - marshal: Simple (de)serialization of Lisp datastructures. SHA256 23 - 0zv4bpj352frdrsk7r1yc67385h2n00cy19nz3b72sznsjynqvk8 URL 24 - http://beta.quicklisp.org/archive/cl-marshal/2021-10-20/cl-marshal-20211020-git.tgz 25 - MD5 52eaad7da569610099d15c1d91020e17 NAME marshal FILENAME marshal DEPS NIL 26 - DEPENDENCIES NIL VERSION cl-20211020-git SIBLINGS (marshal-tests) PARASITES 27 - NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/md5.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "md5"; 5 - version = "20210630-git"; 6 - 7 - description = "The MD5 Message-Digest Algorithm RFC 1321"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/md5/2021-06-30/md5-20210630-git.tgz"; 13 - sha256 = "16kilbw3p68xf5fnj00xpvm4l8ylk5k9z6vbnq244ip0sygfizcv"; 14 - }; 15 - 16 - packageName = "md5"; 17 - 18 - asdFilesToKeep = ["md5.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM md5 DESCRIPTION The MD5 Message-Digest Algorithm RFC 1321 SHA256 22 - 16kilbw3p68xf5fnj00xpvm4l8ylk5k9z6vbnq244ip0sygfizcv URL 23 - http://beta.quicklisp.org/archive/md5/2021-06-30/md5-20210630-git.tgz MD5 24 - ecb1fa8eea6848c2f14fdfeb03d47056 NAME md5 FILENAME md5 DEPS NIL 25 - DEPENDENCIES NIL VERSION 20210630-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/metabang-bind.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "metabang-bind"; 5 - version = "20200218-git"; 6 - 7 - description = "Bind is a macro that generalizes multiple-value-bind, let, let*, destructuring-bind, structure and slot accessors, and a whole lot more."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz"; 13 - sha256 = "0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq"; 14 - }; 15 - 16 - packageName = "metabang-bind"; 17 - 18 - asdFilesToKeep = ["metabang-bind.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM metabang-bind DESCRIPTION 22 - Bind is a macro that generalizes multiple-value-bind, let, let*, destructuring-bind, structure and slot accessors, and a whole lot more. 23 - SHA256 0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq URL 24 - http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz 25 - MD5 25ee72526862a9d794f7b0fc1826029e NAME metabang-bind FILENAME 26 - metabang-bind DEPS NIL DEPENDENCIES NIL VERSION 20200218-git SIBLINGS 27 - (metabang-bind-test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/metatilities-base.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "metatilities-base"; 5 - version = "20191227-git"; 6 - 7 - description = "These are metabang.com's Common Lisp basic utilities."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz"; 13 - sha256 = "1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil"; 14 - }; 15 - 16 - packageName = "metatilities-base"; 17 - 18 - asdFilesToKeep = ["metatilities-base.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM metatilities-base DESCRIPTION 22 - These are metabang.com's Common Lisp basic utilities. SHA256 23 - 1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil URL 24 - http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz 25 - MD5 7968829ca353c4a42784a151317029f1 NAME metatilities-base FILENAME 26 - metatilities-base DEPS NIL DEPENDENCIES NIL VERSION 20191227-git SIBLINGS 27 - (metatilities-base-test) PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/mgl-pax.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "mgl-pax"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "mgl-pax/document" "mgl-pax/navigate" ]; 8 - 9 - description = "Exploratory programming tool and documentation 10 - generator."; 11 - 12 - deps = [ args."_3bmd" args."_3bmd-ext-code-blocks" args."alexandria" args."colorize" args."md5" args."named-readtables" args."pythonic-string-reader" args."swank" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/mgl-pax/2021-12-09/mgl-pax-20211209-git.tgz"; 16 - sha256 = "19d47msc8240bldkc0fi60cpzsx1q9392dxhmqn28gn7998pdkgh"; 17 - }; 18 - 19 - packageName = "mgl-pax"; 20 - 21 - asdFilesToKeep = ["mgl-pax.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM mgl-pax DESCRIPTION Exploratory programming tool and documentation 25 - generator. 26 - SHA256 19d47msc8240bldkc0fi60cpzsx1q9392dxhmqn28gn7998pdkgh URL 27 - http://beta.quicklisp.org/archive/mgl-pax/2021-12-09/mgl-pax-20211209-git.tgz 28 - MD5 605583bb2910e0fe2211c8152fe38e0e NAME mgl-pax FILENAME mgl-pax DEPS 29 - ((NAME 3bmd FILENAME _3bmd) 30 - (NAME 3bmd-ext-code-blocks FILENAME _3bmd-ext-code-blocks) 31 - (NAME alexandria FILENAME alexandria) (NAME colorize FILENAME colorize) 32 - (NAME md5 FILENAME md5) (NAME named-readtables FILENAME named-readtables) 33 - (NAME pythonic-string-reader FILENAME pythonic-string-reader) 34 - (NAME swank FILENAME swank)) 35 - DEPENDENCIES 36 - (3bmd 3bmd-ext-code-blocks alexandria colorize md5 named-readtables 37 - pythonic-string-reader swank) 38 - VERSION 20211209-git SIBLINGS NIL PARASITES 39 - (mgl-pax/document mgl-pax/navigate)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/minheap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "minheap"; 5 - version = "20160628-git"; 6 - 7 - description = "Various heap/priority queue data structures"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/minheap/2016-06-28/minheap-20160628-git.tgz"; 13 - sha256 = "1zjmxivspywf3nr7a5qwih2vf7w62r8pmyq25qhm3a0v2fdaihzz"; 14 - }; 15 - 16 - packageName = "minheap"; 17 - 18 - asdFilesToKeep = ["minheap.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM minheap DESCRIPTION Various heap/priority queue data structures 22 - SHA256 1zjmxivspywf3nr7a5qwih2vf7w62r8pmyq25qhm3a0v2fdaihzz URL 23 - http://beta.quicklisp.org/archive/minheap/2016-06-28/minheap-20160628-git.tgz 24 - MD5 27a57cdd27e91eb767f1377fcbfe2af3 NAME minheap FILENAME minheap DEPS NIL 25 - DEPENDENCIES NIL VERSION 20160628-git SIBLINGS (minheap-tests) PARASITES 26 - NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/misc-extensions.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "misc-extensions"; 5 - version = "20150608-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz"; 13 - sha256 = "0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj"; 14 - }; 15 - 16 - packageName = "misc-extensions"; 17 - 18 - asdFilesToKeep = ["misc-extensions.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM misc-extensions DESCRIPTION System lacks description SHA256 22 - 0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj URL 23 - http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz 24 - MD5 ef8a05dd4382bb9d1e3960aeb77e332e NAME misc-extensions FILENAME 25 - misc-extensions DEPS NIL DEPENDENCIES NIL VERSION 20150608-git SIBLINGS NIL 26 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/mk-string-metrics.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "mk-string-metrics"; 5 - version = "20180131-git"; 6 - 7 - description = "efficient implementations of various string metric algorithms"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz"; 13 - sha256 = "10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4"; 14 - }; 15 - 16 - packageName = "mk-string-metrics"; 17 - 18 - asdFilesToKeep = ["mk-string-metrics.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM mk-string-metrics DESCRIPTION 22 - efficient implementations of various string metric algorithms SHA256 23 - 10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4 URL 24 - http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz 25 - MD5 40f23794a7d841cb178f5951d3992886 NAME mk-string-metrics FILENAME 26 - mk-string-metrics DEPS NIL DEPENDENCIES NIL VERSION 20180131-git SIBLINGS 27 - (mk-string-metrics-tests) PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/mmap.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "mmap"; 5 - version = "20201220-git"; 6 - 7 - description = "Portable mmap (file memory mapping) utility library."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."documentation-utils" args."trivial-features" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/mmap/2020-12-20/mmap-20201220-git.tgz"; 13 - sha256 = "147xw351xh90k3yvc1fn7k418afmgngd56i8a6d7p41fzs54g6ij"; 14 - }; 15 - 16 - packageName = "mmap"; 17 - 18 - asdFilesToKeep = ["mmap.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM mmap DESCRIPTION 22 - Portable mmap (file memory mapping) utility library. SHA256 23 - 147xw351xh90k3yvc1fn7k418afmgngd56i8a6d7p41fzs54g6ij URL 24 - http://beta.quicklisp.org/archive/mmap/2020-12-20/mmap-20201220-git.tgz MD5 25 - e2dbeb48b59735bd2ed54ea7f9cdfe0f NAME mmap FILENAME mmap DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) 28 - (NAME documentation-utils FILENAME documentation-utils) 29 - (NAME trivial-features FILENAME trivial-features) 30 - (NAME trivial-indent FILENAME trivial-indent)) 31 - DEPENDENCIES 32 - (alexandria babel cffi documentation-utils trivial-features trivial-indent) 33 - VERSION 20201220-git SIBLINGS (mmap-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/moptilities.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "moptilities"; 5 - version = "20170403-git"; 6 - 7 - description = "Common Lisp MOP utilities"; 8 - 9 - deps = [ args."closer-mop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz"; 13 - sha256 = "0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8"; 14 - }; 15 - 16 - packageName = "moptilities"; 17 - 18 - asdFilesToKeep = ["moptilities.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM moptilities DESCRIPTION Common Lisp MOP utilities SHA256 22 - 0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8 URL 23 - http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz 24 - MD5 b118397be325e60a772ea3631c4f19a4 NAME moptilities FILENAME moptilities 25 - DEPS ((NAME closer-mop FILENAME closer-mop)) DEPENDENCIES (closer-mop) 26 - VERSION 20170403-git SIBLINGS (moptilities-test) PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/more-conditions.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "more-conditions"; 5 - version = "20180831-git"; 6 - 7 - parasites = [ "more-conditions/test" ]; 8 - 9 - description = "This system provides some generic condition classes in 10 - conjunction with support functions and macros."; 11 - 12 - deps = [ args."alexandria" args."closer-mop" args."fiveam" args."let-plus" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz"; 16 - sha256 = "0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x"; 17 - }; 18 - 19 - packageName = "more-conditions"; 20 - 21 - asdFilesToKeep = ["more-conditions.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM more-conditions DESCRIPTION 25 - This system provides some generic condition classes in 26 - conjunction with support functions and macros. 27 - SHA256 0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x URL 28 - http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz 29 - MD5 c4797bd3c6c50fba02a6e8164ddafe28 NAME more-conditions FILENAME 30 - more-conditions DEPS 31 - ((NAME alexandria FILENAME alexandria) 32 - (NAME closer-mop FILENAME closer-mop) (NAME fiveam FILENAME fiveam) 33 - (NAME let-plus FILENAME let-plus)) 34 - DEPENDENCIES (alexandria closer-mop fiveam let-plus) VERSION 20180831-git 35 - SIBLINGS NIL PARASITES (more-conditions/test)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/mt19937.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "mt19937"; 5 - version = "1.1.1"; 6 - 7 - description = "Portable MT19937 Mersenne Twister random number generator"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz"; 13 - sha256 = "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"; 14 - }; 15 - 16 - packageName = "mt19937"; 17 - 18 - asdFilesToKeep = ["mt19937.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM mt19937 DESCRIPTION 22 - Portable MT19937 Mersenne Twister random number generator SHA256 23 - 1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv URL 24 - http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz MD5 25 - 54c63977b6d77abd66ebe0227b77c143 NAME mt19937 FILENAME mt19937 DEPS NIL 26 - DEPENDENCIES NIL VERSION 1.1.1 SIBLINGS NIL PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/myway.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "myway"; 5 - version = "20200325-git"; 6 - 7 - description = "Sinatra-compatible routing library."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."map-set" args."quri" args."split-sequence" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz"; 13 - sha256 = "07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15"; 14 - }; 15 - 16 - packageName = "myway"; 17 - 18 - asdFilesToKeep = ["myway.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM myway DESCRIPTION Sinatra-compatible routing library. SHA256 22 - 07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15 URL 23 - http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz 24 - MD5 af1fe34c2106303504c7908b25c3b9ce NAME myway FILENAME myway DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cl-ppcre FILENAME cl-ppcre) 27 - (NAME cl-utilities FILENAME cl-utilities) (NAME map-set FILENAME map-set) 28 - (NAME quri FILENAME quri) (NAME split-sequence FILENAME split-sequence) 29 - (NAME trivial-features FILENAME trivial-features)) 30 - DEPENDENCIES 31 - (alexandria babel cl-ppcre cl-utilities map-set quri split-sequence 32 - trivial-features) 33 - VERSION 20200325-git SIBLINGS (myway-test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/named-readtables.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "named-readtables"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "named-readtables/test" ]; 8 - 9 - description = "Library that creates a namespace for named readtable 10 - akin to the namespace of packages."; 11 - 12 - deps = [ ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/named-readtables/2021-12-09/named-readtables-20211209-git.tgz"; 16 - sha256 = "0mlxbs7r6ksjk9ilsgp756qp4jlgplr30kxdn7npq27wg0rpvz2n"; 17 - }; 18 - 19 - packageName = "named-readtables"; 20 - 21 - asdFilesToKeep = ["named-readtables.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM named-readtables DESCRIPTION 25 - Library that creates a namespace for named readtable 26 - akin to the namespace of packages. 27 - SHA256 0mlxbs7r6ksjk9ilsgp756qp4jlgplr30kxdn7npq27wg0rpvz2n URL 28 - http://beta.quicklisp.org/archive/named-readtables/2021-12-09/named-readtables-20211209-git.tgz 29 - MD5 52def9392c93bb9c6da4b957549bcb0b NAME named-readtables FILENAME 30 - named-readtables DEPS NIL DEPENDENCIES NIL VERSION 20211209-git SIBLINGS 31 - NIL PARASITES (named-readtables/test)) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/nbd.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "nbd"; 5 - version = "20200925-git"; 6 - 7 - parasites = [ "nbd/simple-in-memory" ]; 8 - 9 - description = "Network Block Device server library."; 10 - 11 - deps = [ args."bordeaux-threads" args."flexi-streams" args."lisp-binary" args."wild-package-inferred-system" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/nbd/2020-09-25/nbd-20200925-git.tgz"; 15 - sha256 = "1npq9a8l3mn67n22ywqm8wh6kr9xv9djla2yj2m535gkysrlvnky"; 16 - }; 17 - 18 - packageName = "nbd"; 19 - 20 - asdFilesToKeep = ["nbd.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM nbd DESCRIPTION Network Block Device server library. SHA256 24 - 1npq9a8l3mn67n22ywqm8wh6kr9xv9djla2yj2m535gkysrlvnky URL 25 - http://beta.quicklisp.org/archive/nbd/2020-09-25/nbd-20200925-git.tgz MD5 26 - f32b7a508ac87c1e179c259b171dc837 NAME nbd FILENAME nbd DEPS 27 - ((NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME flexi-streams FILENAME flexi-streams) 29 - (NAME lisp-binary FILENAME lisp-binary) 30 - (NAME wild-package-inferred-system FILENAME wild-package-inferred-system)) 31 - DEPENDENCIES 32 - (bordeaux-threads flexi-streams lisp-binary wild-package-inferred-system) 33 - VERSION 20200925-git SIBLINGS NIL PARASITES (nbd/simple-in-memory)) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/net-telent-date.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "net-telent-date"; 5 - version = "net-telent-date_0.42"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz"; 13 - sha256 = "06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1"; 14 - }; 15 - 16 - packageName = "net-telent-date"; 17 - 18 - asdFilesToKeep = ["net-telent-date.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM net-telent-date DESCRIPTION System lacks description SHA256 22 - 06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1 URL 23 - http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz 24 - MD5 6fedf40113b2462f7bd273d07950066b NAME net-telent-date FILENAME 25 - net-telent-date DEPS NIL DEPENDENCIES NIL VERSION net-telent-date_0.42 26 - SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "net_dot_didierverna_dot_asdf-flv"; 5 - version = "asdf-flv-version-2.1"; 6 - 7 - description = "ASDF extension to provide support for file-local variables."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz"; 13 - sha256 = "12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc"; 14 - }; 15 - 16 - packageName = "net.didierverna.asdf-flv"; 17 - 18 - asdFilesToKeep = ["net.didierverna.asdf-flv.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM net.didierverna.asdf-flv DESCRIPTION 22 - ASDF extension to provide support for file-local variables. SHA256 23 - 12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc URL 24 - http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz 25 - MD5 2b74b721b7e5335d2230d6b95fc6be56 NAME net.didierverna.asdf-flv FILENAME 26 - net_dot_didierverna_dot_asdf-flv DEPS NIL DEPENDENCIES NIL VERSION 27 - asdf-flv-version-2.1 SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/nibbles.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "nibbles"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "nibbles/tests" ]; 8 - 9 - description = "A library for accessing octet-addressed blocks of data in big- and little-endian orders"; 10 - 11 - deps = [ args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/nibbles/2021-12-09/nibbles-20211209-git.tgz"; 15 - sha256 = "1zkywrhz8p09pwdsa2mklr0yspqvvwa5fi6cz22n1z6fzvxz7m2s"; 16 - }; 17 - 18 - packageName = "nibbles"; 19 - 20 - asdFilesToKeep = ["nibbles.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM nibbles DESCRIPTION 24 - A library for accessing octet-addressed blocks of data in big- and little-endian orders 25 - SHA256 1zkywrhz8p09pwdsa2mklr0yspqvvwa5fi6cz22n1z6fzvxz7m2s URL 26 - http://beta.quicklisp.org/archive/nibbles/2021-12-09/nibbles-20211209-git.tgz 27 - MD5 c6e7348a8a979da7cd4852b5df8a4384 NAME nibbles FILENAME nibbles DEPS 28 - ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20211209-git SIBLINGS NIL 29 - PARASITES (nibbles/tests)) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/num-utils.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "num-utils"; 5 - version = "numerical-utilities-20210411-git"; 6 - 7 - parasites = [ "num-utils/tests" ]; 8 - 9 - description = "Numerical utilities for Common Lisp"; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."array-operations" args."fiveam" args."let-plus" args."select" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/numerical-utilities/2021-04-11/numerical-utilities-20210411-git.tgz"; 15 - sha256 = "19d1vm9hasgba9l2mwby8izd7pzmisckf52h6fmh170lwkqixqxb"; 16 - }; 17 - 18 - packageName = "num-utils"; 19 - 20 - asdFilesToKeep = ["num-utils.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM num-utils DESCRIPTION Numerical utilities for Common Lisp SHA256 24 - 19d1vm9hasgba9l2mwby8izd7pzmisckf52h6fmh170lwkqixqxb URL 25 - http://beta.quicklisp.org/archive/numerical-utilities/2021-04-11/numerical-utilities-20210411-git.tgz 26 - MD5 87fac84d7897071bfa89fc9aeca7b4d0 NAME num-utils FILENAME num-utils DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME array-operations FILENAME array-operations) 29 - (NAME fiveam FILENAME fiveam) (NAME let-plus FILENAME let-plus) 30 - (NAME select FILENAME select)) 31 - DEPENDENCIES (alexandria anaphora array-operations fiveam let-plus select) 32 - VERSION numerical-utilities-20210411-git SIBLINGS NIL PARASITES 33 - (num-utils/tests)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/optima.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "optima"; 5 - version = "20150709-git"; 6 - 7 - description = "Optimized Pattern Matching Library"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz"; 13 - sha256 = "0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc"; 14 - }; 15 - 16 - packageName = "optima"; 17 - 18 - asdFilesToKeep = ["optima.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM optima DESCRIPTION Optimized Pattern Matching Library SHA256 22 - 0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc URL 23 - http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz 24 - MD5 20523dc3dfc04bb2526008dff0842caa NAME optima FILENAME optima DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME closer-mop FILENAME closer-mop)) 27 - DEPENDENCIES (alexandria closer-mop) VERSION 20150709-git SIBLINGS 28 - (optima.ppcre optima.test) PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/osicat.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "osicat"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "osicat/tests" ]; 8 - 9 - description = "A lightweight operating system interface"; 10 - 11 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."rt" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/osicat/2021-12-09/osicat-20211209-git.tgz"; 15 - sha256 = "0c85aapyvr2f5c3lvpfv3hfdghwmsqf40qgyk9hwjva8s9242pgl"; 16 - }; 17 - 18 - packageName = "osicat"; 19 - 20 - asdFilesToKeep = ["osicat.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM osicat DESCRIPTION A lightweight operating system interface SHA256 24 - 0c85aapyvr2f5c3lvpfv3hfdghwmsqf40qgyk9hwjva8s9242pgl URL 25 - http://beta.quicklisp.org/archive/osicat/2021-12-09/osicat-20211209-git.tgz 26 - MD5 3581652999e0b16c6a1a8295585e7491 NAME osicat FILENAME osicat DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) (NAME rt FILENAME rt) 30 - (NAME trivial-features FILENAME trivial-features)) 31 - DEPENDENCIES 32 - (alexandria babel cffi cffi-grovel cffi-toolchain rt trivial-features) 33 - VERSION 20211209-git SIBLINGS NIL PARASITES (osicat/tests)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parachute.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parachute"; 5 - version = "20211020-git"; 6 - 7 - description = "An extensible and cross-compatible testing framework."; 8 - 9 - deps = [ args."documentation-utils" args."form-fiddle" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/parachute/2021-10-20/parachute-20211020-git.tgz"; 13 - sha256 = "1sc63a6z3zwdsc9h3w0dbx7yssvg2zzdyhh81kqc5cx17vcdqyk0"; 14 - }; 15 - 16 - packageName = "parachute"; 17 - 18 - asdFilesToKeep = ["parachute.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM parachute DESCRIPTION 22 - An extensible and cross-compatible testing framework. SHA256 23 - 1sc63a6z3zwdsc9h3w0dbx7yssvg2zzdyhh81kqc5cx17vcdqyk0 URL 24 - http://beta.quicklisp.org/archive/parachute/2021-10-20/parachute-20211020-git.tgz 25 - MD5 85eba816a1e7a43a154e6a1544e15e52 NAME parachute FILENAME parachute DEPS 26 - ((NAME documentation-utils FILENAME documentation-utils) 27 - (NAME form-fiddle FILENAME form-fiddle) 28 - (NAME trivial-indent FILENAME trivial-indent)) 29 - DEPENDENCIES (documentation-utils form-fiddle trivial-indent) VERSION 30 - 20211020-git SIBLINGS 31 - (parachute-fiveam parachute-lisp-unit parachute-prove) PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parenscript.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parenscript"; 5 - version = "Parenscript-2.7.1"; 6 - 7 - description = "Lisp to JavaScript transpiler"; 8 - 9 - deps = [ args."anaphora" args."cl-ppcre" args."named-readtables" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz"; 13 - sha256 = "1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f"; 14 - }; 15 - 16 - packageName = "parenscript"; 17 - 18 - asdFilesToKeep = ["parenscript.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM parenscript DESCRIPTION Lisp to JavaScript transpiler SHA256 22 - 1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f URL 23 - http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz 24 - MD5 047c9a72bd36f1b4a5ec67af9453a0b9 NAME parenscript FILENAME parenscript 25 - DEPS 26 - ((NAME anaphora FILENAME anaphora) (NAME cl-ppcre FILENAME cl-ppcre) 27 - (NAME named-readtables FILENAME named-readtables)) 28 - DEPENDENCIES (anaphora cl-ppcre named-readtables) VERSION Parenscript-2.7.1 29 - SIBLINGS (parenscript.tests) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parse-declarations-1_dot_0.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parse-declarations-1_dot_0"; 5 - version = "parse-declarations-20101006-darcs"; 6 - 7 - description = "Library to parse and rebuild declarations."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz"; 13 - sha256 = "0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd"; 14 - }; 15 - 16 - packageName = "parse-declarations-1.0"; 17 - 18 - asdFilesToKeep = ["parse-declarations-1.0.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM parse-declarations-1.0 DESCRIPTION 22 - Library to parse and rebuild declarations. SHA256 23 - 0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd URL 24 - http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz 25 - MD5 e49222003e5b59c5c2a0cf58b86cfdcd NAME parse-declarations-1.0 FILENAME 26 - parse-declarations-1_dot_0 DEPS NIL DEPENDENCIES NIL VERSION 27 - parse-declarations-20101006-darcs SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parse-float.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parse-float"; 5 - version = "20200218-git"; 6 - 7 - parasites = [ "parse-float-tests" ]; 8 - 9 - description = "Parse floating point values in strings."; 10 - 11 - deps = [ args."alexandria" args."lisp-unit" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/parse-float/2020-02-18/parse-float-20200218-git.tgz"; 15 - sha256 = "02rhgn79hhv0p5ysj4gwk5bhmr2sj6cvkacbqzzw24qrzgcpdnfw"; 16 - }; 17 - 18 - packageName = "parse-float"; 19 - 20 - asdFilesToKeep = ["parse-float.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM parse-float DESCRIPTION Parse floating point values in strings. 24 - SHA256 02rhgn79hhv0p5ysj4gwk5bhmr2sj6cvkacbqzzw24qrzgcpdnfw URL 25 - http://beta.quicklisp.org/archive/parse-float/2020-02-18/parse-float-20200218-git.tgz 26 - MD5 149e40a8c5fd6ab0e43242cb898d66bf NAME parse-float FILENAME parse-float 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME lisp-unit FILENAME lisp-unit)) 29 - DEPENDENCIES (alexandria lisp-unit) VERSION 20200218-git SIBLINGS NIL 30 - PARASITES (parse-float-tests)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parse-number.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parse-number"; 5 - version = "v1.7"; 6 - 7 - parasites = [ "parse-number/tests" ]; 8 - 9 - description = "Number parsing library"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz"; 15 - sha256 = "11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha"; 16 - }; 17 - 18 - packageName = "parse-number"; 19 - 20 - asdFilesToKeep = ["parse-number.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM parse-number DESCRIPTION Number parsing library SHA256 24 - 11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha URL 25 - http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz 26 - MD5 b9ec925018b8f10193d73403873dde8f NAME parse-number FILENAME 27 - parse-number DEPS NIL DEPENDENCIES NIL VERSION v1.7 SIBLINGS NIL PARASITES 28 - (parse-number/tests)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parseq.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parseq"; 5 - version = "20210531-git"; 6 - 7 - parasites = [ "parseq/test" ]; 8 - 9 - description = "A library for parsing sequences such as strings and lists using parsing expression grammars."; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/parseq/2021-05-31/parseq-20210531-git.tgz"; 15 - sha256 = "1jh362avz2bbjrg9wwnjisa3ikxjxcgbddc0gqx65l6h9s87gqrg"; 16 - }; 17 - 18 - packageName = "parseq"; 19 - 20 - asdFilesToKeep = ["parseq.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM parseq DESCRIPTION 24 - A library for parsing sequences such as strings and lists using parsing expression grammars. 25 - SHA256 1jh362avz2bbjrg9wwnjisa3ikxjxcgbddc0gqx65l6h9s87gqrg URL 26 - http://beta.quicklisp.org/archive/parseq/2021-05-31/parseq-20210531-git.tgz 27 - MD5 a62fdb0623450f7ef82297e8b23fd343 NAME parseq FILENAME parseq DEPS NIL 28 - DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL PARASITES (parseq/test)) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parser-combinators.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parser-combinators"; 5 - version = "cl-20131111-git"; 6 - 7 - description = "An implementation of parser combinators for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."iterate" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz"; 13 - sha256 = "0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds"; 14 - }; 15 - 16 - packageName = "parser-combinators"; 17 - 18 - asdFilesToKeep = ["parser-combinators.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM parser-combinators DESCRIPTION 22 - An implementation of parser combinators for Common Lisp SHA256 23 - 0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds URL 24 - http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz 25 - MD5 25ad9b1459901738a6394422a41b8fec NAME parser-combinators FILENAME 26 - parser-combinators DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME iterate FILENAME iterate)) 28 - DEPENDENCIES (alexandria iterate) VERSION cl-20131111-git SIBLINGS 29 - (parser-combinators-cl-ppcre parser-combinators-debug 30 - parser-combinators-tests) 31 - PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/parser_dot_common-rules.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "parser_dot_common-rules"; 5 - version = "20200715-git"; 6 - 7 - parasites = [ "parser.common-rules/test" ]; 8 - 9 - description = "Provides common parsing rules that are useful in many grammars."; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."esrap" args."fiveam" args."let-plus" args."split-sequence" args."trivial-with-current-source-form" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz"; 15 - sha256 = "17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy"; 16 - }; 17 - 18 - packageName = "parser.common-rules"; 19 - 20 - asdFilesToKeep = ["parser.common-rules.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM parser.common-rules DESCRIPTION 24 - Provides common parsing rules that are useful in many grammars. SHA256 25 - 17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy URL 26 - http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz 27 - MD5 6391d962ae6fc13cc57312de013504c5 NAME parser.common-rules FILENAME 28 - parser_dot_common-rules DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 30 - (NAME esrap FILENAME esrap) (NAME fiveam FILENAME fiveam) 31 - (NAME let-plus FILENAME let-plus) 32 - (NAME split-sequence FILENAME split-sequence) 33 - (NAME trivial-with-current-source-form FILENAME 34 - trivial-with-current-source-form)) 35 - DEPENDENCIES 36 - (alexandria anaphora esrap fiveam let-plus split-sequence 37 - trivial-with-current-source-form) 38 - VERSION 20200715-git SIBLINGS (parser.common-rules.operators) PARASITES 39 - (parser.common-rules/test)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/pcall-queue.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "pcall-queue"; 5 - version = "pcall-0.3"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 13 - sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 14 - }; 15 - 16 - packageName = "pcall-queue"; 17 - 18 - asdFilesToKeep = ["pcall-queue.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM pcall-queue DESCRIPTION System lacks description SHA256 22 - 02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y URL 23 - http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz MD5 24 - 019d85dfd1d5d0ee8d4ee475411caf6b NAME pcall-queue FILENAME pcall-queue DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads)) 27 - DEPENDENCIES (alexandria bordeaux-threads) VERSION pcall-0.3 SIBLINGS 28 - (pcall) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/pcall.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "pcall"; 5 - version = "0.3"; 6 - 7 - parasites = [ "pcall-tests" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" args."pcall-queue" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 15 - sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 16 - }; 17 - 18 - packageName = "pcall"; 19 - 20 - asdFilesToKeep = ["pcall.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM pcall DESCRIPTION System lacks description SHA256 24 - 02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y URL 25 - http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz MD5 26 - 019d85dfd1d5d0ee8d4ee475411caf6b NAME pcall FILENAME pcall DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME fiveam FILENAME fiveam) (NAME pcall-queue FILENAME pcall-queue)) 30 - DEPENDENCIES (alexandria bordeaux-threads fiveam pcall-queue) VERSION 0.3 31 - SIBLINGS (pcall-queue) PARASITES (pcall-tests)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/physical-quantities.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "physical-quantities"; 5 - version = "20211020-git"; 6 - 7 - parasites = [ "physical-quantities/test" ]; 8 - 9 - description = "A library that provides a numeric type with optional unit and/or uncertainty for computations with automatic error propagation."; 10 - 11 - deps = [ args."parseq" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/physical-quantities/2021-10-20/physical-quantities-20211020-git.tgz"; 15 - sha256 = "1ix04gjcsjzry5rl1rqsrg1r3hw985gfvl1847va36y03qzbmhgx"; 16 - }; 17 - 18 - packageName = "physical-quantities"; 19 - 20 - asdFilesToKeep = ["physical-quantities.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM physical-quantities DESCRIPTION 24 - A library that provides a numeric type with optional unit and/or uncertainty for computations with automatic error propagation. 25 - SHA256 1ix04gjcsjzry5rl1rqsrg1r3hw985gfvl1847va36y03qzbmhgx URL 26 - http://beta.quicklisp.org/archive/physical-quantities/2021-10-20/physical-quantities-20211020-git.tgz 27 - MD5 a322db845056f78a237630a565b41490 NAME physical-quantities FILENAME 28 - physical-quantities DEPS ((NAME parseq FILENAME parseq)) DEPENDENCIES 29 - (parseq) VERSION 20211020-git SIBLINGS NIL PARASITES 30 - (physical-quantities/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/plump.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "plump"; 5 - version = "20210630-git"; 6 - 7 - description = "An XML / XHTML / HTML parser that aims to be as lenient as possible."; 8 - 9 - deps = [ args."array-utils" args."documentation-utils" args."trivial-indent" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/plump/2021-06-30/plump-20210630-git.tgz"; 13 - sha256 = "0wx5l2q5hsdshdrmlpnjdlyksw6rl5f2snad18xkmmyiwwn7wv2h"; 14 - }; 15 - 16 - packageName = "plump"; 17 - 18 - asdFilesToKeep = ["plump.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM plump DESCRIPTION 22 - An XML / XHTML / HTML parser that aims to be as lenient as possible. SHA256 23 - 0wx5l2q5hsdshdrmlpnjdlyksw6rl5f2snad18xkmmyiwwn7wv2h URL 24 - http://beta.quicklisp.org/archive/plump/2021-06-30/plump-20210630-git.tgz 25 - MD5 b15f7f4f52893ef41ca8a12e6e959dc1 NAME plump FILENAME plump DEPS 26 - ((NAME array-utils FILENAME array-utils) 27 - (NAME documentation-utils FILENAME documentation-utils) 28 - (NAME trivial-indent FILENAME trivial-indent)) 29 - DEPENDENCIES (array-utils documentation-utils trivial-indent) VERSION 30 - 20210630-git SIBLINGS (plump-dom plump-lexer plump-parser) PARASITES NIL) */
-50
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/postmodern.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "postmodern"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "postmodern/tests" ]; 8 - 9 - description = "PostgreSQL programming API"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_plus_local-time" args."cl-postgres_slash_tests" args."cl-ppcre" args."closer-mop" args."fiveam" args."global-vars" args."ironclad" args."local-time" args."md5" args."s-sql" args."s-sql_slash_tests" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."uiop" args."usocket" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz"; 15 - sha256 = "1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6"; 16 - }; 17 - 18 - packageName = "postmodern"; 19 - 20 - asdFilesToKeep = ["postmodern.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM postmodern DESCRIPTION PostgreSQL programming API SHA256 24 - 1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6 URL 25 - http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz 26 - MD5 6d14c4b5fec085594dc66d520174e0e6 NAME postmodern FILENAME postmodern 27 - DEPS 28 - ((NAME alexandria FILENAME alexandria) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME cl-base64 FILENAME cl-base64) 31 - (NAME cl-postgres FILENAME cl-postgres) 32 - (NAME cl-postgres+local-time FILENAME cl-postgres_plus_local-time) 33 - (NAME cl-postgres/tests FILENAME cl-postgres_slash_tests) 34 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME closer-mop FILENAME closer-mop) 35 - (NAME fiveam FILENAME fiveam) (NAME global-vars FILENAME global-vars) 36 - (NAME ironclad FILENAME ironclad) (NAME local-time FILENAME local-time) 37 - (NAME md5 FILENAME md5) (NAME s-sql FILENAME s-sql) 38 - (NAME s-sql/tests FILENAME s-sql_slash_tests) 39 - (NAME simple-date FILENAME simple-date) 40 - (NAME simple-date/postgres-glue FILENAME simple-date_slash_postgres-glue) 41 - (NAME split-sequence FILENAME split-sequence) 42 - (NAME uax-15 FILENAME uax-15) (NAME uiop FILENAME uiop) 43 - (NAME usocket FILENAME usocket)) 44 - DEPENDENCIES 45 - (alexandria bordeaux-threads cl-base64 cl-postgres cl-postgres+local-time 46 - cl-postgres/tests cl-ppcre closer-mop fiveam global-vars ironclad 47 - local-time md5 s-sql s-sql/tests simple-date simple-date/postgres-glue 48 - split-sequence uax-15 uiop usocket) 49 - VERSION 20211209-git SIBLINGS (cl-postgres s-sql simple-date) PARASITES 50 - (postmodern/tests)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/proc-parse.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "proc-parse"; 5 - version = "20190813-git"; 6 - 7 - description = "Procedural vector parser"; 8 - 9 - deps = [ args."alexandria" args."babel" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz"; 13 - sha256 = "126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j"; 14 - }; 15 - 16 - packageName = "proc-parse"; 17 - 18 - asdFilesToKeep = ["proc-parse.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM proc-parse DESCRIPTION Procedural vector parser SHA256 22 - 126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j URL 23 - http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz 24 - MD5 99bdce79943071267c6a877d8de246c5 NAME proc-parse FILENAME proc-parse 25 - DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME trivial-features FILENAME trivial-features)) 28 - DEPENDENCIES (alexandria babel trivial-features) VERSION 20190813-git 29 - SIBLINGS (proc-parse-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/prove-asdf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "prove-asdf"; 5 - version = "prove-20200218-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 - sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 14 - }; 15 - 16 - packageName = "prove-asdf"; 17 - 18 - asdFilesToKeep = ["prove-asdf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM prove-asdf DESCRIPTION System lacks description SHA256 22 - 1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn URL 23 - http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz 24 - MD5 85780b65e84c17a78d658364b8c4d11b NAME prove-asdf FILENAME prove-asdf 25 - DEPS NIL DEPENDENCIES NIL VERSION prove-20200218-git SIBLINGS 26 - (cl-test-more prove-test prove) PARASITES NIL) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/prove.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "prove"; 5 - version = "20200218-git"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 - sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 14 - }; 15 - 16 - packageName = "prove"; 17 - 18 - asdFilesToKeep = ["prove.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM prove DESCRIPTION System lacks description SHA256 22 - 1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn URL 23 - http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz 24 - MD5 85780b65e84c17a78d658364b8c4d11b NAME prove FILENAME prove DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 26 - (NAME cl-ansi-text FILENAME cl-ansi-text) 27 - (NAME cl-colors FILENAME cl-colors) (NAME cl-colors2 FILENAME cl-colors2) 28 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME let-plus FILENAME let-plus) 29 - (NAME uiop FILENAME uiop)) 30 - DEPENDENCIES 31 - (alexandria anaphora cl-ansi-text cl-colors cl-colors2 cl-ppcre let-plus 32 - uiop) 33 - VERSION 20200218-git SIBLINGS (cl-test-more prove-asdf prove-test) 34 - PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/ptester.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "ptester"; 5 - version = "20160929-git"; 6 - 7 - description = "Portable test harness package"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz"; 13 - sha256 = "04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz"; 14 - }; 15 - 16 - packageName = "ptester"; 17 - 18 - asdFilesToKeep = ["ptester.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM ptester DESCRIPTION Portable test harness package SHA256 22 - 04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz URL 23 - http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz 24 - MD5 938a4366b6608ae5c4a0be9da11a61d4 NAME ptester FILENAME ptester DEPS NIL 25 - DEPENDENCIES NIL VERSION 20160929-git SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/puri.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "puri"; 5 - version = "20201016-git"; 6 - 7 - parasites = [ "puri/test" ]; 8 - 9 - description = "Portable Universal Resource Indentifier Library"; 10 - 11 - deps = [ args."ptester" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz"; 15 - sha256 = "16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx"; 16 - }; 17 - 18 - packageName = "puri"; 19 - 20 - asdFilesToKeep = ["puri.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM puri DESCRIPTION Portable Universal Resource Indentifier Library 24 - SHA256 16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx URL 25 - http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz MD5 26 - 890c61df1d7204b2d681bf146c43e711 NAME puri FILENAME puri DEPS 27 - ((NAME ptester FILENAME ptester)) DEPENDENCIES (ptester) VERSION 28 - 20201016-git SIBLINGS NIL PARASITES (puri/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/pythonic-string-reader.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "pythonic-string-reader"; 5 - version = "20180711-git"; 6 - 7 - description = "A simple and unintrusive read table modification that allows for 8 - simple string literal definition that doesn't require escaping characters."; 9 - 10 - deps = [ args."named-readtables" ]; 11 - 12 - src = fetchurl { 13 - url = "http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz"; 14 - sha256 = "0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx"; 15 - }; 16 - 17 - packageName = "pythonic-string-reader"; 18 - 19 - asdFilesToKeep = ["pythonic-string-reader.asd"]; 20 - overrides = x: x; 21 - } 22 - /* (SYSTEM pythonic-string-reader DESCRIPTION 23 - A simple and unintrusive read table modification that allows for 24 - simple string literal definition that doesn't require escaping characters. 25 - SHA256 0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx URL 26 - http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz 27 - MD5 8156636895b1148fad6e7bcedeb6b556 NAME pythonic-string-reader FILENAME 28 - pythonic-string-reader DEPS 29 - ((NAME named-readtables FILENAME named-readtables)) DEPENDENCIES 30 - (named-readtables) VERSION 20180711-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/quasiquote-2_dot_0.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "quasiquote-2_dot_0"; 5 - version = "20150505-git"; 6 - 7 - parasites = [ "quasiquote-2.0-tests" ]; 8 - 9 - description = "Writing macros that write macros. Effortless."; 10 - 11 - deps = [ args."fiveam" args."iterate" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/quasiquote-2.0/2015-05-05/quasiquote-2.0-20150505-git.tgz"; 15 - sha256 = "0bgcqk7wp7qblw7avsawkg24zjiq9vgsbfa0yhk64avhxwjw6974"; 16 - }; 17 - 18 - packageName = "quasiquote-2.0"; 19 - 20 - asdFilesToKeep = ["quasiquote-2.0.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM quasiquote-2.0 DESCRIPTION 24 - Writing macros that write macros. Effortless. SHA256 25 - 0bgcqk7wp7qblw7avsawkg24zjiq9vgsbfa0yhk64avhxwjw6974 URL 26 - http://beta.quicklisp.org/archive/quasiquote-2.0/2015-05-05/quasiquote-2.0-20150505-git.tgz 27 - MD5 7c557e0c10cf7608afa5a20e4a83c778 NAME quasiquote-2.0 FILENAME 28 - quasiquote-2_dot_0 DEPS 29 - ((NAME fiveam FILENAME fiveam) (NAME iterate FILENAME iterate)) 30 - DEPENDENCIES (fiveam iterate) VERSION 20150505-git SIBLINGS NIL PARASITES 31 - (quasiquote-2.0-tests)) */
-44
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/query-fs.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "query-fs"; 5 - version = "20200610-git"; 6 - 7 - description = "High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-fuse" args."cl-fuse-meta-fs" args."cl-ppcre" args."cl-utilities" args."command-line-arguments" args."iterate" args."pcall" args."pcall-queue" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz"; 13 - sha256 = "1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413"; 14 - }; 15 - 16 - packageName = "query-fs"; 17 - 18 - asdFilesToKeep = ["query-fs.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM query-fs DESCRIPTION 22 - High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries 23 - SHA256 1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413 URL 24 - http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz 25 - MD5 d30cbd09a2f326c95057b2c6537d5cdb NAME query-fs FILENAME query-fs DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) 30 - (NAME cl-fuse FILENAME cl-fuse) 31 - (NAME cl-fuse-meta-fs FILENAME cl-fuse-meta-fs) 32 - (NAME cl-ppcre FILENAME cl-ppcre) 33 - (NAME cl-utilities FILENAME cl-utilities) 34 - (NAME command-line-arguments FILENAME command-line-arguments) 35 - (NAME iterate FILENAME iterate) (NAME pcall FILENAME pcall) 36 - (NAME pcall-queue FILENAME pcall-queue) 37 - (NAME trivial-backtrace FILENAME trivial-backtrace) 38 - (NAME trivial-features FILENAME trivial-features) 39 - (NAME trivial-utf-8 FILENAME trivial-utf-8)) 40 - DEPENDENCIES 41 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-fuse 42 - cl-fuse-meta-fs cl-ppcre cl-utilities command-line-arguments iterate pcall 43 - pcall-queue trivial-backtrace trivial-features trivial-utf-8) 44 - VERSION 20200610-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/quri.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "quri"; 5 - version = "20210630-git"; 6 - 7 - description = "Yet another URI library for Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."cl-utilities" args."split-sequence" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/quri/2021-06-30/quri-20210630-git.tgz"; 13 - sha256 = "0ihgsqdzi9rh8ybc221g46c5h7i4vrz67znwv76rm2z44v8x0wwh"; 14 - }; 15 - 16 - packageName = "quri"; 17 - 18 - asdFilesToKeep = ["quri.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM quri DESCRIPTION Yet another URI library for Common Lisp SHA256 22 - 0ihgsqdzi9rh8ybc221g46c5h7i4vrz67znwv76rm2z44v8x0wwh URL 23 - http://beta.quicklisp.org/archive/quri/2021-06-30/quri-20210630-git.tgz MD5 24 - 3dcaaa9b94f6e4a0c5f4bd0829a045a7 NAME quri FILENAME quri DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME cl-utilities FILENAME cl-utilities) 27 - (NAME split-sequence FILENAME split-sequence) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES 30 - (alexandria babel cl-utilities split-sequence trivial-features) VERSION 31 - 20210630-git SIBLINGS (quri-test) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/rfc2388.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "rfc2388"; 5 - version = "20180831-git"; 6 - 7 - description = "Implementation of RFC 2388"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz"; 13 - sha256 = "1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33"; 14 - }; 15 - 16 - packageName = "rfc2388"; 17 - 18 - asdFilesToKeep = ["rfc2388.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM rfc2388 DESCRIPTION Implementation of RFC 2388 SHA256 22 - 1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33 URL 23 - http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz 24 - MD5 f57e3c588e5e08210516260e67d69226 NAME rfc2388 FILENAME rfc2388 DEPS NIL 25 - DEPENDENCIES NIL VERSION 20180831-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/rove.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "rove"; 5 - version = "20211209-git"; 6 - 7 - description = "Yet another testing framework intended to be a successor of Prove"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."dissect" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/rove/2021-12-09/rove-20211209-git.tgz"; 13 - sha256 = "1b1fajdxnba743l7mv4nc31az2g7mapalq3z3l57j7r5sximf0qr"; 14 - }; 15 - 16 - packageName = "rove"; 17 - 18 - asdFilesToKeep = ["rove.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM rove DESCRIPTION 22 - Yet another testing framework intended to be a successor of Prove SHA256 23 - 1b1fajdxnba743l7mv4nc31az2g7mapalq3z3l57j7r5sximf0qr URL 24 - http://beta.quicklisp.org/archive/rove/2021-12-09/rove-20211209-git.tgz MD5 25 - d9f6cb2e26f06cfbd5c83bf3fa4fc206 NAME rove FILENAME rove DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME dissect FILENAME dissect) 29 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 30 - DEPENDENCIES (alexandria bordeaux-threads dissect trivial-gray-streams) 31 - VERSION 20211209-git SIBLINGS NIL PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/rt.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "rt"; 5 - version = "20101006-git"; 6 - 7 - description = "MIT Regression Tester"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz"; 13 - sha256 = "1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v"; 14 - }; 15 - 16 - packageName = "rt"; 17 - 18 - asdFilesToKeep = ["rt.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM rt DESCRIPTION MIT Regression Tester SHA256 22 - 1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v URL 23 - http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz MD5 24 - 94a56c473399572ca835ac91c77c04e5 NAME rt FILENAME rt DEPS NIL DEPENDENCIES 25 - NIL VERSION 20101006-git SIBLINGS NIL PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/s-sql.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "s-sql"; 5 - version = "postmodern-20211209-git"; 6 - 7 - parasites = [ "s-sql/tests" ]; 8 - 9 - description = "Lispy DSL for SQL"; 10 - 11 - deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_slash_tests" args."cl-ppcre" args."closer-mop" args."fiveam" args."global-vars" args."ironclad" args."md5" args."postmodern" args."split-sequence" args."uax-15" args."usocket" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz"; 15 - sha256 = "1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6"; 16 - }; 17 - 18 - packageName = "s-sql"; 19 - 20 - asdFilesToKeep = ["s-sql.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM s-sql DESCRIPTION Lispy DSL for SQL SHA256 24 - 1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6 URL 25 - http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz 26 - MD5 6d14c4b5fec085594dc66d520174e0e6 NAME s-sql FILENAME s-sql DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME cl-base64 FILENAME cl-base64) 30 - (NAME cl-postgres FILENAME cl-postgres) 31 - (NAME cl-postgres/tests FILENAME cl-postgres_slash_tests) 32 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME closer-mop FILENAME closer-mop) 33 - (NAME fiveam FILENAME fiveam) (NAME global-vars FILENAME global-vars) 34 - (NAME ironclad FILENAME ironclad) (NAME md5 FILENAME md5) 35 - (NAME postmodern FILENAME postmodern) 36 - (NAME split-sequence FILENAME split-sequence) 37 - (NAME uax-15 FILENAME uax-15) (NAME usocket FILENAME usocket)) 38 - DEPENDENCIES 39 - (alexandria bordeaux-threads cl-base64 cl-postgres cl-postgres/tests 40 - cl-ppcre closer-mop fiveam global-vars ironclad md5 postmodern 41 - split-sequence uax-15 usocket) 42 - VERSION postmodern-20211209-git SIBLINGS 43 - (cl-postgres postmodern simple-date) PARASITES (s-sql/tests)) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/s-sysdeps.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "s-sysdeps"; 5 - version = "20210228-git"; 6 - 7 - description = "An abstraction layer over platform dependent functionality"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" args."usocket-server" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/s-sysdeps/2021-02-28/s-sysdeps-20210228-git.tgz"; 13 - sha256 = "0pybgicif1qavvix9183g4ahjrgcax3qf2ab523cas8l79lr1xkw"; 14 - }; 15 - 16 - packageName = "s-sysdeps"; 17 - 18 - asdFilesToKeep = ["s-sysdeps.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM s-sysdeps DESCRIPTION 22 - An abstraction layer over platform dependent functionality SHA256 23 - 0pybgicif1qavvix9183g4ahjrgcax3qf2ab523cas8l79lr1xkw URL 24 - http://beta.quicklisp.org/archive/s-sysdeps/2021-02-28/s-sysdeps-20210228-git.tgz 25 - MD5 25d8c1673457341bf60a20752fe59772 NAME s-sysdeps FILENAME s-sysdeps DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME split-sequence FILENAME split-sequence) 29 - (NAME usocket FILENAME usocket) 30 - (NAME usocket-server FILENAME usocket-server)) 31 - DEPENDENCIES 32 - (alexandria bordeaux-threads split-sequence usocket usocket-server) VERSION 33 - 20210228-git SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/s-xml.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "s-xml"; 5 - version = "20150608-git"; 6 - 7 - parasites = [ "s-xml.examples" "s-xml.test" ]; 8 - 9 - description = "Simple Common Lisp XML Parser"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz"; 15 - sha256 = "0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq"; 16 - }; 17 - 18 - packageName = "s-xml"; 19 - 20 - asdFilesToKeep = ["s-xml.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM s-xml DESCRIPTION Simple Common Lisp XML Parser SHA256 24 - 0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq URL 25 - http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz 26 - MD5 9c31c80f0661777c493fab683f776716 NAME s-xml FILENAME s-xml DEPS NIL 27 - DEPENDENCIES NIL VERSION 20150608-git SIBLINGS NIL PARASITES 28 - (s-xml.examples s-xml.test)) */
-34
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/salza2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "salza2"; 5 - version = "2.1"; 6 - 7 - parasites = [ "salza2/test" ]; 8 - 9 - description = "Create compressed data in the ZLIB, DEFLATE, or GZIP 10 - data formats"; 11 - 12 - deps = [ args."chipz" args."flexi-streams" args."parachute" args."trivial-gray-streams" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/salza2/2021-10-20/salza2-2.1.tgz"; 16 - sha256 = "0ymx3bm2a9a3fwxbvcyzfy0cdfl5y0csyw5cybxy0whkwipgra0x"; 17 - }; 18 - 19 - packageName = "salza2"; 20 - 21 - asdFilesToKeep = ["salza2.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM salza2 DESCRIPTION 25 - Create compressed data in the ZLIB, DEFLATE, or GZIP 26 - data formats 27 - SHA256 0ymx3bm2a9a3fwxbvcyzfy0cdfl5y0csyw5cybxy0whkwipgra0x URL 28 - http://beta.quicklisp.org/archive/salza2/2021-10-20/salza2-2.1.tgz MD5 29 - 867f3e0543a7e34d1be802062cf4893d NAME salza2 FILENAME salza2 DEPS 30 - ((NAME chipz FILENAME chipz) (NAME flexi-streams FILENAME flexi-streams) 31 - (NAME parachute FILENAME parachute) 32 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 33 - DEPENDENCIES (chipz flexi-streams parachute trivial-gray-streams) VERSION 34 - 2.1 SIBLINGS NIL PARASITES (salza2/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/select.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "select"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "select/tests" ]; 8 - 9 - description = "DSL for array slices."; 10 - 11 - deps = [ args."alexandria" args."anaphora" args."fiveam" args."let-plus" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/select/2021-04-11/select-20210411-git.tgz"; 15 - sha256 = "02xag0vpnqzfzw2mvrw6nwfhhy0iwq3zcvdh60cvx39labfvfdgb"; 16 - }; 17 - 18 - packageName = "select"; 19 - 20 - asdFilesToKeep = ["select.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM select DESCRIPTION DSL for array slices. SHA256 24 - 02xag0vpnqzfzw2mvrw6nwfhhy0iwq3zcvdh60cvx39labfvfdgb URL 25 - http://beta.quicklisp.org/archive/select/2021-04-11/select-20210411-git.tgz 26 - MD5 3e9c06e580f9e3a8911317ae8b95d0da NAME select FILENAME select DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 28 - (NAME fiveam FILENAME fiveam) (NAME let-plus FILENAME let-plus)) 29 - DEPENDENCIES (alexandria anaphora fiveam let-plus) VERSION 20210411-git 30 - SIBLINGS NIL PARASITES (select/tests)) */
-63
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/serapeum.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "serapeum"; 5 - version = "20211209-git"; 6 - 7 - description = "Utilities beyond Alexandria."; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."global-vars" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."parse-declarations-1_dot_0" args."parse-number" args."split-sequence" args."string-case" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."trivial-features" args."trivial-file-size" args."trivial-garbage" args."trivial-macroexpand-all" args."type-i" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/serapeum/2021-12-09/serapeum-20211209-git.tgz"; 13 - sha256 = "19ndbi69b60rxh1jvs7jrwg6bgzpkrfd22cnhyd2mir4ybmrdllh"; 14 - }; 15 - 16 - packageName = "serapeum"; 17 - 18 - asdFilesToKeep = ["serapeum.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM serapeum DESCRIPTION Utilities beyond Alexandria. SHA256 22 - 19ndbi69b60rxh1jvs7jrwg6bgzpkrfd22cnhyd2mir4ybmrdllh URL 23 - http://beta.quicklisp.org/archive/serapeum/2021-12-09/serapeum-20211209-git.tgz 24 - MD5 be358e1693fd0883042d849199ab72d1 NAME serapeum FILENAME serapeum DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME closer-mop FILENAME closer-mop) 28 - (NAME fare-quasiquote FILENAME fare-quasiquote) 29 - (NAME fare-quasiquote-extras FILENAME fare-quasiquote-extras) 30 - (NAME fare-quasiquote-optima FILENAME fare-quasiquote-optima) 31 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 32 - (NAME fare-utils FILENAME fare-utils) 33 - (NAME global-vars FILENAME global-vars) 34 - (NAME introspect-environment FILENAME introspect-environment) 35 - (NAME iterate FILENAME iterate) 36 - (NAME lisp-namespace FILENAME lisp-namespace) 37 - (NAME named-readtables FILENAME named-readtables) 38 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 39 - (NAME parse-number FILENAME parse-number) 40 - (NAME split-sequence FILENAME split-sequence) 41 - (NAME string-case FILENAME string-case) (NAME trivia FILENAME trivia) 42 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 43 - (NAME trivia.level0 FILENAME trivia_dot_level0) 44 - (NAME trivia.level1 FILENAME trivia_dot_level1) 45 - (NAME trivia.level2 FILENAME trivia_dot_level2) 46 - (NAME trivia.quasiquote FILENAME trivia_dot_quasiquote) 47 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 48 - (NAME trivial-cltl2 FILENAME trivial-cltl2) 49 - (NAME trivial-features FILENAME trivial-features) 50 - (NAME trivial-file-size FILENAME trivial-file-size) 51 - (NAME trivial-garbage FILENAME trivial-garbage) 52 - (NAME trivial-macroexpand-all FILENAME trivial-macroexpand-all) 53 - (NAME type-i FILENAME type-i) (NAME uiop FILENAME uiop)) 54 - DEPENDENCIES 55 - (alexandria babel bordeaux-threads closer-mop fare-quasiquote 56 - fare-quasiquote-extras fare-quasiquote-optima fare-quasiquote-readtable 57 - fare-utils global-vars introspect-environment iterate lisp-namespace 58 - named-readtables parse-declarations-1.0 parse-number split-sequence 59 - string-case trivia trivia.balland2006 trivia.level0 trivia.level1 60 - trivia.level2 trivia.quasiquote trivia.trivial trivial-cltl2 61 - trivial-features trivial-file-size trivial-garbage trivial-macroexpand-all 62 - type-i uiop) 63 - VERSION 20211209-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/simple-date-time.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "simple-date-time"; 5 - version = "20160421-git"; 6 - 7 - description = "date and time library for common lisp"; 8 - 9 - deps = [ args."cl-ppcre" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz"; 13 - sha256 = "1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h"; 14 - }; 15 - 16 - packageName = "simple-date-time"; 17 - 18 - asdFilesToKeep = ["simple-date-time.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM simple-date-time DESCRIPTION date and time library for common lisp 22 - SHA256 1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h URL 23 - http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz 24 - MD5 a5b1e4af539646723dafacbc8cf732a0 NAME simple-date-time FILENAME 25 - simple-date-time DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES 26 - (cl-ppcre) VERSION 20160421-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/simple-date.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "simple-date"; 5 - version = "postmodern-20211209-git"; 6 - 7 - parasites = [ "simple-date/tests" ]; 8 - 9 - description = "Simple date library that can be used with postmodern"; 10 - 11 - deps = [ args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz"; 15 - sha256 = "1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6"; 16 - }; 17 - 18 - packageName = "simple-date"; 19 - 20 - asdFilesToKeep = ["simple-date.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM simple-date DESCRIPTION 24 - Simple date library that can be used with postmodern SHA256 25 - 1qcbg31mz5r7ibmq2y7r3vqvdwpznxvwdnwd94hfil7pg4j119d6 URL 26 - http://beta.quicklisp.org/archive/postmodern/2021-12-09/postmodern-20211209-git.tgz 27 - MD5 6d14c4b5fec085594dc66d520174e0e6 NAME simple-date FILENAME simple-date 28 - DEPS ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) VERSION 29 - postmodern-20211209-git SIBLINGS (cl-postgres postmodern s-sql) PARASITES 30 - (simple-date/tests)) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/simple-inferiors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "simple-inferiors"; 5 - version = "20200325-git"; 6 - 7 - description = "A very simple library to use inferior processes."; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."documentation-utils" args."trivial-indent" args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/simple-inferiors/2020-03-25/simple-inferiors-20200325-git.tgz"; 13 - sha256 = "15gjizqrazr0ahdda2l6bkv7ii5ax1wckn9mnj5haiv17jba8pn5"; 14 - }; 15 - 16 - packageName = "simple-inferiors"; 17 - 18 - asdFilesToKeep = ["simple-inferiors.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM simple-inferiors DESCRIPTION 22 - A very simple library to use inferior processes. SHA256 23 - 15gjizqrazr0ahdda2l6bkv7ii5ax1wckn9mnj5haiv17jba8pn5 URL 24 - http://beta.quicklisp.org/archive/simple-inferiors/2020-03-25/simple-inferiors-20200325-git.tgz 25 - MD5 f90ae807c10d5b3c4b9eef1134a537c8 NAME simple-inferiors FILENAME 26 - simple-inferiors DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME documentation-utils FILENAME documentation-utils) 30 - (NAME trivial-indent FILENAME trivial-indent) (NAME uiop FILENAME uiop)) 31 - DEPENDENCIES 32 - (alexandria bordeaux-threads documentation-utils trivial-indent uiop) 33 - VERSION 20200325-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/simple-tasks.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "simple-tasks"; 5 - version = "20190710-git"; 6 - 7 - description = "A very simple task scheduling framework."; 8 - 9 - deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz"; 13 - sha256 = "12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3"; 14 - }; 15 - 16 - packageName = "simple-tasks"; 17 - 18 - asdFilesToKeep = ["simple-tasks.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM simple-tasks DESCRIPTION A very simple task scheduling framework. 22 - SHA256 12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3 URL 23 - http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz 24 - MD5 8e88a9a762bc8691f92217d256baa55e NAME simple-tasks FILENAME 25 - simple-tasks DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME array-utils FILENAME array-utils) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME dissect FILENAME dissect)) 30 - DEPENDENCIES (alexandria array-utils bordeaux-threads dissect) VERSION 31 - 20190710-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/slynk.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "slynk"; 5 - version = "sly-20210411-git"; 6 - 7 - parasites = [ "slynk/arglists" "slynk/fancy-inspector" "slynk/indentation" "slynk/mrepl" "slynk/package-fu" "slynk/profiler" "slynk/retro" "slynk/stickers" "slynk/trace-dialog" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/sly/2021-04-11/sly-20210411-git.tgz"; 15 - sha256 = "1a96aapsz3fhnnnb8njn8v2ddrh6kwisppd90cc7v8knh043xgks"; 16 - }; 17 - 18 - packageName = "slynk"; 19 - 20 - asdFilesToKeep = ["slynk.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM slynk DESCRIPTION System lacks description SHA256 24 - 1a96aapsz3fhnnnb8njn8v2ddrh6kwisppd90cc7v8knh043xgks URL 25 - http://beta.quicklisp.org/archive/sly/2021-04-11/sly-20210411-git.tgz MD5 26 - 7f0ff6b8a07d23599c77cd33c6d59ea6 NAME slynk FILENAME slynk DEPS NIL 27 - DEPENDENCIES NIL VERSION sly-20210411-git SIBLINGS NIL PARASITES 28 - (slynk/arglists slynk/fancy-inspector slynk/indentation slynk/mrepl 29 - slynk/package-fu slynk/profiler slynk/retro slynk/stickers 30 - slynk/trace-dialog)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/smart-buffer.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "smart-buffer"; 5 - version = "20211020-git"; 6 - 7 - description = "Smart octets buffer"; 8 - 9 - deps = [ args."flexi-streams" args."trivial-gray-streams" args."uiop" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/smart-buffer/2021-10-20/smart-buffer-20211020-git.tgz"; 13 - sha256 = "0v25s4msnwi9vn0cwfv3kxamj0mr2xdwngwmxmhh93mr4fkqzdnv"; 14 - }; 15 - 16 - packageName = "smart-buffer"; 17 - 18 - asdFilesToKeep = ["smart-buffer.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM smart-buffer DESCRIPTION Smart octets buffer SHA256 22 - 0v25s4msnwi9vn0cwfv3kxamj0mr2xdwngwmxmhh93mr4fkqzdnv URL 23 - http://beta.quicklisp.org/archive/smart-buffer/2021-10-20/smart-buffer-20211020-git.tgz 24 - MD5 d09d02788667d987b3988b6de09d09c3 NAME smart-buffer FILENAME 25 - smart-buffer DEPS 26 - ((NAME flexi-streams FILENAME flexi-streams) 27 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 28 - (NAME uiop FILENAME uiop) (NAME xsubseq FILENAME xsubseq)) 29 - DEPENDENCIES (flexi-streams trivial-gray-streams uiop xsubseq) VERSION 30 - 20211020-git SIBLINGS (smart-buffer-test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/smug.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "smug"; 5 - version = "20160421-git"; 6 - 7 - description = "SMUG: Simple Monadic Uber Go-into, Parsing made easy."; 8 - 9 - deps = [ args."asdf-package-system" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/smug/2016-04-21/smug-20160421-git.tgz"; 13 - sha256 = "0f9ig6r0cm1sbhkasx1v27204rmrjbzgwc49d9hy4zn29ffrg0h2"; 14 - }; 15 - 16 - packageName = "smug"; 17 - 18 - asdFilesToKeep = ["smug.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM smug DESCRIPTION 22 - SMUG: Simple Monadic Uber Go-into, Parsing made easy. SHA256 23 - 0f9ig6r0cm1sbhkasx1v27204rmrjbzgwc49d9hy4zn29ffrg0h2 URL 24 - http://beta.quicklisp.org/archive/smug/2016-04-21/smug-20160421-git.tgz MD5 25 - 8139d7813bb3130497b6da3bb4cb8924 NAME smug FILENAME smug DEPS 26 - ((NAME asdf-package-system FILENAME asdf-package-system)) DEPENDENCIES 27 - (asdf-package-system) VERSION 20160421-git SIBLINGS NIL PARASITES NIL) */
-67
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/spinneret.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "spinneret"; 5 - version = "20211020-git"; 6 - 7 - description = "Common Lisp HTML5 generator."; 8 - 9 - deps = [ args."alexandria" args."anaphora" args."babel" args."bordeaux-threads" args."cl-ppcre" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."global-vars" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."parenscript" args."parse-declarations-1_dot_0" args."parse-number" args."serapeum" args."split-sequence" args."string-case" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."trivial-features" args."trivial-file-size" args."trivial-garbage" args."trivial-gray-streams" args."trivial-macroexpand-all" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/spinneret/2021-10-20/spinneret-20211020-git.tgz"; 13 - sha256 = "1j3z2sr98j7rd8ssxp8r1yxlj8chvldn0k2nh2vf2jaynhwk3slq"; 14 - }; 15 - 16 - packageName = "spinneret"; 17 - 18 - asdFilesToKeep = ["spinneret.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM spinneret DESCRIPTION Common Lisp HTML5 generator. SHA256 22 - 1j3z2sr98j7rd8ssxp8r1yxlj8chvldn0k2nh2vf2jaynhwk3slq URL 23 - http://beta.quicklisp.org/archive/spinneret/2021-10-20/spinneret-20211020-git.tgz 24 - MD5 f10e1537f3bfd16a0a189d16fd86790b NAME spinneret FILENAME spinneret DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 26 - (NAME babel FILENAME babel) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME closer-mop FILENAME closer-mop) 29 - (NAME fare-quasiquote FILENAME fare-quasiquote) 30 - (NAME fare-quasiquote-extras FILENAME fare-quasiquote-extras) 31 - (NAME fare-quasiquote-optima FILENAME fare-quasiquote-optima) 32 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 33 - (NAME fare-utils FILENAME fare-utils) 34 - (NAME global-vars FILENAME global-vars) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) 37 - (NAME lisp-namespace FILENAME lisp-namespace) 38 - (NAME named-readtables FILENAME named-readtables) 39 - (NAME parenscript FILENAME parenscript) 40 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 41 - (NAME parse-number FILENAME parse-number) 42 - (NAME serapeum FILENAME serapeum) 43 - (NAME split-sequence FILENAME split-sequence) 44 - (NAME string-case FILENAME string-case) (NAME trivia FILENAME trivia) 45 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 46 - (NAME trivia.level0 FILENAME trivia_dot_level0) 47 - (NAME trivia.level1 FILENAME trivia_dot_level1) 48 - (NAME trivia.level2 FILENAME trivia_dot_level2) 49 - (NAME trivia.quasiquote FILENAME trivia_dot_quasiquote) 50 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 51 - (NAME trivial-cltl2 FILENAME trivial-cltl2) 52 - (NAME trivial-features FILENAME trivial-features) 53 - (NAME trivial-file-size FILENAME trivial-file-size) 54 - (NAME trivial-garbage FILENAME trivial-garbage) 55 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 56 - (NAME trivial-macroexpand-all FILENAME trivial-macroexpand-all) 57 - (NAME type-i FILENAME type-i)) 58 - DEPENDENCIES 59 - (alexandria anaphora babel bordeaux-threads cl-ppcre closer-mop 60 - fare-quasiquote fare-quasiquote-extras fare-quasiquote-optima 61 - fare-quasiquote-readtable fare-utils global-vars introspect-environment 62 - iterate lisp-namespace named-readtables parenscript parse-declarations-1.0 63 - parse-number serapeum split-sequence string-case trivia trivia.balland2006 64 - trivia.level0 trivia.level1 trivia.level2 trivia.quasiquote trivia.trivial 65 - trivial-cltl2 trivial-features trivial-file-size trivial-garbage 66 - trivial-gray-streams trivial-macroexpand-all type-i) 67 - VERSION 20211020-git SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/split-sequence.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "split-sequence"; 5 - version = "v2.0.1"; 6 - 7 - parasites = [ "split-sequence/tests" ]; 8 - 9 - description = "Splits a sequence into a list of subsequences 10 - delimited by objects satisfying a test."; 11 - 12 - deps = [ args."fiveam" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/split-sequence/2021-05-31/split-sequence-v2.0.1.tgz"; 16 - sha256 = "0x6jdpx5nwby0mjhavqzbfr97725jaryvawjj2f5w9z2s4m9ciya"; 17 - }; 18 - 19 - packageName = "split-sequence"; 20 - 21 - asdFilesToKeep = ["split-sequence.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM split-sequence DESCRIPTION 25 - Splits a sequence into a list of subsequences 26 - delimited by objects satisfying a test. 27 - SHA256 0x6jdpx5nwby0mjhavqzbfr97725jaryvawjj2f5w9z2s4m9ciya URL 28 - http://beta.quicklisp.org/archive/split-sequence/2021-05-31/split-sequence-v2.0.1.tgz 29 - MD5 871be321b4dbca0a1f958927e9173795 NAME split-sequence FILENAME 30 - split-sequence DEPS ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) 31 - VERSION v2.0.1 SIBLINGS NIL PARASITES (split-sequence/tests)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/sqlite.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "sqlite"; 5 - version = "cl-20190813-git"; 6 - 7 - description = "CL-SQLITE package is an interface to the SQLite embedded relational database engine."; 8 - 9 - deps = [ args."alexandria" args."babel" args."cffi" args."iterate" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz"; 13 - sha256 = "07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk"; 14 - }; 15 - 16 - packageName = "sqlite"; 17 - 18 - asdFilesToKeep = ["sqlite.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM sqlite DESCRIPTION 22 - CL-SQLITE package is an interface to the SQLite embedded relational database engine. 23 - SHA256 07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk URL 24 - http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz 25 - MD5 2269773eeb4a101ddd3b33f0f7e05e76 NAME sqlite FILENAME sqlite DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 27 - (NAME cffi FILENAME cffi) (NAME iterate FILENAME iterate) 28 - (NAME trivial-features FILENAME trivial-features)) 29 - DEPENDENCIES (alexandria babel cffi iterate trivial-features) VERSION 30 - cl-20190813-git SIBLINGS NIL PARASITES NIL) */
-43
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/static-dispatch.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "static-dispatch"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "static-dispatch/test" ]; 8 - 9 - description = "Static generic function dispatch for Common Lisp."; 10 - 11 - deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."fiveam" args."introspect-environment" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/static-dispatch/2021-12-09/static-dispatch-20211209-git.tgz"; 15 - sha256 = "04hvwn5fvxlblhicdbj0sbvlgcxsnykak05j3pdv5laic50jz192"; 16 - }; 17 - 18 - packageName = "static-dispatch"; 19 - 20 - asdFilesToKeep = ["static-dispatch.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM static-dispatch DESCRIPTION 24 - Static generic function dispatch for Common Lisp. SHA256 25 - 04hvwn5fvxlblhicdbj0sbvlgcxsnykak05j3pdv5laic50jz192 URL 26 - http://beta.quicklisp.org/archive/static-dispatch/2021-12-09/static-dispatch-20211209-git.tgz 27 - MD5 f74cb2bd29ef9cfe966f470c7f63420f NAME static-dispatch FILENAME 28 - static-dispatch DEPS 29 - ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria) 30 - (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows) 31 - (NAME cl-environments FILENAME cl-environments) 32 - (NAME cl-form-types FILENAME cl-form-types) 33 - (NAME closer-mop FILENAME closer-mop) 34 - (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam) 35 - (NAME introspect-environment FILENAME introspect-environment) 36 - (NAME iterate FILENAME iterate) (NAME optima FILENAME optima) 37 - (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0) 38 - (NAME symbol-munger FILENAME symbol-munger)) 39 - DEPENDENCIES 40 - (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop 41 - collectors fiveam introspect-environment iterate optima 42 - parse-declarations-1.0 symbol-munger) 43 - VERSION 20211209-git SIBLINGS NIL PARASITES (static-dispatch/test)) */
-36
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/static-vectors.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "static-vectors"; 5 - version = "v1.8.9"; 6 - 7 - parasites = [ "static-vectors/test" ]; 8 - 9 - description = "Create vectors allocated in static memory."; 10 - 11 - deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/static-vectors/2021-06-30/static-vectors-v1.8.9.tgz"; 15 - sha256 = "01n4iz6s4n57gmxscnj9aign60kh6gp7ak5waqz5zwhsdklgj0j4"; 16 - }; 17 - 18 - packageName = "static-vectors"; 19 - 20 - asdFilesToKeep = ["static-vectors.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM static-vectors DESCRIPTION 24 - Create vectors allocated in static memory. SHA256 25 - 01n4iz6s4n57gmxscnj9aign60kh6gp7ak5waqz5zwhsdklgj0j4 URL 26 - http://beta.quicklisp.org/archive/static-vectors/2021-06-30/static-vectors-v1.8.9.tgz 27 - MD5 f14b819c0d55e7fbd28e9b4a0bb3bfc9 NAME static-vectors FILENAME 28 - static-vectors DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 30 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 31 - (NAME cffi-toolchain FILENAME cffi-toolchain) 32 - (NAME fiveam FILENAME fiveam) 33 - (NAME trivial-features FILENAME trivial-features)) 34 - DEPENDENCIES 35 - (alexandria babel cffi cffi-grovel cffi-toolchain fiveam trivial-features) 36 - VERSION v1.8.9 SIBLINGS NIL PARASITES (static-vectors/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/stefil.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "stefil"; 5 - version = "20181210-git"; 6 - 7 - parasites = [ "stefil-test" ]; 8 - 9 - description = "Stefil - Simple Test Framework In Lisp"; 10 - 11 - deps = [ args."alexandria" args."iterate" args."metabang-bind" args."swank" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz"; 15 - sha256 = "10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g"; 16 - }; 17 - 18 - packageName = "stefil"; 19 - 20 - asdFilesToKeep = ["stefil.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM stefil DESCRIPTION Stefil - Simple Test Framework In Lisp SHA256 24 - 10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g URL 25 - http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz 26 - MD5 3418bf358366748593f65e4b6e1bb8cf NAME stefil FILENAME stefil DEPS 27 - ((NAME alexandria FILENAME alexandria) (NAME iterate FILENAME iterate) 28 - (NAME metabang-bind FILENAME metabang-bind) (NAME swank FILENAME swank)) 29 - DEPENDENCIES (alexandria iterate metabang-bind swank) VERSION 20181210-git 30 - SIBLINGS NIL PARASITES (stefil-test)) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/str.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "str"; 5 - version = "cl-20210531-git"; 6 - 7 - description = "Modern, consistent and terse Common Lisp string manipulation library."; 8 - 9 - deps = [ args."cl-change-case" args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."flexi-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-str/2021-05-31/cl-str-20210531-git.tgz"; 13 - sha256 = "16z1axfik0s2m74ly4bxlrv4mbd2r923y7nrrrc487fsjs3v23bb"; 14 - }; 15 - 16 - packageName = "str"; 17 - 18 - asdFilesToKeep = ["str.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM str DESCRIPTION 22 - Modern, consistent and terse Common Lisp string manipulation library. 23 - SHA256 16z1axfik0s2m74ly4bxlrv4mbd2r923y7nrrrc487fsjs3v23bb URL 24 - http://beta.quicklisp.org/archive/cl-str/2021-05-31/cl-str-20210531-git.tgz 25 - MD5 05144979ce1bf382fdb0b91db932fe6a NAME str FILENAME str DEPS 26 - ((NAME cl-change-case FILENAME cl-change-case) 27 - (NAME cl-ppcre FILENAME cl-ppcre) 28 - (NAME cl-ppcre-unicode FILENAME cl-ppcre-unicode) 29 - (NAME cl-unicode FILENAME cl-unicode) 30 - (NAME flexi-streams FILENAME flexi-streams)) 31 - DEPENDENCIES 32 - (cl-change-case cl-ppcre cl-ppcre-unicode cl-unicode flexi-streams) VERSION 33 - cl-20210531-git SIBLINGS (str.test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/string-case.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "string-case"; 5 - version = "20180711-git"; 6 - 7 - description = "string-case is a macro that generates specialised decision trees to dispatch on string equality"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz"; 13 - sha256 = "1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z"; 14 - }; 15 - 16 - packageName = "string-case"; 17 - 18 - asdFilesToKeep = ["string-case.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM string-case DESCRIPTION 22 - string-case is a macro that generates specialised decision trees to dispatch on string equality 23 - SHA256 1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z URL 24 - http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz 25 - MD5 145c4e13f1e90a070b0a95ca979a9680 NAME string-case FILENAME string-case 26 - DEPS NIL DEPENDENCIES NIL VERSION 20180711-git SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/stumpwm.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "stumpwm"; 5 - version = "20211209-git"; 6 - 7 - description = "A tiling, keyboard driven window manager"; 8 - 9 - deps = [ args."alexandria" args."cl-ppcre" args."clx" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/stumpwm/2021-12-09/stumpwm-20211209-git.tgz"; 13 - sha256 = "1n7wj2jn6sydnyrjmic53lqkqigk1cg140b9pcnk09ngsrq3cn60"; 14 - }; 15 - 16 - packageName = "stumpwm"; 17 - 18 - asdFilesToKeep = ["stumpwm.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM stumpwm DESCRIPTION A tiling, keyboard driven window manager SHA256 22 - 1n7wj2jn6sydnyrjmic53lqkqigk1cg140b9pcnk09ngsrq3cn60 URL 23 - http://beta.quicklisp.org/archive/stumpwm/2021-12-09/stumpwm-20211209-git.tgz 24 - MD5 a556b95108398e56159bafe31c4dbabf NAME stumpwm FILENAME stumpwm DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) 26 - (NAME clx FILENAME clx)) 27 - DEPENDENCIES (alexandria cl-ppcre clx) VERSION 20211209-git SIBLINGS 28 - (stumpwm-tests) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/swank.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "swank"; 5 - version = "slime-v2.26.1"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/slime/2020-12-20/slime-v2.26.1.tgz"; 13 - sha256 = "12q3la9lwzs01x0ii5vss0i8i78lgyjrn3adr3rs027f4b7386ny"; 14 - }; 15 - 16 - packageName = "swank"; 17 - 18 - asdFilesToKeep = ["swank.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM swank DESCRIPTION System lacks description SHA256 22 - 12q3la9lwzs01x0ii5vss0i8i78lgyjrn3adr3rs027f4b7386ny URL 23 - http://beta.quicklisp.org/archive/slime/2020-12-20/slime-v2.26.1.tgz MD5 24 - bd91e1fe29a4f7ebf53a0bfecc9e1e36 NAME swank FILENAME swank DEPS NIL 25 - DEPENDENCIES NIL VERSION slime-v2.26.1 SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/swap-bytes.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "swap-bytes"; 5 - version = "v1.2"; 6 - 7 - parasites = [ "swap-bytes/test" ]; 8 - 9 - description = "Optimized byte-swapping primitives."; 10 - 11 - deps = [ args."fiveam" args."trivial-features" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz"; 15 - sha256 = "05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8"; 16 - }; 17 - 18 - packageName = "swap-bytes"; 19 - 20 - asdFilesToKeep = ["swap-bytes.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM swap-bytes DESCRIPTION Optimized byte-swapping primitives. SHA256 24 - 05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8 URL 25 - http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz 26 - MD5 eea516d7fdbe20bc963a6708c225d719 NAME swap-bytes FILENAME swap-bytes 27 - DEPS 28 - ((NAME fiveam FILENAME fiveam) 29 - (NAME trivial-features FILENAME trivial-features)) 30 - DEPENDENCIES (fiveam trivial-features) VERSION v1.2 SIBLINGS NIL PARASITES 31 - (swap-bytes/test)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/sycamore.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "sycamore"; 5 - version = "20211020-git"; 6 - 7 - description = "A fast, purely functional data structure library"; 8 - 9 - deps = [ args."alexandria" args."cl-fuzz" args."cl-ppcre" args."lisp-unit" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/sycamore/2021-10-20/sycamore-20211020-git.tgz"; 13 - sha256 = "1msh2kpd96s7jfm565snf71bbsmnjmsf8b31y1xg9vkk7xp01cf4"; 14 - }; 15 - 16 - packageName = "sycamore"; 17 - 18 - asdFilesToKeep = ["sycamore.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM sycamore DESCRIPTION 22 - A fast, purely functional data structure library SHA256 23 - 1msh2kpd96s7jfm565snf71bbsmnjmsf8b31y1xg9vkk7xp01cf4 URL 24 - http://beta.quicklisp.org/archive/sycamore/2021-10-20/sycamore-20211020-git.tgz 25 - MD5 0a9f35519b5cb3e5f9467427632ff0f8 NAME sycamore FILENAME sycamore DEPS 26 - ((NAME alexandria FILENAME alexandria) (NAME cl-fuzz FILENAME cl-fuzz) 27 - (NAME cl-ppcre FILENAME cl-ppcre) (NAME lisp-unit FILENAME lisp-unit)) 28 - DEPENDENCIES (alexandria cl-fuzz cl-ppcre lisp-unit) VERSION 20211020-git 29 - SIBLINGS NIL PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/symbol-munger.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "symbol-munger"; 5 - version = "20150407-git"; 6 - 7 - description = "Functions to convert between the spacing and 8 - capitalization conventions of various environments"; 9 - 10 - deps = [ args."alexandria" args."iterate" ]; 11 - 12 - src = fetchurl { 13 - url = "http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz"; 14 - sha256 = "0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6"; 15 - }; 16 - 17 - packageName = "symbol-munger"; 18 - 19 - asdFilesToKeep = ["symbol-munger.asd"]; 20 - overrides = x: x; 21 - } 22 - /* (SYSTEM symbol-munger DESCRIPTION 23 - Functions to convert between the spacing and 24 - capitalization conventions of various environments 25 - SHA256 0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6 URL 26 - http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz 27 - MD5 b1e35b63d7ad1451868d1c40e2fbfab7 NAME symbol-munger FILENAME 28 - symbol-munger DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME iterate FILENAME iterate)) 30 - DEPENDENCIES (alexandria iterate) VERSION 20150407-git SIBLINGS NIL 31 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trees.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trees"; 5 - version = "20180131-git"; 6 - 7 - parasites = [ "trees-tests" ]; 8 - 9 - description = "A library for binary trees in normal and balanced flavors"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/trees/2018-01-31/trees-20180131-git.tgz"; 15 - sha256 = "1p54j2kav1vggdjw5msdpmfyi7cxh41f4j669rgp0g8fpimmzcfg"; 16 - }; 17 - 18 - packageName = "trees"; 19 - 20 - asdFilesToKeep = ["trees.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM trees DESCRIPTION 24 - A library for binary trees in normal and balanced flavors SHA256 25 - 1p54j2kav1vggdjw5msdpmfyi7cxh41f4j669rgp0g8fpimmzcfg URL 26 - http://beta.quicklisp.org/archive/trees/2018-01-31/trees-20180131-git.tgz 27 - MD5 a1b156d15d444d114f475f7abc908064 NAME trees FILENAME trees DEPS NIL 28 - DEPENDENCIES NIL VERSION 20180131-git SIBLINGS NIL PARASITES (trees-tests)) */
-45
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia"; 5 - version = "20211020-git"; 6 - 7 - description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia"; 17 - 18 - asdFilesToKeep = ["trivia.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia DESCRIPTION 22 - NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase 23 - SHA256 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 24 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 25 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia FILENAME trivia DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME closer-mop FILENAME closer-mop) 28 - (NAME introspect-environment FILENAME introspect-environment) 29 - (NAME iterate FILENAME iterate) 30 - (NAME lisp-namespace FILENAME lisp-namespace) 31 - (NAME trivia.balland2006 FILENAME trivia_dot_balland2006) 32 - (NAME trivia.level0 FILENAME trivia_dot_level0) 33 - (NAME trivia.level1 FILENAME trivia_dot_level1) 34 - (NAME trivia.level2 FILENAME trivia_dot_level2) 35 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 36 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 37 - DEPENDENCIES 38 - (alexandria closer-mop introspect-environment iterate lisp-namespace 39 - trivia.balland2006 trivia.level0 trivia.level1 trivia.level2 40 - trivia.trivial trivial-cltl2 type-i) 41 - VERSION 20211020-git SIBLINGS 42 - (trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset trivia.level0 43 - trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test 44 - trivia.trivial) 45 - PARASITES NIL) */
-45
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_balland2006.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_balland2006"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "Optimizer for Trivia based on (Balland 2006)"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia.balland2006"; 17 - 18 - asdFilesToKeep = ["trivia.balland2006.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia.balland2006 DESCRIPTION 22 - Optimizer for Trivia based on (Balland 2006) SHA256 23 - 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 24 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 25 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.balland2006 FILENAME 26 - trivia_dot_balland2006 DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME closer-mop FILENAME closer-mop) 29 - (NAME introspect-environment FILENAME introspect-environment) 30 - (NAME iterate FILENAME iterate) 31 - (NAME lisp-namespace FILENAME lisp-namespace) 32 - (NAME trivia.level0 FILENAME trivia_dot_level0) 33 - (NAME trivia.level1 FILENAME trivia_dot_level1) 34 - (NAME trivia.level2 FILENAME trivia_dot_level2) 35 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 36 - (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i)) 37 - DEPENDENCIES 38 - (alexandria closer-mop introspect-environment iterate lisp-namespace 39 - trivia.level0 trivia.level1 trivia.level2 trivia.trivial trivial-cltl2 40 - type-i) 41 - VERSION trivia-20211020-git SIBLINGS 42 - (trivia trivia.benchmark trivia.cffi trivia.fset trivia.level0 43 - trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test 44 - trivia.trivial) 45 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_level0.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_level0"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "Bootstrapping Pattern Matching Library for implementing Trivia"; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia.level0"; 17 - 18 - asdFilesToKeep = ["trivia.level0.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia.level0 DESCRIPTION 22 - Bootstrapping Pattern Matching Library for implementing Trivia SHA256 23 - 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 24 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 25 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.level0 FILENAME 26 - trivia_dot_level0 DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES 27 - (alexandria) VERSION trivia-20211020-git SIBLINGS 28 - (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset 29 - trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test 30 - trivia.trivial) 31 - PARASITES NIL) */
-33
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_level1.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_level1"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "Core patterns of Trivia"; 8 - 9 - deps = [ args."alexandria" args."trivia_dot_level0" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia.level1"; 17 - 18 - asdFilesToKeep = ["trivia.level1.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia.level1 DESCRIPTION Core patterns of Trivia SHA256 22 - 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 23 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 24 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.level1 FILENAME 25 - trivia_dot_level1 DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME trivia.level0 FILENAME trivia_dot_level0)) 28 - DEPENDENCIES (alexandria trivia.level0) VERSION trivia-20211020-git 29 - SIBLINGS 30 - (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset 31 - trivia.level0 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test 32 - trivia.trivial) 33 - PARASITES NIL) */
-40
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_level2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_level2"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivial-cltl2" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia.level2"; 17 - 18 - asdFilesToKeep = ["trivia.level2.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia.level2 DESCRIPTION 22 - NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase 23 - SHA256 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 24 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 25 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.level2 FILENAME 26 - trivia_dot_level2 DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME closer-mop FILENAME closer-mop) 29 - (NAME lisp-namespace FILENAME lisp-namespace) 30 - (NAME trivia.level0 FILENAME trivia_dot_level0) 31 - (NAME trivia.level1 FILENAME trivia_dot_level1) 32 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 33 - DEPENDENCIES 34 - (alexandria closer-mop lisp-namespace trivia.level0 trivia.level1 35 - trivial-cltl2) 36 - VERSION trivia-20211020-git SIBLINGS 37 - (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset 38 - trivia.level0 trivia.level1 trivia.ppcre trivia.quasiquote trivia.test 39 - trivia.trivial) 40 - PARASITES NIL) */
-46
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_quasiquote"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "fare-quasiquote extension for trivia"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 13 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 14 - }; 15 - 16 - packageName = "trivia.quasiquote"; 17 - 18 - asdFilesToKeep = ["trivia.quasiquote.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivia.quasiquote DESCRIPTION fare-quasiquote extension for trivia 22 - SHA256 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 23 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 24 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.quasiquote FILENAME 25 - trivia_dot_quasiquote DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME closer-mop FILENAME closer-mop) 28 - (NAME fare-quasiquote FILENAME fare-quasiquote) 29 - (NAME fare-quasiquote-readtable FILENAME fare-quasiquote-readtable) 30 - (NAME fare-utils FILENAME fare-utils) 31 - (NAME lisp-namespace FILENAME lisp-namespace) 32 - (NAME named-readtables FILENAME named-readtables) 33 - (NAME trivia.level0 FILENAME trivia_dot_level0) 34 - (NAME trivia.level1 FILENAME trivia_dot_level1) 35 - (NAME trivia.level2 FILENAME trivia_dot_level2) 36 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 37 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 38 - DEPENDENCIES 39 - (alexandria closer-mop fare-quasiquote fare-quasiquote-readtable fare-utils 40 - lisp-namespace named-readtables trivia.level0 trivia.level1 trivia.level2 41 - trivia.trivial trivial-cltl2) 42 - VERSION trivia-20211020-git SIBLINGS 43 - (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset 44 - trivia.level0 trivia.level1 trivia.level2 trivia.ppcre trivia.test 45 - trivia.trivial) 46 - PARASITES NIL) */
-45
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivia_dot_trivial.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivia_dot_trivial"; 5 - version = "trivia-20211020-git"; 6 - 7 - description = "Base level system of Trivia with a trivial optimizer. 8 - Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system, 9 - in order to avoid the circular dependency."; 10 - 11 - deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivial-cltl2" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz"; 15 - sha256 = "0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g"; 16 - }; 17 - 18 - packageName = "trivia.trivial"; 19 - 20 - asdFilesToKeep = ["trivia.trivial.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM trivia.trivial DESCRIPTION 24 - Base level system of Trivia with a trivial optimizer. 25 - Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system, 26 - in order to avoid the circular dependency. 27 - SHA256 0gf63v42pq8cxr7an177p2mf25n5jpqxdf0zb4xqlm2sydk7ng1g URL 28 - http://beta.quicklisp.org/archive/trivia/2021-10-20/trivia-20211020-git.tgz 29 - MD5 db933e44824514d8ccc9b2a119008051 NAME trivia.trivial FILENAME 30 - trivia_dot_trivial DEPS 31 - ((NAME alexandria FILENAME alexandria) 32 - (NAME closer-mop FILENAME closer-mop) 33 - (NAME lisp-namespace FILENAME lisp-namespace) 34 - (NAME trivia.level0 FILENAME trivia_dot_level0) 35 - (NAME trivia.level1 FILENAME trivia_dot_level1) 36 - (NAME trivia.level2 FILENAME trivia_dot_level2) 37 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 38 - DEPENDENCIES 39 - (alexandria closer-mop lisp-namespace trivia.level0 trivia.level1 40 - trivia.level2 trivial-cltl2) 41 - VERSION trivia-20211020-git SIBLINGS 42 - (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset 43 - trivia.level0 trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote 44 - trivia.test) 45 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-arguments.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-arguments"; 5 - version = "20200925-git"; 6 - 7 - description = "A simple library to retrieve the lambda-list of a function."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-arguments/2020-09-25/trivial-arguments-20200925-git.tgz"; 13 - sha256 = "079xm6f1vmsng7dzgb2x3m7k46jfw19wskwf1l5cid5nm267d295"; 14 - }; 15 - 16 - packageName = "trivial-arguments"; 17 - 18 - asdFilesToKeep = ["trivial-arguments.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-arguments DESCRIPTION 22 - A simple library to retrieve the lambda-list of a function. SHA256 23 - 079xm6f1vmsng7dzgb2x3m7k46jfw19wskwf1l5cid5nm267d295 URL 24 - http://beta.quicklisp.org/archive/trivial-arguments/2020-09-25/trivial-arguments-20200925-git.tgz 25 - MD5 3d7b76a729b272019c8827e40bfb6db8 NAME trivial-arguments FILENAME 26 - trivial-arguments DEPS NIL DEPENDENCIES NIL VERSION 20200925-git SIBLINGS 27 - NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-backtrace.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-backtrace"; 5 - version = "20200610-git"; 6 - 7 - description = "trivial-backtrace"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz"; 13 - sha256 = "0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks"; 14 - }; 15 - 16 - packageName = "trivial-backtrace"; 17 - 18 - asdFilesToKeep = ["trivial-backtrace.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-backtrace DESCRIPTION trivial-backtrace SHA256 22 - 0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks URL 23 - http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz 24 - MD5 1d9a7cc7c5840e4eba84c89648908525 NAME trivial-backtrace FILENAME 25 - trivial-backtrace DEPS NIL DEPENDENCIES NIL VERSION 20200610-git SIBLINGS 26 - (trivial-backtrace-test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-clipboard.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-clipboard"; 5 - version = "20210228-git"; 6 - 7 - description = "trivial-clipboard let access system clipboard."; 8 - 9 - deps = [ args."uiop" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-clipboard/2021-02-28/trivial-clipboard-20210228-git.tgz"; 13 - sha256 = "1fmxkz97qrjkc320w849r1411f7j2ghf3g9xh5lczcapgjwq8f0l"; 14 - }; 15 - 16 - packageName = "trivial-clipboard"; 17 - 18 - asdFilesToKeep = ["trivial-clipboard.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-clipboard DESCRIPTION 22 - trivial-clipboard let access system clipboard. SHA256 23 - 1fmxkz97qrjkc320w849r1411f7j2ghf3g9xh5lczcapgjwq8f0l URL 24 - http://beta.quicklisp.org/archive/trivial-clipboard/2021-02-28/trivial-clipboard-20210228-git.tgz 25 - MD5 f147ff33934a3796d89597cea8dbe462 NAME trivial-clipboard FILENAME 26 - trivial-clipboard DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop) 27 - VERSION 20210228-git SIBLINGS (trivial-clipboard-test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-cltl2.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-cltl2"; 5 - version = "20200325-git"; 6 - 7 - description = "Compatibility package exporting CLtL2 functionality"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz"; 13 - sha256 = "0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys"; 14 - }; 15 - 16 - packageName = "trivial-cltl2"; 17 - 18 - asdFilesToKeep = ["trivial-cltl2.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-cltl2 DESCRIPTION 22 - Compatibility package exporting CLtL2 functionality SHA256 23 - 0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys URL 24 - http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz 25 - MD5 aa18140b9840365ceb9a6cddbdbdd67b NAME trivial-cltl2 FILENAME 26 - trivial-cltl2 DEPS NIL DEPENDENCIES NIL VERSION 20200325-git SIBLINGS NIL 27 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-features.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-features"; 5 - version = "20211209-git"; 6 - 7 - description = "Ensures consistent *FEATURES* across multiple CLs."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-features/2021-12-09/trivial-features-20211209-git.tgz"; 13 - sha256 = "1sxblr86hvbb99isr86y08snfpcajd6ra3396ibqkfnw33hhkgql"; 14 - }; 15 - 16 - packageName = "trivial-features"; 17 - 18 - asdFilesToKeep = ["trivial-features.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-features DESCRIPTION 22 - Ensures consistent *FEATURES* across multiple CLs. SHA256 23 - 1sxblr86hvbb99isr86y08snfpcajd6ra3396ibqkfnw33hhkgql URL 24 - http://beta.quicklisp.org/archive/trivial-features/2021-12-09/trivial-features-20211209-git.tgz 25 - MD5 eca3e353c7d7f100a07a5aeb4de02098 NAME trivial-features FILENAME 26 - trivial-features DEPS NIL DEPENDENCIES NIL VERSION 20211209-git SIBLINGS 27 - (trivial-features-tests) PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-file-size.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-file-size"; 5 - version = "20200427-git"; 6 - 7 - parasites = [ "trivial-file-size/tests" ]; 8 - 9 - description = "Stat a file's size."; 10 - 11 - deps = [ args."fiveam" args."uiop" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz"; 15 - sha256 = "1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa"; 16 - }; 17 - 18 - packageName = "trivial-file-size"; 19 - 20 - asdFilesToKeep = ["trivial-file-size.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM trivial-file-size DESCRIPTION Stat a file's size. SHA256 24 - 1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa URL 25 - http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz 26 - MD5 1e1952c60c1711869cd6b87b9bc25b52 NAME trivial-file-size FILENAME 27 - trivial-file-size DEPS 28 - ((NAME fiveam FILENAME fiveam) (NAME uiop FILENAME uiop)) DEPENDENCIES 29 - (fiveam uiop) VERSION 20200427-git SIBLINGS NIL PARASITES 30 - (trivial-file-size/tests)) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-garbage.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-garbage"; 5 - version = "20200925-git"; 6 - 7 - parasites = [ "trivial-garbage/tests" ]; 8 - 9 - description = "Portable finalizers, weak hash-tables and weak pointers."; 10 - 11 - deps = [ args."rt" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz"; 15 - sha256 = "00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83"; 16 - }; 17 - 18 - packageName = "trivial-garbage"; 19 - 20 - asdFilesToKeep = ["trivial-garbage.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM trivial-garbage DESCRIPTION 24 - Portable finalizers, weak hash-tables and weak pointers. SHA256 25 - 00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83 URL 26 - http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz 27 - MD5 9d748d1d549f419ce474f35906707420 NAME trivial-garbage FILENAME 28 - trivial-garbage DEPS ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 29 - 20200925-git SIBLINGS NIL PARASITES (trivial-garbage/tests)) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-gray-streams.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-gray-streams"; 5 - version = "20210124-git"; 6 - 7 - description = "Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams)."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2021-01-24/trivial-gray-streams-20210124-git.tgz"; 13 - sha256 = "0swqcw3649279qyn5lc42xqgi13jc4kd7hf3iasf4vfli8lhb3n6"; 14 - }; 15 - 16 - packageName = "trivial-gray-streams"; 17 - 18 - asdFilesToKeep = ["trivial-gray-streams.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-gray-streams DESCRIPTION 22 - Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams). 23 - SHA256 0swqcw3649279qyn5lc42xqgi13jc4kd7hf3iasf4vfli8lhb3n6 URL 24 - http://beta.quicklisp.org/archive/trivial-gray-streams/2021-01-24/trivial-gray-streams-20210124-git.tgz 25 - MD5 1b93af1cae9f8465d813964db4d10588 NAME trivial-gray-streams FILENAME 26 - trivial-gray-streams DEPS NIL DEPENDENCIES NIL VERSION 20210124-git 27 - SIBLINGS (trivial-gray-streams-test) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-indent.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-indent"; 5 - version = "20210531-git"; 6 - 7 - description = "A very simple library to allow indentation hints for SWANK."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-indent/2021-05-31/trivial-indent-20210531-git.tgz"; 13 - sha256 = "1nqkay4kwy365q1qlba07q9x5ng0sxrcii4fpjqcd8nwbx3kbm8b"; 14 - }; 15 - 16 - packageName = "trivial-indent"; 17 - 18 - asdFilesToKeep = ["trivial-indent.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-indent DESCRIPTION 22 - A very simple library to allow indentation hints for SWANK. SHA256 23 - 1nqkay4kwy365q1qlba07q9x5ng0sxrcii4fpjqcd8nwbx3kbm8b URL 24 - http://beta.quicklisp.org/archive/trivial-indent/2021-05-31/trivial-indent-20210531-git.tgz 25 - MD5 3bb7d208d9d0614121c1f57fcffe65c7 NAME trivial-indent FILENAME 26 - trivial-indent DEPS NIL DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL 27 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-macroexpand-all.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-macroexpand-all"; 5 - version = "20171023-git"; 6 - 7 - description = "Call each implementation's macroexpand-all equivalent"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz"; 13 - sha256 = "0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm"; 14 - }; 15 - 16 - packageName = "trivial-macroexpand-all"; 17 - 18 - asdFilesToKeep = ["trivial-macroexpand-all.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-macroexpand-all DESCRIPTION 22 - Call each implementation's macroexpand-all equivalent SHA256 23 - 0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm URL 24 - http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz 25 - MD5 9cec494869344eb64ebce802c01928c5 NAME trivial-macroexpand-all FILENAME 26 - trivial-macroexpand-all DEPS NIL DEPENDENCIES NIL VERSION 20171023-git 27 - SIBLINGS NIL PARASITES NIL) */
-35
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-main-thread.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-main-thread"; 5 - version = "20190710-git"; 6 - 7 - description = "Compatibility library to run things in the main thread."; 8 - 9 - deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" args."simple-tasks" args."trivial-features" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz"; 13 - sha256 = "1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h"; 14 - }; 15 - 16 - packageName = "trivial-main-thread"; 17 - 18 - asdFilesToKeep = ["trivial-main-thread.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-main-thread DESCRIPTION 22 - Compatibility library to run things in the main thread. SHA256 23 - 1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h URL 24 - http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz 25 - MD5 ab95906f1831aa5b40f271eebdfe11a3 NAME trivial-main-thread FILENAME 26 - trivial-main-thread DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME array-utils FILENAME array-utils) 29 - (NAME bordeaux-threads FILENAME bordeaux-threads) 30 - (NAME dissect FILENAME dissect) (NAME simple-tasks FILENAME simple-tasks) 31 - (NAME trivial-features FILENAME trivial-features)) 32 - DEPENDENCIES 33 - (alexandria array-utils bordeaux-threads dissect simple-tasks 34 - trivial-features) 35 - VERSION 20190710-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-mimes.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-mimes"; 5 - version = "20200715-git"; 6 - 7 - description = "Tiny library to detect mime types in files."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz"; 13 - sha256 = "10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1"; 14 - }; 15 - 16 - packageName = "trivial-mimes"; 17 - 18 - asdFilesToKeep = ["trivial-mimes.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-mimes DESCRIPTION 22 - Tiny library to detect mime types in files. SHA256 23 - 10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1 URL 24 - http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz 25 - MD5 6f400805470232e87b3f69b9239b2b55 NAME trivial-mimes FILENAME 26 - trivial-mimes DEPS NIL DEPENDENCIES NIL VERSION 20200715-git SIBLINGS NIL 27 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-package-local-nicknames.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-package-local-nicknames"; 5 - version = "20200610-git"; 6 - 7 - description = "Portability library for package-local nicknames"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz"; 13 - sha256 = "1wabkcwz0v144rb2w3rvxlcj264indfnvlyigk1wds7nq0c8lwk5"; 14 - }; 15 - 16 - packageName = "trivial-package-local-nicknames"; 17 - 18 - asdFilesToKeep = ["trivial-package-local-nicknames.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-package-local-nicknames DESCRIPTION 22 - Portability library for package-local nicknames SHA256 23 - 1wabkcwz0v144rb2w3rvxlcj264indfnvlyigk1wds7nq0c8lwk5 URL 24 - http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz 25 - MD5 b3620521d3400ad5910878139bc86fcc NAME trivial-package-local-nicknames 26 - FILENAME trivial-package-local-nicknames DEPS NIL DEPENDENCIES NIL VERSION 27 - 20200610-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-shell.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-shell"; 5 - version = "20180228-git"; 6 - 7 - description = "OS and Implementation independent access to the shell"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-shell/2018-02-28/trivial-shell-20180228-git.tgz"; 13 - sha256 = "058gk7fld8v5m84r5fcwl5z8j3pw68xs0jdy9xx6vi1svaxrzngp"; 14 - }; 15 - 16 - packageName = "trivial-shell"; 17 - 18 - asdFilesToKeep = ["trivial-shell.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-shell DESCRIPTION 22 - OS and Implementation independent access to the shell SHA256 23 - 058gk7fld8v5m84r5fcwl5z8j3pw68xs0jdy9xx6vi1svaxrzngp URL 24 - http://beta.quicklisp.org/archive/trivial-shell/2018-02-28/trivial-shell-20180228-git.tgz 25 - MD5 d7b93648abd06be95148d43d09fa2ed0 NAME trivial-shell FILENAME 26 - trivial-shell DEPS NIL DEPENDENCIES NIL VERSION 20180228-git SIBLINGS 27 - (trivial-shell-test) PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-types.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-types"; 5 - version = "20120407-git"; 6 - 7 - description = "Trivial type definitions"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz"; 13 - sha256 = "0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx"; 14 - }; 15 - 16 - packageName = "trivial-types"; 17 - 18 - asdFilesToKeep = ["trivial-types.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-types DESCRIPTION Trivial type definitions SHA256 22 - 0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx URL 23 - http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz 24 - MD5 b14dbe0564dcea33d8f4e852a612d7db NAME trivial-types FILENAME 25 - trivial-types DEPS NIL DEPENDENCIES NIL VERSION 20120407-git SIBLINGS NIL 26 - PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-utf-8.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-utf-8"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "trivial-utf-8/doc" "trivial-utf-8/tests" ]; 8 - 9 - description = "A small library for doing UTF-8-based input and output."; 10 - 11 - deps = [ args."mgl-pax" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/trivial-utf-8/2021-12-09/trivial-utf-8-20211209-git.tgz"; 15 - sha256 = "1bis8shbdva1diwms2lvhlbdz9rvazqqxi9h8d33vlbw4xai075y"; 16 - }; 17 - 18 - packageName = "trivial-utf-8"; 19 - 20 - asdFilesToKeep = ["trivial-utf-8.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM trivial-utf-8 DESCRIPTION 24 - A small library for doing UTF-8-based input and output. SHA256 25 - 1bis8shbdva1diwms2lvhlbdz9rvazqqxi9h8d33vlbw4xai075y URL 26 - http://beta.quicklisp.org/archive/trivial-utf-8/2021-12-09/trivial-utf-8-20211209-git.tgz 27 - MD5 65603f3c4421a93d5d8c214bb406988d NAME trivial-utf-8 FILENAME 28 - trivial-utf-8 DEPS ((NAME mgl-pax FILENAME mgl-pax)) DEPENDENCIES (mgl-pax) 29 - VERSION 20211209-git SIBLINGS NIL PARASITES 30 - (trivial-utf-8/doc trivial-utf-8/tests)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/trivial-with-current-source-form.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "trivial-with-current-source-form"; 5 - version = "20211020-git"; 6 - 7 - description = "Helps macro writers produce better errors for macro users"; 8 - 9 - deps = [ args."alexandria" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/trivial-with-current-source-form/2021-10-20/trivial-with-current-source-form-20211020-git.tgz"; 13 - sha256 = "03x8yx5hqfydxbdy9nxpaqn6yfjv7hvw8idscx66ns4qcpw6p825"; 14 - }; 15 - 16 - packageName = "trivial-with-current-source-form"; 17 - 18 - asdFilesToKeep = ["trivial-with-current-source-form.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM trivial-with-current-source-form DESCRIPTION 22 - Helps macro writers produce better errors for macro users SHA256 23 - 03x8yx5hqfydxbdy9nxpaqn6yfjv7hvw8idscx66ns4qcpw6p825 URL 24 - http://beta.quicklisp.org/archive/trivial-with-current-source-form/2021-10-20/trivial-with-current-source-form-20211020-git.tgz 25 - MD5 b4a3721cbef6101de1c43c540b446efc NAME trivial-with-current-source-form 26 - FILENAME trivial-with-current-source-form DEPS 27 - ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 28 - 20211020-git SIBLINGS NIL PARASITES NIL) */
-38
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/type-i.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "type-i"; 5 - version = "20191227-git"; 6 - 7 - description = "Type Inference Utility on Fundamentally 1-arg Predicates"; 8 - 9 - deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz"; 13 - sha256 = "0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5"; 14 - }; 15 - 16 - packageName = "type-i"; 17 - 18 - asdFilesToKeep = ["type-i.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM type-i DESCRIPTION 22 - Type Inference Utility on Fundamentally 1-arg Predicates SHA256 23 - 0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5 URL 24 - http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz 25 - MD5 af344179d3f97b836d1e3106f8d1c306 NAME type-i FILENAME type-i DEPS 26 - ((NAME alexandria FILENAME alexandria) 27 - (NAME closer-mop FILENAME closer-mop) 28 - (NAME introspect-environment FILENAME introspect-environment) 29 - (NAME lisp-namespace FILENAME lisp-namespace) 30 - (NAME trivia.level0 FILENAME trivia_dot_level0) 31 - (NAME trivia.level1 FILENAME trivia_dot_level1) 32 - (NAME trivia.level2 FILENAME trivia_dot_level2) 33 - (NAME trivia.trivial FILENAME trivia_dot_trivial) 34 - (NAME trivial-cltl2 FILENAME trivial-cltl2)) 35 - DEPENDENCIES 36 - (alexandria closer-mop introspect-environment lisp-namespace trivia.level0 37 - trivia.level1 trivia.level2 trivia.trivial trivial-cltl2) 38 - VERSION 20191227-git SIBLINGS (type-i.test) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/uax-15.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "uax-15"; 5 - version = "20211209-git"; 6 - 7 - parasites = [ "uax-15/tests" ]; 8 - 9 - description = "Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)"; 10 - 11 - deps = [ args."cl-ppcre" args."parachute" args."split-sequence" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/uax-15/2021-12-09/uax-15-20211209-git.tgz"; 15 - sha256 = "0haqp2vgnwq6p4j44xz0xzz4lcf15pj3pla4ybnpral2218j2cdz"; 16 - }; 17 - 18 - packageName = "uax-15"; 19 - 20 - asdFilesToKeep = ["uax-15.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM uax-15 DESCRIPTION 24 - Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15) 25 - SHA256 0haqp2vgnwq6p4j44xz0xzz4lcf15pj3pla4ybnpral2218j2cdz URL 26 - http://beta.quicklisp.org/archive/uax-15/2021-12-09/uax-15-20211209-git.tgz 27 - MD5 431f4e399305c7ed8d3ce151ea6ff132 NAME uax-15 FILENAME uax-15 DEPS 28 - ((NAME cl-ppcre FILENAME cl-ppcre) (NAME parachute FILENAME parachute) 29 - (NAME split-sequence FILENAME split-sequence)) 30 - DEPENDENCIES (cl-ppcre parachute split-sequence) VERSION 20211209-git 31 - SIBLINGS NIL PARASITES (uax-15/tests)) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/uffi.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "uffi"; 5 - version = "20180228-git"; 6 - 7 - description = "Universal Foreign Function Library for Common Lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz"; 13 - sha256 = "1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479"; 14 - }; 15 - 16 - packageName = "uffi"; 17 - 18 - asdFilesToKeep = ["uffi.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM uffi DESCRIPTION Universal Foreign Function Library for Common Lisp 22 - SHA256 1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479 URL 23 - http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz MD5 24 - b0dfb2f966912f4797327948aa7e9119 NAME uffi FILENAME uffi DEPS NIL 25 - DEPENDENCIES NIL VERSION 20180228-git SIBLINGS (uffi-tests) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/uiop.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "uiop"; 5 - version = "3.3.5"; 6 - 7 - description = "System lacks description"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/uiop/2021-08-07/uiop-3.3.5.tgz"; 13 - sha256 = "19bskbcv413ix2rjqlbj9y62qbm6780s5i7h00rvpd488nnrvaqk"; 14 - }; 15 - 16 - packageName = "uiop"; 17 - 18 - asdFilesToKeep = ["uiop.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM uiop DESCRIPTION System lacks description SHA256 22 - 19bskbcv413ix2rjqlbj9y62qbm6780s5i7h00rvpd488nnrvaqk URL 23 - http://beta.quicklisp.org/archive/uiop/2021-08-07/uiop-3.3.5.tgz MD5 24 - 831138297c2ac03189d25bb6b03b919c NAME uiop FILENAME uiop DEPS NIL 25 - DEPENDENCIES NIL VERSION 3.3.5 SIBLINGS (asdf-driver) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/unit-test.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "unit-test"; 5 - version = "20120520-git"; 6 - 7 - description = "unit-testing framework for common lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz"; 13 - sha256 = "1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l"; 14 - }; 15 - 16 - packageName = "unit-test"; 17 - 18 - asdFilesToKeep = ["unit-test.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM unit-test DESCRIPTION unit-testing framework for common lisp SHA256 22 - 1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l URL 23 - http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz 24 - MD5 ffcde1c03dd33862cd4f7288649c3cbc NAME unit-test FILENAME unit-test DEPS 25 - NIL DEPENDENCIES NIL VERSION 20120520-git SIBLINGS NIL PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/unix-options.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "unix-options"; 5 - version = "20151031-git"; 6 - 7 - description = "Easy to use command line option parser"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz"; 13 - sha256 = "0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5"; 14 - }; 15 - 16 - packageName = "unix-options"; 17 - 18 - asdFilesToKeep = ["unix-options.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM unix-options DESCRIPTION Easy to use command line option parser 22 - SHA256 0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5 URL 23 - http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz 24 - MD5 3bbdeafbef3e7a2e94b9756bf173f636 NAME unix-options FILENAME 25 - unix-options DEPS NIL DEPENDENCIES NIL VERSION 20151031-git SIBLINGS NIL 26 - PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/unix-opts.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "unix-opts"; 5 - version = "20210124-git"; 6 - 7 - parasites = [ "unix-opts/tests" ]; 8 - 9 - description = "minimalistic parser of command line arguments"; 10 - 11 - deps = [ ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/unix-opts/2021-01-24/unix-opts-20210124-git.tgz"; 15 - sha256 = "1gjjav035n6297vgc4wi3i64516b8sdyi0d02q0nwicciwg6mwsn"; 16 - }; 17 - 18 - packageName = "unix-opts"; 19 - 20 - asdFilesToKeep = ["unix-opts.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM unix-opts DESCRIPTION minimalistic parser of command line arguments 24 - SHA256 1gjjav035n6297vgc4wi3i64516b8sdyi0d02q0nwicciwg6mwsn URL 25 - http://beta.quicklisp.org/archive/unix-opts/2021-01-24/unix-opts-20210124-git.tgz 26 - MD5 c75d3233c0f2e16793b1ce19bfc83811 NAME unix-opts FILENAME unix-opts DEPS 27 - NIL DEPENDENCIES NIL VERSION 20210124-git SIBLINGS NIL PARASITES 28 - (unix-opts/tests)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/usocket-server.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "usocket-server"; 5 - version = "usocket-0.8.3"; 6 - 7 - description = "Universal socket library for Common Lisp (server side)"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 13 - sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 14 - }; 15 - 16 - packageName = "usocket-server"; 17 - 18 - asdFilesToKeep = ["usocket-server.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM usocket-server DESCRIPTION 22 - Universal socket library for Common Lisp (server side) SHA256 23 - 19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7 URL 24 - http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz MD5 25 - b1103034f32565487ab3b6eb92c0ca2b NAME usocket-server FILENAME 26 - usocket-server DEPS 27 - ((NAME alexandria FILENAME alexandria) 28 - (NAME bordeaux-threads FILENAME bordeaux-threads) 29 - (NAME split-sequence FILENAME split-sequence) 30 - (NAME usocket FILENAME usocket)) 31 - DEPENDENCIES (alexandria bordeaux-threads split-sequence usocket) VERSION 32 - usocket-0.8.3 SIBLINGS (usocket-test usocket) PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/usocket.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "usocket"; 5 - version = "0.8.3"; 6 - 7 - description = "Universal socket library for Common Lisp"; 8 - 9 - deps = [ args."split-sequence" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 13 - sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 14 - }; 15 - 16 - packageName = "usocket"; 17 - 18 - asdFilesToKeep = ["usocket.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM usocket DESCRIPTION Universal socket library for Common Lisp SHA256 22 - 19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7 URL 23 - http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz MD5 24 - b1103034f32565487ab3b6eb92c0ca2b NAME usocket FILENAME usocket DEPS 25 - ((NAME split-sequence FILENAME split-sequence)) DEPENDENCIES 26 - (split-sequence) VERSION 0.8.3 SIBLINGS (usocket-server usocket-test) 27 - PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/utilities_dot_print-items.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "utilities_dot_print-items"; 5 - version = "20210411-git"; 6 - 7 - parasites = [ "utilities.print-items/test" ]; 8 - 9 - description = "A protocol for flexible and composable printing."; 10 - 11 - deps = [ args."alexandria" args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/utilities.print-items/2021-04-11/utilities.print-items-20210411-git.tgz"; 15 - sha256 = "0da2m4b993w31wph2ybdmdd6rycadrp44ccjdba5pygpkf3x00gx"; 16 - }; 17 - 18 - packageName = "utilities.print-items"; 19 - 20 - asdFilesToKeep = ["utilities.print-items.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM utilities.print-items DESCRIPTION 24 - A protocol for flexible and composable printing. SHA256 25 - 0da2m4b993w31wph2ybdmdd6rycadrp44ccjdba5pygpkf3x00gx URL 26 - http://beta.quicklisp.org/archive/utilities.print-items/2021-04-11/utilities.print-items-20210411-git.tgz 27 - MD5 35be0e5ee4c957699082fb6ae8f14ef2 NAME utilities.print-items FILENAME 28 - utilities_dot_print-items DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME fiveam FILENAME fiveam)) 30 - DEPENDENCIES (alexandria fiveam) VERSION 20210411-git SIBLINGS NIL 31 - PARASITES (utilities.print-items/test)) */
-32
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/utilities_dot_print-tree.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "utilities_dot_print-tree"; 5 - version = "20200325-git"; 6 - 7 - parasites = [ "utilities.print-tree/test" ]; 8 - 9 - description = "This system provides simple facilities for printing tree structures."; 10 - 11 - deps = [ args."alexandria" args."fiveam" args."uiop" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz"; 15 - sha256 = "1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww"; 16 - }; 17 - 18 - packageName = "utilities.print-tree"; 19 - 20 - asdFilesToKeep = ["utilities.print-tree.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM utilities.print-tree DESCRIPTION 24 - This system provides simple facilities for printing tree structures. SHA256 25 - 1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww URL 26 - http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz 27 - MD5 618bf5b42c415a44a1566f4f96a2c69a NAME utilities.print-tree FILENAME 28 - utilities_dot_print-tree DEPS 29 - ((NAME alexandria FILENAME alexandria) (NAME fiveam FILENAME fiveam) 30 - (NAME uiop FILENAME uiop)) 31 - DEPENDENCIES (alexandria fiveam uiop) VERSION 20200325-git SIBLINGS NIL 32 - PARASITES (utilities.print-tree/test)) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/uuid.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "uuid"; 5 - version = "20200715-git"; 6 - 7 - description = "UUID Generation"; 8 - 9 - deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."trivial-utf-8" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz"; 13 - sha256 = "1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0"; 14 - }; 15 - 16 - packageName = "uuid"; 17 - 18 - asdFilesToKeep = ["uuid.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM uuid DESCRIPTION UUID Generation SHA256 22 - 1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0 URL 23 - http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz MD5 24 - e550de5e4e0f8cc9dc92aff0b488a991 NAME uuid FILENAME uuid DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME ironclad FILENAME ironclad) 28 - (NAME trivial-utf-8 FILENAME trivial-utf-8)) 29 - DEPENDENCIES (alexandria bordeaux-threads ironclad trivial-utf-8) VERSION 30 - 20200715-git SIBLINGS NIL PARASITES NIL) */
-39
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/varjo.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "varjo"; 5 - version = "release-quicklisp-92f9c75b-git"; 6 - 7 - description = "Common Lisp -> GLSL Compiler"; 8 - 9 - deps = [ args."alexandria" args."cl-ppcre" args."documentation-utils" args."fn" args."glsl-docs" args."glsl-spec" args."glsl-symbols" args."named-readtables" args."parse-float" args."trivial-indent" args."uiop" args."vas-string-metrics" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/varjo/2021-01-24/varjo-release-quicklisp-92f9c75b-git.tgz"; 13 - sha256 = "0xxi2ivjz3fqgw2nxzshf9m7ppvzv7wdg20lr0krq14i8j5gf5jy"; 14 - }; 15 - 16 - packageName = "varjo"; 17 - 18 - asdFilesToKeep = ["varjo.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM varjo DESCRIPTION Common Lisp -> GLSL Compiler SHA256 22 - 0xxi2ivjz3fqgw2nxzshf9m7ppvzv7wdg20lr0krq14i8j5gf5jy URL 23 - http://beta.quicklisp.org/archive/varjo/2021-01-24/varjo-release-quicklisp-92f9c75b-git.tgz 24 - MD5 78a3b8021885ebfab4015e20b885cdcf NAME varjo FILENAME varjo DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) 26 - (NAME documentation-utils FILENAME documentation-utils) 27 - (NAME fn FILENAME fn) (NAME glsl-docs FILENAME glsl-docs) 28 - (NAME glsl-spec FILENAME glsl-spec) 29 - (NAME glsl-symbols FILENAME glsl-symbols) 30 - (NAME named-readtables FILENAME named-readtables) 31 - (NAME parse-float FILENAME parse-float) 32 - (NAME trivial-indent FILENAME trivial-indent) (NAME uiop FILENAME uiop) 33 - (NAME vas-string-metrics FILENAME vas-string-metrics)) 34 - DEPENDENCIES 35 - (alexandria cl-ppcre documentation-utils fn glsl-docs glsl-spec 36 - glsl-symbols named-readtables parse-float trivial-indent uiop 37 - vas-string-metrics) 38 - VERSION release-quicklisp-92f9c75b-git SIBLINGS (varjo.import varjo.tests) 39 - PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/vas-string-metrics.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "vas-string-metrics"; 5 - version = "20211209-git"; 6 - 7 - description = "Jaro-Winkler and Levenshtein string distance algorithms."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/vas-string-metrics/2021-12-09/vas-string-metrics-20211209-git.tgz"; 13 - sha256 = "0q8zzfmwprjw6wmj8aifizx06xw9yrq0c8qhwhrak62cyz9lvf8n"; 14 - }; 15 - 16 - packageName = "vas-string-metrics"; 17 - 18 - asdFilesToKeep = ["vas-string-metrics.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM vas-string-metrics DESCRIPTION 22 - Jaro-Winkler and Levenshtein string distance algorithms. SHA256 23 - 0q8zzfmwprjw6wmj8aifizx06xw9yrq0c8qhwhrak62cyz9lvf8n URL 24 - http://beta.quicklisp.org/archive/vas-string-metrics/2021-12-09/vas-string-metrics-20211209-git.tgz 25 - MD5 b1264bac0f9516d9617397e1b7a7c20e NAME vas-string-metrics FILENAME 26 - vas-string-metrics DEPS NIL DEPENDENCIES NIL VERSION 20211209-git SIBLINGS 27 - (test.vas-string-metrics) PARASITES NIL) */
-31
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/vecto.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "vecto"; 5 - version = "1.5"; 6 - 7 - description = "Create vector graphics in PNG files."; 8 - 9 - deps = [ args."cl-aa" args."cl-paths" args."cl-vectors" args."salza2" args."trivial-gray-streams" args."zpb-ttf" args."zpng" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/vecto/2017-12-27/vecto-1.5.tgz"; 13 - sha256 = "05pxc6s853f67j57bbzsg2izfl0164bifbvdp2ji870yziz88vls"; 14 - }; 15 - 16 - packageName = "vecto"; 17 - 18 - asdFilesToKeep = ["vecto.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM vecto DESCRIPTION Create vector graphics in PNG files. SHA256 22 - 05pxc6s853f67j57bbzsg2izfl0164bifbvdp2ji870yziz88vls URL 23 - http://beta.quicklisp.org/archive/vecto/2017-12-27/vecto-1.5.tgz MD5 24 - 69e6b2f7fa10066d50f9134942afad73 NAME vecto FILENAME vecto DEPS 25 - ((NAME cl-aa FILENAME cl-aa) (NAME cl-paths FILENAME cl-paths) 26 - (NAME cl-vectors FILENAME cl-vectors) (NAME salza2 FILENAME salza2) 27 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 28 - (NAME zpb-ttf FILENAME zpb-ttf) (NAME zpng FILENAME zpng)) 29 - DEPENDENCIES 30 - (cl-aa cl-paths cl-vectors salza2 trivial-gray-streams zpb-ttf zpng) 31 - VERSION 1.5 SIBLINGS (vectometry) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/vom.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "vom"; 5 - version = "20160825-git"; 6 - 7 - description = "A tiny logging utility."; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz"; 13 - sha256 = "0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93"; 14 - }; 15 - 16 - packageName = "vom"; 17 - 18 - asdFilesToKeep = ["vom.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM vom DESCRIPTION A tiny logging utility. SHA256 22 - 0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93 URL 23 - http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz MD5 24 - ad16bdc0221b08de371be6ce25ce3d47 NAME vom FILENAME vom DEPS NIL 25 - DEPENDENCIES NIL VERSION 20160825-git SIBLINGS NIL PARASITES NIL) */
-30
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/wild-package-inferred-system.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "wild-package-inferred-system"; 5 - version = "20200325-git"; 6 - 7 - parasites = [ "wild-package-inferred-system/test" ]; 8 - 9 - description = "Introduces the wildcards `*' and `**' into package-inferred-system"; 10 - 11 - deps = [ args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/wild-package-inferred-system/2020-03-25/wild-package-inferred-system-20200325-git.tgz"; 15 - sha256 = "1ypnpzy9z4zkna29sgl4afc386ksa61302bm5kznxb3zz2v1sjas"; 16 - }; 17 - 18 - packageName = "wild-package-inferred-system"; 19 - 20 - asdFilesToKeep = ["wild-package-inferred-system.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM wild-package-inferred-system DESCRIPTION 24 - Introduces the wildcards `*' and `**' into package-inferred-system SHA256 25 - 1ypnpzy9z4zkna29sgl4afc386ksa61302bm5kznxb3zz2v1sjas URL 26 - http://beta.quicklisp.org/archive/wild-package-inferred-system/2020-03-25/wild-package-inferred-system-20200325-git.tgz 27 - MD5 4dfd9f90d780b1e67640543dd4acbf21 NAME wild-package-inferred-system 28 - FILENAME wild-package-inferred-system DEPS ((NAME fiveam FILENAME fiveam)) 29 - DEPENDENCIES (fiveam) VERSION 20200325-git SIBLINGS (foo-wild) PARASITES 30 - (wild-package-inferred-system/test)) */
-47
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/woo.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "woo"; 5 - version = "20211209-git"; 6 - 7 - description = "An asynchronous HTTP server written in Common Lisp"; 8 - 9 - deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."clack-socket" args."fast-http" args."fast-io" args."flexi-streams" args."lev" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."swap-bytes" args."trivial-features" args."trivial-gray-streams" args."trivial-utf-8" args."vom" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/woo/2021-12-09/woo-20211209-git.tgz"; 13 - sha256 = "0pm4l4sp3zgygkhjzd03kjjk032m5cra628fs25lvcshbrpmkcp3"; 14 - }; 15 - 16 - packageName = "woo"; 17 - 18 - asdFilesToKeep = ["woo.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM woo DESCRIPTION An asynchronous HTTP server written in Common Lisp 22 - SHA256 0pm4l4sp3zgygkhjzd03kjjk032m5cra628fs25lvcshbrpmkcp3 URL 23 - http://beta.quicklisp.org/archive/woo/2021-12-09/woo-20211209-git.tgz MD5 24 - 8f4926c010491996b1ffe39882fafb2b NAME woo FILENAME woo DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME bordeaux-threads FILENAME bordeaux-threads) 27 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 28 - (NAME cffi-toolchain FILENAME cffi-toolchain) 29 - (NAME cl-utilities FILENAME cl-utilities) 30 - (NAME clack-socket FILENAME clack-socket) 31 - (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io) 32 - (NAME flexi-streams FILENAME flexi-streams) (NAME lev FILENAME lev) 33 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 34 - (NAME smart-buffer FILENAME smart-buffer) 35 - (NAME split-sequence FILENAME split-sequence) 36 - (NAME static-vectors FILENAME static-vectors) 37 - (NAME swap-bytes FILENAME swap-bytes) 38 - (NAME trivial-features FILENAME trivial-features) 39 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 40 - (NAME trivial-utf-8 FILENAME trivial-utf-8) (NAME vom FILENAME vom) 41 - (NAME xsubseq FILENAME xsubseq)) 42 - DEPENDENCIES 43 - (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain 44 - cl-utilities clack-socket fast-http fast-io flexi-streams lev proc-parse 45 - quri smart-buffer split-sequence static-vectors swap-bytes 46 - trivial-features trivial-gray-streams trivial-utf-8 vom xsubseq) 47 - VERSION 20211209-git SIBLINGS (clack-handler-woo woo-test) PARASITES NIL) */
-52
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/wookie.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "wookie"; 5 - version = "20191130-git"; 6 - 7 - description = "An evented webserver for Common Lisp."; 8 - 9 - deps = [ args."alexandria" args."babel" args."blackbird" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chunga" args."cl-async" args."cl-async-base" args."cl-async-ssl" args."cl-async-util" args."cl-fad" args."cl-libuv" args."cl-ppcre" args."cl-utilities" args."do-urlencode" args."fast-http" args."fast-io" args."flexi-streams" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" args."xsubseq" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz"; 13 - sha256 = "13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2"; 14 - }; 15 - 16 - packageName = "wookie"; 17 - 18 - asdFilesToKeep = ["wookie.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM wookie DESCRIPTION An evented webserver for Common Lisp. SHA256 22 - 13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2 URL 23 - http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz 24 - MD5 5e5d6537637312919fd528bb1d0c1eba NAME wookie FILENAME wookie DEPS 25 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 26 - (NAME blackbird FILENAME blackbird) 27 - (NAME bordeaux-threads FILENAME bordeaux-threads) 28 - (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel) 29 - (NAME cffi-toolchain FILENAME cffi-toolchain) 30 - (NAME chunga FILENAME chunga) (NAME cl-async FILENAME cl-async) 31 - (NAME cl-async-base FILENAME cl-async-base) 32 - (NAME cl-async-ssl FILENAME cl-async-ssl) 33 - (NAME cl-async-util FILENAME cl-async-util) (NAME cl-fad FILENAME cl-fad) 34 - (NAME cl-libuv FILENAME cl-libuv) (NAME cl-ppcre FILENAME cl-ppcre) 35 - (NAME cl-utilities FILENAME cl-utilities) 36 - (NAME do-urlencode FILENAME do-urlencode) 37 - (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io) 38 - (NAME flexi-streams FILENAME flexi-streams) 39 - (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri) 40 - (NAME smart-buffer FILENAME smart-buffer) 41 - (NAME split-sequence FILENAME split-sequence) 42 - (NAME static-vectors FILENAME static-vectors) 43 - (NAME trivial-features FILENAME trivial-features) 44 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 45 - (NAME vom FILENAME vom) (NAME xsubseq FILENAME xsubseq)) 46 - DEPENDENCIES 47 - (alexandria babel blackbird bordeaux-threads cffi cffi-grovel 48 - cffi-toolchain chunga cl-async cl-async-base cl-async-ssl cl-async-util 49 - cl-fad cl-libuv cl-ppcre cl-utilities do-urlencode fast-http fast-io 50 - flexi-streams proc-parse quri smart-buffer split-sequence static-vectors 51 - trivial-features trivial-gray-streams vom xsubseq) 52 - VERSION 20191130-git SIBLINGS NIL PARASITES NIL) */
-27
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xembed.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xembed"; 5 - version = "clx-20191130-git"; 6 - 7 - description = "An implementation of the XEMBED protocol that integrates with CLX."; 8 - 9 - deps = [ args."clx" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz"; 13 - sha256 = "1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd"; 14 - }; 15 - 16 - packageName = "xembed"; 17 - 18 - asdFilesToKeep = ["xembed.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM xembed DESCRIPTION 22 - An implementation of the XEMBED protocol that integrates with CLX. SHA256 23 - 1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd URL 24 - http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz 25 - MD5 11d35eeb734c0694005a5e5cec4cad22 NAME xembed FILENAME xembed DEPS 26 - ((NAME clx FILENAME clx)) DEPENDENCIES (clx) VERSION clx-20191130-git 27 - SIBLINGS NIL PARASITES NIL) */
-29
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xkeyboard.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xkeyboard"; 5 - version = "clx-20120811-git"; 6 - 7 - parasites = [ "xkeyboard-test" ]; 8 - 9 - description = "XKeyboard is X11 extension for clx of the same name."; 10 - 11 - deps = [ args."clx" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz"; 15 - sha256 = "11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n"; 16 - }; 17 - 18 - packageName = "xkeyboard"; 19 - 20 - asdFilesToKeep = ["xkeyboard.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM xkeyboard DESCRIPTION 24 - XKeyboard is X11 extension for clx of the same name. SHA256 25 - 11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n URL 26 - http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz 27 - MD5 4e382b34e05d33f5de8e9c9dea33131c NAME xkeyboard FILENAME xkeyboard DEPS 28 - ((NAME clx FILENAME clx)) DEPENDENCIES (clx) VERSION clx-20120811-git 29 - SIBLINGS NIL PARASITES (xkeyboard-test)) */
-48
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xml_dot_location.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xml_dot_location"; 5 - version = "20200325-git"; 6 - 7 - parasites = [ "xml.location/test" ]; 8 - 9 - description = "This system provides a convenient interface for 10 - manipulating XML data. It is inspired by the xmltio library."; 11 - 12 - deps = [ args."alexandria" args."anaphora" args."babel" args."cl-ppcre" args."closer-mop" args."closure-common" args."cxml" args."cxml-stp" args."iterate" args."let-plus" args."lift" args."more-conditions" args."parse-number" args."puri" args."split-sequence" args."trivial-features" args."trivial-gray-streams" args."xpath" args."yacc" ]; 13 - 14 - src = fetchurl { 15 - url = "http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz"; 16 - sha256 = "0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx"; 17 - }; 18 - 19 - packageName = "xml.location"; 20 - 21 - asdFilesToKeep = ["xml.location.asd"]; 22 - overrides = x: x; 23 - } 24 - /* (SYSTEM xml.location DESCRIPTION 25 - This system provides a convenient interface for 26 - manipulating XML data. It is inspired by the xmltio library. 27 - SHA256 0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx URL 28 - http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz 29 - MD5 90cf4fd2450ba562c7f9657391dacb1d NAME xml.location FILENAME 30 - xml_dot_location DEPS 31 - ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora) 32 - (NAME babel FILENAME babel) (NAME cl-ppcre FILENAME cl-ppcre) 33 - (NAME closer-mop FILENAME closer-mop) 34 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 35 - (NAME cxml-stp FILENAME cxml-stp) (NAME iterate FILENAME iterate) 36 - (NAME let-plus FILENAME let-plus) (NAME lift FILENAME lift) 37 - (NAME more-conditions FILENAME more-conditions) 38 - (NAME parse-number FILENAME parse-number) (NAME puri FILENAME puri) 39 - (NAME split-sequence FILENAME split-sequence) 40 - (NAME trivial-features FILENAME trivial-features) 41 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 42 - (NAME xpath FILENAME xpath) (NAME yacc FILENAME yacc)) 43 - DEPENDENCIES 44 - (alexandria anaphora babel cl-ppcre closer-mop closure-common cxml cxml-stp 45 - iterate let-plus lift more-conditions parse-number puri split-sequence 46 - trivial-features trivial-gray-streams xpath yacc) 47 - VERSION 20200325-git SIBLINGS (xml.location-and-local-time) PARASITES 48 - (xml.location/test)) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xmls.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xmls"; 5 - version = "3.0.2"; 6 - 7 - parasites = [ "xmls/test" "xmls/unit-test" ]; 8 - 9 - description = "System lacks description"; 10 - 11 - deps = [ args."fiveam" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz"; 15 - sha256 = "1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi"; 16 - }; 17 - 18 - packageName = "xmls"; 19 - 20 - asdFilesToKeep = ["xmls.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM xmls DESCRIPTION System lacks description SHA256 24 - 1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi URL 25 - http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz MD5 26 - 2462bab4a5d74e87ef7bdef41cd06dc8 NAME xmls FILENAME xmls DEPS 27 - ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) VERSION 3.0.2 28 - SIBLINGS NIL PARASITES (xmls/test xmls/unit-test)) */
-38
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xpath.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xpath"; 5 - version = "plexippus-20190521-git"; 6 - 7 - parasites = [ "xpath/test" ]; 8 - 9 - description = "An implementation of the XML Path Language (XPath) Version 1.0"; 10 - 11 - deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."parse-number" args."puri" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 12 - 13 - src = fetchurl { 14 - url = "http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz"; 15 - sha256 = "15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa"; 16 - }; 17 - 18 - packageName = "xpath"; 19 - 20 - asdFilesToKeep = ["xpath.asd"]; 21 - overrides = x: x; 22 - } 23 - /* (SYSTEM xpath DESCRIPTION 24 - An implementation of the XML Path Language (XPath) Version 1.0 SHA256 25 - 15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa URL 26 - http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz 27 - MD5 eb9a4c39a7c37aa0338c401713b3f944 NAME xpath FILENAME xpath DEPS 28 - ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) 29 - (NAME cl-ppcre FILENAME cl-ppcre) 30 - (NAME closure-common FILENAME closure-common) (NAME cxml FILENAME cxml) 31 - (NAME parse-number FILENAME parse-number) (NAME puri FILENAME puri) 32 - (NAME trivial-features FILENAME trivial-features) 33 - (NAME trivial-gray-streams FILENAME trivial-gray-streams) 34 - (NAME yacc FILENAME yacc)) 35 - DEPENDENCIES 36 - (alexandria babel cl-ppcre closure-common cxml parse-number puri 37 - trivial-features trivial-gray-streams yacc) 38 - VERSION plexippus-20190521-git SIBLINGS NIL PARASITES (xpath/test)) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/xsubseq.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "xsubseq"; 5 - version = "20170830-git"; 6 - 7 - description = "Efficient way to manage \"subseq\"s in Common Lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz"; 13 - sha256 = "1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml"; 14 - }; 15 - 16 - packageName = "xsubseq"; 17 - 18 - asdFilesToKeep = ["xsubseq.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM xsubseq DESCRIPTION Efficient way to manage "subseq"s in Common Lisp 22 - SHA256 1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml URL 23 - http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz 24 - MD5 960bb8f329649b6e4b820e065e6b38e8 NAME xsubseq FILENAME xsubseq DEPS NIL 25 - DEPENDENCIES NIL VERSION 20170830-git SIBLINGS (xsubseq-test) PARASITES NIL) */
-25
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/yacc.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "yacc"; 5 - version = "cl-20101006-darcs"; 6 - 7 - description = "A LALR(1) parser generator for Common Lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz"; 13 - sha256 = "0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7"; 14 - }; 15 - 16 - packageName = "yacc"; 17 - 18 - asdFilesToKeep = ["yacc.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM yacc DESCRIPTION A LALR(1) parser generator for Common Lisp SHA256 22 - 0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7 URL 23 - http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz 24 - MD5 748b9d59de8be3ccfdf0f001e15972ba NAME yacc FILENAME yacc DEPS NIL 25 - DEPENDENCIES NIL VERSION cl-20101006-darcs SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/yason.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "yason"; 5 - version = "v0.7.8"; 6 - 7 - description = "JSON parser/encoder"; 8 - 9 - deps = [ args."alexandria" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz"; 13 - sha256 = "11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1"; 14 - }; 15 - 16 - packageName = "yason"; 17 - 18 - asdFilesToKeep = ["yason.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM yason DESCRIPTION JSON parser/encoder SHA256 22 - 11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1 URL 23 - http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz MD5 24 - 7c3231635aa494f1721273713ea8c56a NAME yason FILENAME yason DEPS 25 - ((NAME alexandria FILENAME alexandria) 26 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 27 - DEPENDENCIES (alexandria trivial-gray-streams) VERSION v0.7.8 SIBLINGS NIL 28 - PARASITES NIL) */
-26
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/zpb-ttf.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "zpb-ttf"; 5 - version = "release-1.0.4"; 6 - 7 - description = "Access TrueType font metrics and outlines from Common Lisp"; 8 - 9 - deps = [ ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/zpb-ttf/2021-01-24/zpb-ttf-release-1.0.4.tgz"; 13 - sha256 = "186jzhmklby2pkmwv3zxw09qh8023f7w5ng2ql46l6abx146s3ll"; 14 - }; 15 - 16 - packageName = "zpb-ttf"; 17 - 18 - asdFilesToKeep = ["zpb-ttf.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM zpb-ttf DESCRIPTION 22 - Access TrueType font metrics and outlines from Common Lisp SHA256 23 - 186jzhmklby2pkmwv3zxw09qh8023f7w5ng2ql46l6abx146s3ll URL 24 - http://beta.quicklisp.org/archive/zpb-ttf/2021-01-24/zpb-ttf-release-1.0.4.tgz 25 - MD5 b66f67b0a1fc347657d4d71ddb304920 NAME zpb-ttf FILENAME zpb-ttf DEPS NIL 26 - DEPENDENCIES NIL VERSION release-1.0.4 SIBLINGS NIL PARASITES NIL) */
-28
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-output/zpng.nix
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "zpng"; 5 - version = "1.2.2"; 6 - 7 - description = "Create PNG files"; 8 - 9 - deps = [ args."salza2" args."trivial-gray-streams" ]; 10 - 11 - src = fetchurl { 12 - url = "http://beta.quicklisp.org/archive/zpng/2015-04-07/zpng-1.2.2.tgz"; 13 - sha256 = "0932gq9wncibm1z81gbvdc3ip6n118wwzmjnpxaqdy9hk5bs2w1x"; 14 - }; 15 - 16 - packageName = "zpng"; 17 - 18 - asdFilesToKeep = ["zpng.asd"]; 19 - overrides = x: x; 20 - } 21 - /* (SYSTEM zpng DESCRIPTION Create PNG files SHA256 22 - 0932gq9wncibm1z81gbvdc3ip6n118wwzmjnpxaqdy9hk5bs2w1x URL 23 - http://beta.quicklisp.org/archive/zpng/2015-04-07/zpng-1.2.2.tgz MD5 24 - 0a208f4ce0087ef578d477341d5f4078 NAME zpng FILENAME zpng DEPS 25 - ((NAME salza2 FILENAME salza2) 26 - (NAME trivial-gray-streams FILENAME trivial-gray-streams)) 27 - DEPENDENCIES (salza2 trivial-gray-streams) VERSION 1.2.2 SIBLINGS NIL 28 - PARASITES NIL) */
-295
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-overrides.nix
··· 1 - {pkgs, clwrapper, quicklisp-to-nix-packages}: 2 - let 3 - addNativeLibs = libs: x: { propagatedBuildInputs = libs; }; 4 - skipBuildPhase = x: { 5 - overrides = y: ((x.overrides y) // { buildPhase = "true"; }); 6 - }; 7 - multiOverride = l: x: pkgs.lib.optionalAttrs (l != []) (((builtins.head l) x) // (multiOverride (builtins.tail l) x)); 8 - lispName = (clwrapper.lisp.pname or (builtins.parseDrvName clwrapper.lisp.name).name); 9 - ifLispIn = l: f: if (pkgs.lib.elem lispName l) then f else (x: {}); 10 - ifLispNotIn = l: f: if ! (pkgs.lib.elem lispName l) then f else (x: {}); 11 - extraLispDeps = l: x: { deps = x.deps ++ l; }; 12 - in 13 - { 14 - stumpwm = x:{ 15 - overrides = y: (x.overrides y) // { 16 - linkedSystems = []; 17 - preConfigure = '' 18 - export configureFlags="$configureFlags --with-$NIX_LISP=common-lisp.sh"; 19 - ''; 20 - postInstall = '' 21 - export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system stumpwm \ 22 - '(function stumpwm:stumpwm)' '$linkedSystems'" 23 - "$out/bin/stumpwm-lisp-launcher.sh" 24 - 25 - cp "$out/lib/common-lisp/stumpwm/stumpwm" "$out/bin" 26 - ''; 27 - }; 28 - }; 29 - iterate = multiOverride [ skipBuildPhase 30 - (ifLispNotIn ["sbcl" "gcl"] (x: { parasites=[]; }))]; 31 - cl-fuse = x: { 32 - propagatedBuildInputs = [pkgs.fuse]; 33 - overrides = y : (x.overrides y) // { 34 - configurePhase = '' 35 - export makeFlags="$makeFlags LISP=common-lisp.sh" 36 - ''; 37 - preInstall = '' 38 - type gcc 39 - mkdir -p "$out/lib/common-lisp/" 40 - cp -r . "$out/lib/common-lisp/cl-fuse/" 41 - "gcc" "-x" "c" "$out/lib/common-lisp/cl-fuse/fuse-launcher.c-minus" "-fPIC" "--shared" "-lfuse" "-o" "$out/lib/common-lisp/cl-fuse/libfuse-launcher.so" 42 - ''; 43 - }; 44 - }; 45 - hunchentoot = addNativeLibs [pkgs.openssl]; 46 - iolib = x: { 47 - propagatedBuildInputs = (x.propagatedBuildInputs or []) 48 - ++ (with pkgs; [libfixposix gcc]) 49 - ; 50 - overrides = y: (x.overrides y) // { 51 - prePatch = '' 52 - sed 's|default \"libfixposix\"|default \"${pkgs.libfixposix}/lib/libfixposix\"|' -i src/syscalls/ffi-functions-unix.lisp 53 - # Socket tests don't work because they try to access the internet 54 - sed 's/(:file "sockets" :depends-on ("pkgdcl" "defsuites"))//' -i iolib.asd 55 - ''; 56 - }; 57 - 58 - }; 59 - cxml = skipBuildPhase; 60 - wookie = addNativeLibs (with pkgs; [libuv openssl]); 61 - lev = addNativeLibs [pkgs.libev]; 62 - cl_plus_ssl = x: rec { 63 - propagatedBuildInputs = [pkgs.openssl]; 64 - overrides = y: (x.overrides y) // { 65 - prePatch = '' 66 - sed 's|libssl.so|${pkgs.lib.getLib pkgs.openssl}/lib/libssl.so|' -i src/reload.lisp 67 - ''; 68 - }; 69 - }; 70 - cl-colors = skipBuildPhase; 71 - cl-libuv = addNativeLibs [pkgs.libuv]; 72 - cl-async-ssl = addNativeLibs [pkgs.openssl (import ./openssl-lib-marked.nix)]; 73 - cl-async-test = addNativeLibs [pkgs.openssl]; 74 - clsql = multiOverride [ (x: { 75 - propagatedBuildInputs = with pkgs; [libmysqlclient postgresql sqlite zlib]; 76 - overrides = y: (x.overrides y) // { 77 - preConfigure = ((x.overrides y).preConfigure or "") + '' 78 - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.libmysqlclient}/include/mysql" 79 - export NIX_LDFLAGS="$NIX_LDFLAGS -L${pkgs.libmysqlclient}/lib/mysql" 80 - '';};}) 81 - (ifLispIn ["ecl" "clisp"] (x: { 82 - deps = pkgs.lib.filter (x: x.outPath != quicklisp-to-nix-packages.uffi.outPath) 83 - (x.deps ++ (with quicklisp-to-nix-packages; [cffi-uffi-compat])); 84 - overrides = y: (x.overrides y) // { 85 - postUnpack = '' 86 - sed -e '1i(cl:push :clsql-cffi cl:*features*)' -i "$sourceRoot/clsql.asd" 87 - ''; 88 - }; 89 - })) 90 - ]; 91 - clsql-postgresql-socket = ifLispIn ["ecl" "clisp"] (x: { 92 - deps = pkgs.lib.filter (x: x.outPath != quicklisp-to-nix-packages.uffi.outPath) 93 - (x.deps ++ (with quicklisp-to-nix-packages; [cffi-uffi-compat])); 94 - overrides = y: (x.overrides y) // { 95 - postUnpack = '' 96 - sed -e '1i(cl:push :clsql-cffi cl:*features*)' -i "$sourceRoot/clsql-postgresql-socket.asd" 97 - ''; 98 - }; 99 - }); 100 - clx-truetype = skipBuildPhase; 101 - query-fs = x: { 102 - overrides = y: (x.overrides y) // { 103 - linkedSystems = []; 104 - postInstall = ((x.overrides y).postInstall or "") + '' 105 - export NIX_LISP_ASDF_PATHS="$NIX_LISP_ASDF_PATHS 106 - $out/lib/common-lisp/query-fs" 107 - export HOME=$PWD 108 - export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system query-fs \ 109 - '(function query-fs:run-fs-with-cmdline-args)' '$linkedSystems'" 110 - "$out/bin/query-fs-lisp-launcher.sh" 111 - cp "$out/lib/common-lisp/query-fs/query-fs" "$out/bin/" 112 - ''; 113 - }; 114 - }; 115 - cffi = addNativeLibs [pkgs.libffi]; 116 - cl-mysql = x: { 117 - propagatedBuildInputs = [pkgs.libmysqlclient]; 118 - overrides = y: (x.overrides y) // { 119 - prePatch = ((x.overrides y).prePatch or "") + '' 120 - sed -i 's,libmysqlclient_r,${pkgs.libmysqlclient}/lib/mysql/libmysqlclient_r,' system.lisp 121 - ''; 122 - }; 123 - }; 124 - cl-ppcre-template = x: { 125 - overrides = y: (x.overrides y) // { 126 - postPatch = '' 127 - ln -s lib-dependent/*.asd . 128 - ''; 129 - }; 130 - }; 131 - sqlite = x: { 132 - propagatedBuildInputs = [pkgs.sqlite]; 133 - overrides = y: (x.overrides y) // { 134 - prePatch = ((x.overrides y).preConfigure or "") + '' 135 - sed 's|libsqlite3|${pkgs.sqlite.out}/lib/libsqlite3|' -i sqlite-ffi.lisp 136 - ''; 137 - }; 138 - }; 139 - swank = x: { 140 - overrides = y: (x.overrides y) // { 141 - postPatch = '' 142 - patch <<EOD 143 - --- swank-loader.lisp 2017-08-30 16:46:16.554076684 -0700 144 - +++ swank-loader-new.lisp 2017-08-30 16:49:23.333450928 -0700 145 - @@ -155,7 +155,7 @@ 146 - ,(unique-dir-name))) 147 - (user-homedir-pathname))) 148 - 149 - -(defvar *fasl-directory* (default-fasl-dir) 150 - +(defvar *fasl-directory* #P"$out/lib/common-lisp/swank/fasl/" 151 - "The directory where fasl files should be placed.") 152 - 153 - (defun binary-pathname (src-pathname binary-dir) 154 - @@ -277,12 +277,7 @@ 155 - (contrib-dir src-dir)))) 156 - 157 - (defun delete-stale-contrib-fasl-files (swank-files contrib-files fasl-dir) 158 - - (let ((newest (reduce #'max (mapcar #'file-write-date swank-files)))) 159 - - (dolist (src contrib-files) 160 - - (let ((fasl (binary-pathname src fasl-dir))) 161 - - (when (and (probe-file fasl) 162 - - (<= (file-write-date fasl) newest)) 163 - - (delete-file fasl)))))) 164 - + (declare (ignore swank-files contrib-files fasl-dir))) 165 - 166 - (defun compile-contribs (&key (src-dir (contrib-dir *source-directory*)) 167 - (fasl-dir (contrib-dir *fasl-directory*)) 168 - EOD 169 - ''; 170 - }; 171 - }; 172 - uiop = x: { 173 - overrides = y: (x.overrides y) // { 174 - postInstall = ((x.overrides y).postInstall or "") + '' 175 - cp -r "${pkgs.asdf}/lib/common-lisp/asdf/uiop/contrib" "$out/lib/common-lisp/uiop" 176 - ''; 177 - }; 178 - }; 179 - cl-containers = x: { 180 - overrides = y: (x.overrides y) // { 181 - postConfigure = "rm GNUmakefile"; 182 - }; 183 - }; 184 - mssql = addNativeLibs [pkgs.freetds]; 185 - cl-unification = x: { 186 - asdFilesToKeep = (x.asdFilesToKeep or []) ++ [ 187 - "cl-unification-lib.asd" 188 - ]; 189 - }; 190 - simple-date = x: { 191 - deps = with quicklisp-to-nix-packages; [ 192 - fiveam md5 usocket 193 - ]; 194 - parasites = [ 195 - # Needs pomo? Wants to do queries unconditionally? 196 - # "simple-date/tests" 197 - ]; 198 - }; 199 - cl-postgres = x: { 200 - deps = pkgs.lib.filter (x: x.outPath != quicklisp-to-nix-packages.simple-date.outPath) x.deps; 201 - parasites = (x.parasites or []) ++ [ 202 - "simple-date" "simple-date/postgres-glue" 203 - ]; 204 - asdFilesToKeep = x.asdFilesToKeep ++ ["simple-date.asd"]; 205 - }; 206 - buildnode = x: { 207 - deps = pkgs.lib.filter (x: x.name != quicklisp-to-nix-packages.buildnode-xhtml.name) x.deps; 208 - parasites = pkgs.lib.filter (x: x!= "buildnode-test") x.parasites; 209 - }; 210 - postmodern = x: { 211 - asdFilesToKeep = (x.asdFilesToKeep or []) ++ ["postmodern.asd" "simple-date.asd"]; 212 - parasites = (pkgs.lib.filter (x: x!= "postmodern/tests") x.parasites) ++ 213 - ["simple-date/postgres-glue"]; 214 - deps = pkgs.lib.filter 215 - (x: x.name != quicklisp-to-nix-packages.simple-date.name) 216 - x.deps; 217 - }; 218 - s-sql = x: { 219 - parasites = pkgs.lib.filter (x: x!= "s-sql/tests") x.parasites; 220 - deps = pkgs.lib.filter 221 - (x: x.name != quicklisp-to-nix-packages.postmodern.name) 222 - x.deps; 223 - }; 224 - split-sequence = x: { 225 - overrides = y: (x.overrides y) // { 226 - preConfigure = '' 227 - sed -i -e '/:components/i:serial t' split-sequence.asd 228 - ''; 229 - }; 230 - }; 231 - cl-store = x: { 232 - overrides = y: (x.overrides y) // { 233 - postPatch = '' 234 - sed -i -e 's/:initform "Unknown" /:initform #:|Unknown| /' backends.lisp 235 - ''; 236 - }; 237 - }; 238 - dbi = x: { 239 - parasites = []; 240 - deps = pkgs.lib.filter 241 - (x: 242 - ( 243 - x.name != quicklisp-to-nix-packages.dbd-mysql.name && 244 - x.name != quicklisp-to-nix-packages.dbd-postgres.name && 245 - x.name != quicklisp-to-nix-packages.dbd-sqlite3.name && 246 - x.name != quicklisp-to-nix-packages.dbi-test.name && 247 - true)) 248 - x.deps; 249 - }; 250 - cl-cffi-gtk-glib = addNativeLibs [pkgs.glib]; 251 - cl-cffi-gtk-gdk-pixbuf = addNativeLibs [pkgs.gdk-pixbuf]; 252 - cl-cffi-gtk-cairo = addNativeLibs [pkgs.cairo]; 253 - cl-cffi-gtk-pango = addNativeLibs [pkgs.pango]; 254 - cl-cffi-gtk-gdk = addNativeLibs [pkgs.gtk3]; 255 - cl-cffi-gtk-gtk3 = addNativeLibs [pkgs.gtk3]; 256 - cl-webkit2 = addNativeLibs [pkgs.webkitgtk]; 257 - clfswm = x: { 258 - overrides = y: (x.overrides y) // { 259 - postInstall = '' 260 - export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system clfswm '(function clfswm:main)'" 261 - "$out/bin/clfswm-lisp-launcher.sh" 262 - 263 - cp "$out/lib/common-lisp/clfswm/clfswm" "$out/bin" 264 - ''; 265 - }; 266 - }; 267 - woo = ifLispNotIn ["sbcl" "gcl"] 268 - (extraLispDeps (with quicklisp-to-nix-packages; [cl-speedy-queue])); 269 - cl-syslog = x: { 270 - overrides = y: (x.overrides y) // { 271 - postUnpack = '' 272 - sed -e '1a:serial t' -i $sourceRoot/cl-syslog.asd 273 - ''; 274 - }; 275 - }; 276 - log4cl = ifLispNotIn ["sbcl" "gcl"] 277 - (extraLispDeps (with quicklisp-to-nix-packages; [cl-syslog])); 278 - md5 = ifLispNotIn ["sbcl" "ccl" "gcl"] 279 - (extraLispDeps (with quicklisp-to-nix-packages; [flexi-streams])); 280 - cl-gobject-introspection = addNativeLibs (with pkgs; [glib gobject-introspection]); 281 - generic-cl = x: { parasites = []; }; 282 - static-dispatch = x: { 283 - overrides = y: (x.overrides y) // { 284 - parasites = []; 285 - # workaround for https://github.com/alex-gutev/static-dispatch/issues/12 286 - postUnpack = '' 287 - sed -e '/^(in-package / a (eval-when (:compile-toplevel :load-toplevel :execute)' \ 288 - -e '$a)' \ 289 - -i $sourceRoot/src/combin.lisp 290 - ''; 291 - }; 292 - }; 293 - lla = addNativeLibs [ pkgs.openblas ]; 294 - # cl-opengl = addNativeLibs [ pkgs.libGL pkgs.glfw ]; 295 - }
-259
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix-systems.txt
··· 1 - 1am 2 - 3bmd 3 - access 4 - acclimation 5 - alexandria 6 - anaphora 7 - arnesi 8 - array-operations 9 - array-utils 10 - asdf-system-connections 11 - babel 12 - binomial-heap 13 - binpack 14 - blackbird 15 - bordeaux-threads 16 - calispel 17 - cffi 18 - cffi-grovel 19 - cffi-uffi-compat 20 - chanl 21 - check-it 22 - chipz 23 - chunga 24 - circular-streams 25 - cl+ssl 26 - cl-annot 27 - cl-ansi-text 28 - cl-async 29 - cl-async-base 30 - cl-async-repl 31 - cl-async-ssl 32 - cl-base64 33 - cl-cffi-gtk 34 - cl-cli 35 - cl-colors 36 - cl-containers 37 - cl-cookie 38 - cl-css 39 - cl-csv 40 - cl-cuda 41 - cl-custom-hash-table 42 - cl-dbi 43 - cl-digraph 44 - cl-dot 45 - cl-emb 46 - cl-fad 47 - cl-fuse 48 - cl-fuse-meta-fs 49 - cl-geometry 50 - cl-gobject-introspection 51 - cl-heap 52 - cl-hooks 53 - cl-html-diff 54 - cl-html-parse 55 - cl-html5-parser 56 - cl-interpol 57 - cl-jpeg 58 - cl-json 59 - cl-l10n 60 - cl-libuv 61 - cl-locale 62 - cl-markup 63 - cl-mustache 64 - cl-mysql 65 - cl-paths-ttf 66 - cl-pattern 67 - cl-pdf 68 - cl-ppcre 69 - cl-ppcre-template 70 - cl-ppcre-unicode 71 - cl-prevalence 72 - cl-protobufs 73 - cl-qrencode 74 - cl-qprint 75 - cl-reexport 76 - cl-shellwords 77 - cl-slice 78 - cl-smt-lib 79 - cl-smtp 80 - cl-speedy-queue 81 - cl-store 82 - cl-svg 83 - cl-syntax 84 - cl-syntax-annot 85 - cl-syntax-anonfun 86 - cl-syntax-markup 87 - cl-syslog 88 - cl-test-more 89 - cl-typesetting 90 - cl-unicode 91 - cl-unification 92 - cl-utilities 93 - cl-vectors 94 - cl-webkit2 95 - cl-who 96 - clack 97 - classowary 98 - clfswm 99 - closer-mop 100 - closure-common 101 - closure-html 102 - clsql 103 - clsql-postgresql 104 - clsql-postgresql-socket 105 - clsql-sqlite3 106 - clss 107 - clump 108 - clx 109 - collectors 110 - command-line-arguments 111 - css-lite 112 - css-selectors 113 - css-selectors-simple-tree 114 - css-selectors-stp 115 - cxml 116 - cxml-stp 117 - data-table 118 - dbd-mysql 119 - dbd-postgres 120 - dbd-sqlite3 121 - dbus 122 - defclass-std 123 - dexador 124 - djula 125 - documentation-utils 126 - drakma 127 - enchant 128 - esrap 129 - esrap-peg 130 - external-program 131 - fare-csv 132 - fare-mop 133 - fare-quasiquote 134 - fare-utils 135 - fast-http 136 - fast-io 137 - file-attributes 138 - fiveam 139 - flexi-streams 140 - float-features 141 - flow 142 - form-fiddle 143 - fset 144 - generic-cl 145 - gettext 146 - heap 147 - http-body 148 - hu.dwim.asdf 149 - hu.dwim.defclass-star 150 - hunchensocket 151 - hunchentoot 152 - idna 153 - ieee-floats 154 - inferior-shell 155 - iolib 156 - ironclad 157 - iterate 158 - jonathan 159 - jsown 160 - lack 161 - legit 162 - let-plus 163 - lev 164 - lfarm-client 165 - lfarm-server 166 - lfarm-ssl 167 - lift 168 - lisp-binary 169 - lisp-namespace 170 - lla 171 - local-time 172 - log4cl 173 - lparallel 174 - lquery 175 - marshal 176 - md5 177 - metabang-bind 178 - metatilities-base 179 - mgl-pax 180 - minheap 181 - misc-extensions 182 - mk-string-metrics 183 - mmap 184 - moptilities 185 - more-conditions 186 - mt19937 187 - named-readtables 188 - nbd 189 - net-telent-date 190 - nibbles 191 - optima 192 - osicat 193 - parachute 194 - parenscript 195 - parse-number 196 - parser-combinators 197 - parser.common-rules 198 - pcall 199 - physical-quantities 200 - plump 201 - postmodern 202 - proc-parse 203 - prove 204 - prove-asdf 205 - puri 206 - pythonic-string-reader 207 - query-fs 208 - quri 209 - rfc2388 210 - salza2 211 - serapeum 212 - simple-date 213 - simple-date-time 214 - slynk 215 - smart-buffer 216 - smug 217 - spinneret 218 - split-sequence 219 - sqlite 220 - static-vectors 221 - str 222 - stumpwm 223 - swank 224 - swap-bytes 225 - sycamore 226 - symbol-munger 227 - trees 228 - trivia 229 - trivial-arguments 230 - trivial-backtrace 231 - trivial-clipboard 232 - trivial-features 233 - trivial-garbage 234 - trivial-gray-streams 235 - trivial-indent 236 - trivial-main-thread 237 - trivial-mimes 238 - trivial-package-local-nicknames 239 - trivial-shell 240 - trivial-types 241 - trivial-utf-8 242 - uffi 243 - uiop 244 - unix-options 245 - unix-opts 246 - usocket 247 - utilities.print-items 248 - utilities.print-tree 249 - uuid 250 - varjo 251 - vecto 252 - woo 253 - wookie 254 - xembed 255 - xkeyboard 256 - xml.location 257 - xmls 258 - xsubseq 259 - yason
-5247
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix.nix
··· 1 - {stdenv, lib, fetchurl, pkgs, clwrapper}: 2 - let quicklisp-to-nix-packages = rec { 3 - inherit stdenv lib fetchurl clwrapper pkgs quicklisp-to-nix-packages; 4 - 5 - callPackage = pkgs.lib.callPackageWith quicklisp-to-nix-packages; 6 - buildLispPackage = callPackage ./define-package.nix; 7 - qlOverrides = callPackage ./quicklisp-to-nix-overrides.nix {}; 8 - 9 - "html-encode" = buildLispPackage 10 - ((f: x: (x // (f x))) 11 - (qlOverrides."html-encode" or (x: {})) 12 - (import ./quicklisp-to-nix-output/html-encode.nix { 13 - inherit fetchurl; 14 - })); 15 - 16 - 17 - "hu_dot_dwim_dot_stefil_plus_swank" = buildLispPackage 18 - ((f: x: (x // (f x))) 19 - (qlOverrides."hu_dot_dwim_dot_stefil_plus_swank" or (x: {})) 20 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_swank.nix { 21 - inherit fetchurl; 22 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 23 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 24 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 25 - "swank" = quicklisp-to-nix-packages."swank"; 26 - })); 27 - 28 - 29 - "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def" = buildLispPackage 30 - ((f: x: (x // (f x))) 31 - (qlOverrides."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def" or (x: {})) 32 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def.nix { 33 - inherit fetchurl; 34 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 35 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 36 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 37 - "hu_dot_dwim_dot_def" = quicklisp-to-nix-packages."hu_dot_dwim_dot_def"; 38 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 39 - "iterate" = quicklisp-to-nix-packages."iterate"; 40 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 41 - })); 42 - 43 - 44 - "hu_dot_dwim_dot_def_plus_swank" = buildLispPackage 45 - ((f: x: (x // (f x))) 46 - (qlOverrides."hu_dot_dwim_dot_def_plus_swank" or (x: {})) 47 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_def_plus_swank.nix { 48 - inherit fetchurl; 49 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 50 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 51 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 52 - "hu_dot_dwim_dot_def" = quicklisp-to-nix-packages."hu_dot_dwim_dot_def"; 53 - "iterate" = quicklisp-to-nix-packages."iterate"; 54 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 55 - "swank" = quicklisp-to-nix-packages."swank"; 56 - })); 57 - 58 - 59 - "hu_dot_dwim_dot_def" = buildLispPackage 60 - ((f: x: (x // (f x))) 61 - (qlOverrides."hu_dot_dwim_dot_def" or (x: {})) 62 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix { 63 - inherit fetchurl; 64 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 65 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 66 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 67 - "iterate" = quicklisp-to-nix-packages."iterate"; 68 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 69 - })); 70 - 71 - 72 - "hu_dot_dwim_dot_common-lisp" = buildLispPackage 73 - ((f: x: (x // (f x))) 74 - (qlOverrides."hu_dot_dwim_dot_common-lisp" or (x: {})) 75 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_common-lisp.nix { 76 - inherit fetchurl; 77 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 78 - })); 79 - 80 - 81 - "rove" = buildLispPackage 82 - ((f: x: (x // (f x))) 83 - (qlOverrides."rove" or (x: {})) 84 - (import ./quicklisp-to-nix-output/rove.nix { 85 - inherit fetchurl; 86 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 87 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 88 - "dissect" = quicklisp-to-nix-packages."dissect"; 89 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 90 - })); 91 - 92 - 93 - "dbi-test" = buildLispPackage 94 - ((f: x: (x // (f x))) 95 - (qlOverrides."dbi-test" or (x: {})) 96 - (import ./quicklisp-to-nix-output/dbi-test.nix { 97 - inherit fetchurl; 98 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 99 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 100 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 101 - "dbi" = quicklisp-to-nix-packages."dbi"; 102 - "dissect" = quicklisp-to-nix-packages."dissect"; 103 - "rove" = quicklisp-to-nix-packages."rove"; 104 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 105 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 106 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 107 - })); 108 - 109 - 110 - "do-urlencode" = buildLispPackage 111 - ((f: x: (x // (f x))) 112 - (qlOverrides."do-urlencode" or (x: {})) 113 - (import ./quicklisp-to-nix-output/do-urlencode.nix { 114 - inherit fetchurl; 115 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 116 - "babel" = quicklisp-to-nix-packages."babel"; 117 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 118 - })); 119 - 120 - 121 - "clack-socket" = buildLispPackage 122 - ((f: x: (x // (f x))) 123 - (qlOverrides."clack-socket" or (x: {})) 124 - (import ./quicklisp-to-nix-output/clack-socket.nix { 125 - inherit fetchurl; 126 - })); 127 - 128 - 129 - "vas-string-metrics" = buildLispPackage 130 - ((f: x: (x // (f x))) 131 - (qlOverrides."vas-string-metrics" or (x: {})) 132 - (import ./quicklisp-to-nix-output/vas-string-metrics.nix { 133 - inherit fetchurl; 134 - })); 135 - 136 - 137 - "parse-float" = buildLispPackage 138 - ((f: x: (x // (f x))) 139 - (qlOverrides."parse-float" or (x: {})) 140 - (import ./quicklisp-to-nix-output/parse-float.nix { 141 - inherit fetchurl; 142 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 143 - "lisp-unit" = quicklisp-to-nix-packages."lisp-unit"; 144 - })); 145 - 146 - 147 - "glsl-symbols" = buildLispPackage 148 - ((f: x: (x // (f x))) 149 - (qlOverrides."glsl-symbols" or (x: {})) 150 - (import ./quicklisp-to-nix-output/glsl-symbols.nix { 151 - inherit fetchurl; 152 - })); 153 - 154 - 155 - "glsl-spec" = buildLispPackage 156 - ((f: x: (x // (f x))) 157 - (qlOverrides."glsl-spec" or (x: {})) 158 - (import ./quicklisp-to-nix-output/glsl-spec.nix { 159 - inherit fetchurl; 160 - })); 161 - 162 - 163 - "glsl-docs" = buildLispPackage 164 - ((f: x: (x // (f x))) 165 - (qlOverrides."glsl-docs" or (x: {})) 166 - (import ./quicklisp-to-nix-output/glsl-docs.nix { 167 - inherit fetchurl; 168 - "glsl-symbols" = quicklisp-to-nix-packages."glsl-symbols"; 169 - })); 170 - 171 - 172 - "fn" = buildLispPackage 173 - ((f: x: (x // (f x))) 174 - (qlOverrides."fn" or (x: {})) 175 - (import ./quicklisp-to-nix-output/fn.nix { 176 - inherit fetchurl; 177 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 178 - })); 179 - 180 - 181 - "simple-tasks" = buildLispPackage 182 - ((f: x: (x // (f x))) 183 - (qlOverrides."simple-tasks" or (x: {})) 184 - (import ./quicklisp-to-nix-output/simple-tasks.nix { 185 - inherit fetchurl; 186 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 187 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 188 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 189 - "dissect" = quicklisp-to-nix-packages."dissect"; 190 - })); 191 - 192 - 193 - "dissect" = buildLispPackage 194 - ((f: x: (x // (f x))) 195 - (qlOverrides."dissect" or (x: {})) 196 - (import ./quicklisp-to-nix-output/dissect.nix { 197 - inherit fetchurl; 198 - })); 199 - 200 - 201 - "lisp-unit" = buildLispPackage 202 - ((f: x: (x // (f x))) 203 - (qlOverrides."lisp-unit" or (x: {})) 204 - (import ./quicklisp-to-nix-output/lisp-unit.nix { 205 - inherit fetchurl; 206 - })); 207 - 208 - 209 - "cl-fuzz" = buildLispPackage 210 - ((f: x: (x // (f x))) 211 - (qlOverrides."cl-fuzz" or (x: {})) 212 - (import ./quicklisp-to-nix-output/cl-fuzz.nix { 213 - inherit fetchurl; 214 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 215 - })); 216 - 217 - 218 - "cl-change-case" = buildLispPackage 219 - ((f: x: (x // (f x))) 220 - (qlOverrides."cl-change-case" or (x: {})) 221 - (import ./quicklisp-to-nix-output/cl-change-case.nix { 222 - inherit fetchurl; 223 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 224 - "cl-ppcre-unicode" = quicklisp-to-nix-packages."cl-ppcre-unicode"; 225 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 226 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 227 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 228 - })); 229 - 230 - 231 - "trivial-macroexpand-all" = buildLispPackage 232 - ((f: x: (x // (f x))) 233 - (qlOverrides."trivial-macroexpand-all" or (x: {})) 234 - (import ./quicklisp-to-nix-output/trivial-macroexpand-all.nix { 235 - inherit fetchurl; 236 - })); 237 - 238 - 239 - "trivial-file-size" = buildLispPackage 240 - ((f: x: (x // (f x))) 241 - (qlOverrides."trivial-file-size" or (x: {})) 242 - (import ./quicklisp-to-nix-output/trivial-file-size.nix { 243 - inherit fetchurl; 244 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 245 - "uiop" = quicklisp-to-nix-packages."uiop"; 246 - })); 247 - 248 - 249 - "simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date"; 250 - 251 - 252 - "s-sql_slash_tests" = quicklisp-to-nix-packages."s-sql"; 253 - 254 - 255 - "s-sql" = buildLispPackage 256 - ((f: x: (x // (f x))) 257 - (qlOverrides."s-sql" or (x: {})) 258 - (import ./quicklisp-to-nix-output/s-sql.nix { 259 - inherit fetchurl; 260 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 261 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 262 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 263 - "cl-postgres" = quicklisp-to-nix-packages."cl-postgres"; 264 - "cl-postgres_slash_tests" = quicklisp-to-nix-packages."cl-postgres_slash_tests"; 265 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 266 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 267 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 268 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 269 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 270 - "md5" = quicklisp-to-nix-packages."md5"; 271 - "postmodern" = quicklisp-to-nix-packages."postmodern"; 272 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 273 - "uax-15" = quicklisp-to-nix-packages."uax-15"; 274 - "usocket" = quicklisp-to-nix-packages."usocket"; 275 - })); 276 - 277 - 278 - "cl-postgres_slash_tests" = quicklisp-to-nix-packages."cl-postgres"; 279 - 280 - 281 - "cl-postgres_plus_local-time" = buildLispPackage 282 - ((f: x: (x // (f x))) 283 - (qlOverrides."cl-postgres_plus_local-time" or (x: {})) 284 - (import ./quicklisp-to-nix-output/cl-postgres_plus_local-time.nix { 285 - inherit fetchurl; 286 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 287 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 288 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 289 - "cl-postgres" = quicklisp-to-nix-packages."cl-postgres"; 290 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 291 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 292 - "local-time" = quicklisp-to-nix-packages."local-time"; 293 - "md5" = quicklisp-to-nix-packages."md5"; 294 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 295 - "uax-15" = quicklisp-to-nix-packages."uax-15"; 296 - "usocket" = quicklisp-to-nix-packages."usocket"; 297 - })); 298 - 299 - 300 - "wild-package-inferred-system" = buildLispPackage 301 - ((f: x: (x // (f x))) 302 - (qlOverrides."wild-package-inferred-system" or (x: {})) 303 - (import ./quicklisp-to-nix-output/wild-package-inferred-system.nix { 304 - inherit fetchurl; 305 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 306 - })); 307 - 308 - 309 - "parseq" = buildLispPackage 310 - ((f: x: (x // (f x))) 311 - (qlOverrides."parseq" or (x: {})) 312 - (import ./quicklisp-to-nix-output/parseq.nix { 313 - inherit fetchurl; 314 - })); 315 - 316 - 317 - "colorize" = buildLispPackage 318 - ((f: x: (x // (f x))) 319 - (qlOverrides."colorize" or (x: {})) 320 - (import ./quicklisp-to-nix-output/colorize.nix { 321 - inherit fetchurl; 322 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 323 - "html-encode" = quicklisp-to-nix-packages."html-encode"; 324 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 325 - })); 326 - 327 - 328 - "_3bmd-ext-code-blocks" = buildLispPackage 329 - ((f: x: (x // (f x))) 330 - (qlOverrides."_3bmd-ext-code-blocks" or (x: {})) 331 - (import ./quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix { 332 - inherit fetchurl; 333 - "_3bmd" = quicklisp-to-nix-packages."_3bmd"; 334 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 335 - "colorize" = quicklisp-to-nix-packages."colorize"; 336 - "esrap" = quicklisp-to-nix-packages."esrap"; 337 - "html-encode" = quicklisp-to-nix-packages."html-encode"; 338 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 339 - "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form"; 340 - })); 341 - 342 - 343 - "cl-num-utils" = buildLispPackage 344 - ((f: x: (x // (f x))) 345 - (qlOverrides."cl-num-utils" or (x: {})) 346 - (import ./quicklisp-to-nix-output/cl-num-utils.nix { 347 - inherit fetchurl; 348 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 349 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 350 - "array-operations" = quicklisp-to-nix-packages."array-operations"; 351 - "cl-slice" = quicklisp-to-nix-packages."cl-slice"; 352 - "clunit" = quicklisp-to-nix-packages."clunit"; 353 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 354 - })); 355 - 356 - 357 - "quasiquote-2_dot_0" = buildLispPackage 358 - ((f: x: (x // (f x))) 359 - (qlOverrides."quasiquote-2_dot_0" or (x: {})) 360 - (import ./quicklisp-to-nix-output/quasiquote-2_dot_0.nix { 361 - inherit fetchurl; 362 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 363 - "iterate" = quicklisp-to-nix-packages."iterate"; 364 - })); 365 - 366 - 367 - "lfarm-common" = buildLispPackage 368 - ((f: x: (x // (f x))) 369 - (qlOverrides."lfarm-common" or (x: {})) 370 - (import ./quicklisp-to-nix-output/lfarm-common.nix { 371 - inherit fetchurl; 372 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 373 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 374 - "cl-store" = quicklisp-to-nix-packages."cl-store"; 375 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 376 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 377 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 378 - "usocket" = quicklisp-to-nix-packages."usocket"; 379 - })); 380 - 381 - "simple-inferiors" = buildLispPackage 382 - ((f: x: (x // (f x))) 383 - (qlOverrides."simple-inferiors" or (x: {})) 384 - (import ./quicklisp-to-nix-output/simple-inferiors.nix { 385 - inherit fetchurl; 386 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 387 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 388 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 389 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 390 - "uiop" = quicklisp-to-nix-packages."uiop"; 391 - })); 392 - 393 - 394 - "lambda-fiddle" = buildLispPackage 395 - ((f: x: (x // (f x))) 396 - (qlOverrides."lambda-fiddle" or (x: {})) 397 - (import ./quicklisp-to-nix-output/lambda-fiddle.nix { 398 - inherit fetchurl; 399 - })); 400 - 401 - 402 - "iolib_dot_grovel" = buildLispPackage 403 - ((f: x: (x // (f x))) 404 - (qlOverrides."iolib_dot_grovel" or (x: {})) 405 - (import ./quicklisp-to-nix-output/iolib_dot_grovel.nix { 406 - inherit fetchurl; 407 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 408 - "babel" = quicklisp-to-nix-packages."babel"; 409 - "cffi" = quicklisp-to-nix-packages."cffi"; 410 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 411 - "iolib_dot_base" = quicklisp-to-nix-packages."iolib_dot_base"; 412 - "iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp"; 413 - "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf"; 414 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 415 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 416 - "uiop" = quicklisp-to-nix-packages."uiop"; 417 - })); 418 - 419 - "trivia_dot_quasiquote" = buildLispPackage 420 - ((f: x: (x // (f x))) 421 - (qlOverrides."trivia_dot_quasiquote" or (x: {})) 422 - (import ./quicklisp-to-nix-output/trivia_dot_quasiquote.nix { 423 - inherit fetchurl; 424 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 425 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 426 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 427 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 428 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 429 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 430 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 431 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 432 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 433 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 434 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 435 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 436 - })); 437 - 438 - 439 - "fare-quasiquote-readtable" = buildLispPackage 440 - ((f: x: (x // (f x))) 441 - (qlOverrides."fare-quasiquote-readtable" or (x: {})) 442 - (import ./quicklisp-to-nix-output/fare-quasiquote-readtable.nix { 443 - inherit fetchurl; 444 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 445 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 446 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 447 - })); 448 - 449 - 450 - "fare-quasiquote-optima" = buildLispPackage 451 - ((f: x: (x // (f x))) 452 - (qlOverrides."fare-quasiquote-optima" or (x: {})) 453 - (import ./quicklisp-to-nix-output/fare-quasiquote-optima.nix { 454 - inherit fetchurl; 455 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 456 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 457 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 458 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 459 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 460 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 461 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 462 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 463 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 464 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 465 - "trivia_dot_quasiquote" = quicklisp-to-nix-packages."trivia_dot_quasiquote"; 466 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 467 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 468 - })); 469 - 470 - 471 - "fare-quasiquote-extras" = buildLispPackage 472 - ((f: x: (x // (f x))) 473 - (qlOverrides."fare-quasiquote-extras" or (x: {})) 474 - (import ./quicklisp-to-nix-output/fare-quasiquote-extras.nix { 475 - inherit fetchurl; 476 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 477 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 478 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 479 - "fare-quasiquote-optima" = quicklisp-to-nix-packages."fare-quasiquote-optima"; 480 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 481 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 482 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 483 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 484 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 485 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 486 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 487 - "trivia_dot_quasiquote" = quicklisp-to-nix-packages."trivia_dot_quasiquote"; 488 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 489 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 490 - })); 491 - 492 - 493 - "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank" = buildLispPackage 494 - ((f: x: (x // (f x))) 495 - (qlOverrides."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank" or (x: {})) 496 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank.nix { 497 - inherit fetchurl; 498 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 499 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 500 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 501 - "hu_dot_dwim_dot_def" = quicklisp-to-nix-packages."hu_dot_dwim_dot_def"; 502 - "hu_dot_dwim_dot_def_plus_swank" = quicklisp-to-nix-packages."hu_dot_dwim_dot_def_plus_swank"; 503 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 504 - "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def"; 505 - "hu_dot_dwim_dot_stefil_plus_swank" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil_plus_swank"; 506 - "iterate" = quicklisp-to-nix-packages."iterate"; 507 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 508 - "swank" = quicklisp-to-nix-packages."swank"; 509 - })); 510 - 511 - 512 - "hu_dot_dwim_dot_common" = buildLispPackage 513 - ((f: x: (x // (f x))) 514 - (qlOverrides."hu_dot_dwim_dot_common" or (x: {})) 515 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_common.nix { 516 - inherit fetchurl; 517 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 518 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 519 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 520 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 521 - "hu_dot_dwim_dot_common-lisp" = quicklisp-to-nix-packages."hu_dot_dwim_dot_common-lisp"; 522 - "iterate" = quicklisp-to-nix-packages."iterate"; 523 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 524 - })); 525 - 526 - 527 - "type-i" = buildLispPackage 528 - ((f: x: (x // (f x))) 529 - (qlOverrides."type-i" or (x: {})) 530 - (import ./quicklisp-to-nix-output/type-i.nix { 531 - inherit fetchurl; 532 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 533 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 534 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 535 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 536 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 537 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 538 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 539 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 540 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 541 - })); 542 - 543 - 544 - "trivial-cltl2" = buildLispPackage 545 - ((f: x: (x // (f x))) 546 - (qlOverrides."trivial-cltl2" or (x: {})) 547 - (import ./quicklisp-to-nix-output/trivial-cltl2.nix { 548 - inherit fetchurl; 549 - })); 550 - 551 - 552 - "trivia_dot_trivial" = buildLispPackage 553 - ((f: x: (x // (f x))) 554 - (qlOverrides."trivia_dot_trivial" or (x: {})) 555 - (import ./quicklisp-to-nix-output/trivia_dot_trivial.nix { 556 - inherit fetchurl; 557 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 558 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 559 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 560 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 561 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 562 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 563 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 564 - })); 565 - 566 - 567 - "trivia_dot_level2" = buildLispPackage 568 - ((f: x: (x // (f x))) 569 - (qlOverrides."trivia_dot_level2" or (x: {})) 570 - (import ./quicklisp-to-nix-output/trivia_dot_level2.nix { 571 - inherit fetchurl; 572 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 573 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 574 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 575 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 576 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 577 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 578 - })); 579 - 580 - 581 - "trivia_dot_level1" = buildLispPackage 582 - ((f: x: (x // (f x))) 583 - (qlOverrides."trivia_dot_level1" or (x: {})) 584 - (import ./quicklisp-to-nix-output/trivia_dot_level1.nix { 585 - inherit fetchurl; 586 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 587 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 588 - })); 589 - 590 - 591 - "trivia_dot_level0" = buildLispPackage 592 - ((f: x: (x // (f x))) 593 - (qlOverrides."trivia_dot_level0" or (x: {})) 594 - (import ./quicklisp-to-nix-output/trivia_dot_level0.nix { 595 - inherit fetchurl; 596 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 597 - })); 598 - 599 - 600 - "trivia_dot_balland2006" = buildLispPackage 601 - ((f: x: (x // (f x))) 602 - (qlOverrides."trivia_dot_balland2006" or (x: {})) 603 - (import ./quicklisp-to-nix-output/trivia_dot_balland2006.nix { 604 - inherit fetchurl; 605 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 606 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 607 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 608 - "iterate" = quicklisp-to-nix-packages."iterate"; 609 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 610 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 611 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 612 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 613 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 614 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 615 - "type-i" = quicklisp-to-nix-packages."type-i"; 616 - })); 617 - 618 - 619 - "static-dispatch" = buildLispPackage 620 - ((f: x: (x // (f x))) 621 - (qlOverrides."static-dispatch" or (x: {})) 622 - (import ./quicklisp-to-nix-output/static-dispatch.nix { 623 - inherit fetchurl; 624 - "agutil" = quicklisp-to-nix-packages."agutil"; 625 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 626 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 627 - "arrows" = quicklisp-to-nix-packages."arrows"; 628 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 629 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 630 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 631 - "collectors" = quicklisp-to-nix-packages."collectors"; 632 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 633 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 634 - "iterate" = quicklisp-to-nix-packages."iterate"; 635 - "optima" = quicklisp-to-nix-packages."optima"; 636 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 637 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 638 - })); 639 - 640 - 641 - "parse-declarations-1_dot_0" = buildLispPackage 642 - ((f: x: (x // (f x))) 643 - (qlOverrides."parse-declarations-1_dot_0" or (x: {})) 644 - (import ./quicklisp-to-nix-output/parse-declarations-1_dot_0.nix { 645 - inherit fetchurl; 646 - })); 647 - 648 - 649 - "introspect-environment" = buildLispPackage 650 - ((f: x: (x // (f x))) 651 - (qlOverrides."introspect-environment" or (x: {})) 652 - (import ./quicklisp-to-nix-output/introspect-environment.nix { 653 - inherit fetchurl; 654 - })); 655 - 656 - 657 - "generic-cl_dot_set" = buildLispPackage 658 - ((f: x: (x // (f x))) 659 - (qlOverrides."generic-cl_dot_set" or (x: {})) 660 - (import ./quicklisp-to-nix-output/generic-cl_dot_set.nix { 661 - inherit fetchurl; 662 - "agutil" = quicklisp-to-nix-packages."agutil"; 663 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 664 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 665 - "arrows" = quicklisp-to-nix-packages."arrows"; 666 - "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table"; 667 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 668 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 669 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 670 - "collectors" = quicklisp-to-nix-packages."collectors"; 671 - "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic"; 672 - "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector"; 673 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 674 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 675 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 676 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 677 - "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map"; 678 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 679 - "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence"; 680 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 681 - "iterate" = quicklisp-to-nix-packages."iterate"; 682 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 683 - "optima" = quicklisp-to-nix-packages."optima"; 684 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 685 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 686 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 687 - "trivia" = quicklisp-to-nix-packages."trivia"; 688 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 689 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 690 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 691 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 692 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 693 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 694 - "type-i" = quicklisp-to-nix-packages."type-i"; 695 - })); 696 - 697 - 698 - "generic-cl_dot_sequence" = buildLispPackage 699 - ((f: x: (x // (f x))) 700 - (qlOverrides."generic-cl_dot_sequence" or (x: {})) 701 - (import ./quicklisp-to-nix-output/generic-cl_dot_sequence.nix { 702 - inherit fetchurl; 703 - "agutil" = quicklisp-to-nix-packages."agutil"; 704 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 705 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 706 - "arrows" = quicklisp-to-nix-packages."arrows"; 707 - "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table"; 708 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 709 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 710 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 711 - "collectors" = quicklisp-to-nix-packages."collectors"; 712 - "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector"; 713 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 714 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 715 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 716 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 717 - "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map"; 718 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 719 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 720 - "iterate" = quicklisp-to-nix-packages."iterate"; 721 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 722 - "optima" = quicklisp-to-nix-packages."optima"; 723 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 724 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 725 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 726 - "trivia" = quicklisp-to-nix-packages."trivia"; 727 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 728 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 729 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 730 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 731 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 732 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 733 - "type-i" = quicklisp-to-nix-packages."type-i"; 734 - })); 735 - 736 - 737 - "generic-cl_dot_object" = buildLispPackage 738 - ((f: x: (x // (f x))) 739 - (qlOverrides."generic-cl_dot_object" or (x: {})) 740 - (import ./quicklisp-to-nix-output/generic-cl_dot_object.nix { 741 - inherit fetchurl; 742 - "agutil" = quicklisp-to-nix-packages."agutil"; 743 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 744 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 745 - "arrows" = quicklisp-to-nix-packages."arrows"; 746 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 747 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 748 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 749 - "collectors" = quicklisp-to-nix-packages."collectors"; 750 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 751 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 752 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 753 - "iterate" = quicklisp-to-nix-packages."iterate"; 754 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 755 - "optima" = quicklisp-to-nix-packages."optima"; 756 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 757 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 758 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 759 - "trivia" = quicklisp-to-nix-packages."trivia"; 760 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 761 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 762 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 763 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 764 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 765 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 766 - "type-i" = quicklisp-to-nix-packages."type-i"; 767 - })); 768 - 769 - 770 - "generic-cl_dot_math" = buildLispPackage 771 - ((f: x: (x // (f x))) 772 - (qlOverrides."generic-cl_dot_math" or (x: {})) 773 - (import ./quicklisp-to-nix-output/generic-cl_dot_math.nix { 774 - inherit fetchurl; 775 - "agutil" = quicklisp-to-nix-packages."agutil"; 776 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 777 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 778 - "arrows" = quicklisp-to-nix-packages."arrows"; 779 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 780 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 781 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 782 - "collectors" = quicklisp-to-nix-packages."collectors"; 783 - "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic"; 784 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 785 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 786 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 787 - "iterate" = quicklisp-to-nix-packages."iterate"; 788 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 789 - "optima" = quicklisp-to-nix-packages."optima"; 790 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 791 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 792 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 793 - "trivia" = quicklisp-to-nix-packages."trivia"; 794 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 795 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 796 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 797 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 798 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 799 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 800 - "type-i" = quicklisp-to-nix-packages."type-i"; 801 - })); 802 - 803 - 804 - "generic-cl_dot_map" = buildLispPackage 805 - ((f: x: (x // (f x))) 806 - (qlOverrides."generic-cl_dot_map" or (x: {})) 807 - (import ./quicklisp-to-nix-output/generic-cl_dot_map.nix { 808 - inherit fetchurl; 809 - "agutil" = quicklisp-to-nix-packages."agutil"; 810 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 811 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 812 - "arrows" = quicklisp-to-nix-packages."arrows"; 813 - "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table"; 814 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 815 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 816 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 817 - "collectors" = quicklisp-to-nix-packages."collectors"; 818 - "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector"; 819 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 820 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 821 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 822 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 823 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 824 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 825 - "iterate" = quicklisp-to-nix-packages."iterate"; 826 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 827 - "optima" = quicklisp-to-nix-packages."optima"; 828 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 829 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 830 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 831 - "trivia" = quicklisp-to-nix-packages."trivia"; 832 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 833 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 834 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 835 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 836 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 837 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 838 - "type-i" = quicklisp-to-nix-packages."type-i"; 839 - })); 840 - 841 - 842 - "generic-cl_dot_lazy-seq" = buildLispPackage 843 - ((f: x: (x // (f x))) 844 - (qlOverrides."generic-cl_dot_lazy-seq" or (x: {})) 845 - (import ./quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix { 846 - inherit fetchurl; 847 - "agutil" = quicklisp-to-nix-packages."agutil"; 848 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 849 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 850 - "arrows" = quicklisp-to-nix-packages."arrows"; 851 - "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table"; 852 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 853 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 854 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 855 - "collectors" = quicklisp-to-nix-packages."collectors"; 856 - "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector"; 857 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 858 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 859 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 860 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 861 - "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map"; 862 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 863 - "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence"; 864 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 865 - "iterate" = quicklisp-to-nix-packages."iterate"; 866 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 867 - "optima" = quicklisp-to-nix-packages."optima"; 868 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 869 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 870 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 871 - "trivia" = quicklisp-to-nix-packages."trivia"; 872 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 873 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 874 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 875 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 876 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 877 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 878 - "type-i" = quicklisp-to-nix-packages."type-i"; 879 - })); 880 - 881 - 882 - "generic-cl_dot_iterator" = buildLispPackage 883 - ((f: x: (x // (f x))) 884 - (qlOverrides."generic-cl_dot_iterator" or (x: {})) 885 - (import ./quicklisp-to-nix-output/generic-cl_dot_iterator.nix { 886 - inherit fetchurl; 887 - "agutil" = quicklisp-to-nix-packages."agutil"; 888 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 889 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 890 - "arrows" = quicklisp-to-nix-packages."arrows"; 891 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 892 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 893 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 894 - "collectors" = quicklisp-to-nix-packages."collectors"; 895 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 896 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 897 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 898 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 899 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 900 - "iterate" = quicklisp-to-nix-packages."iterate"; 901 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 902 - "optima" = quicklisp-to-nix-packages."optima"; 903 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 904 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 905 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 906 - "trivia" = quicklisp-to-nix-packages."trivia"; 907 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 908 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 909 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 910 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 911 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 912 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 913 - "type-i" = quicklisp-to-nix-packages."type-i"; 914 - })); 915 - 916 - 917 - "generic-cl_dot_internal" = buildLispPackage 918 - ((f: x: (x // (f x))) 919 - (qlOverrides."generic-cl_dot_internal" or (x: {})) 920 - (import ./quicklisp-to-nix-output/generic-cl_dot_internal.nix { 921 - inherit fetchurl; 922 - "agutil" = quicklisp-to-nix-packages."agutil"; 923 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 924 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 925 - "arrows" = quicklisp-to-nix-packages."arrows"; 926 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 927 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 928 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 929 - "collectors" = quicklisp-to-nix-packages."collectors"; 930 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 931 - "iterate" = quicklisp-to-nix-packages."iterate"; 932 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 933 - "optima" = quicklisp-to-nix-packages."optima"; 934 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 935 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 936 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 937 - "trivia" = quicklisp-to-nix-packages."trivia"; 938 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 939 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 940 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 941 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 942 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 943 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 944 - "type-i" = quicklisp-to-nix-packages."type-i"; 945 - })); 946 - 947 - 948 - "generic-cl_dot_container" = buildLispPackage 949 - ((f: x: (x // (f x))) 950 - (qlOverrides."generic-cl_dot_container" or (x: {})) 951 - (import ./quicklisp-to-nix-output/generic-cl_dot_container.nix { 952 - inherit fetchurl; 953 - "agutil" = quicklisp-to-nix-packages."agutil"; 954 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 955 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 956 - "arrows" = quicklisp-to-nix-packages."arrows"; 957 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 958 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 959 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 960 - "collectors" = quicklisp-to-nix-packages."collectors"; 961 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 962 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 963 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 964 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 965 - "iterate" = quicklisp-to-nix-packages."iterate"; 966 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 967 - "optima" = quicklisp-to-nix-packages."optima"; 968 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 969 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 970 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 971 - "trivia" = quicklisp-to-nix-packages."trivia"; 972 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 973 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 974 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 975 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 976 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 977 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 978 - "type-i" = quicklisp-to-nix-packages."type-i"; 979 - })); 980 - 981 - 982 - "generic-cl_dot_comparison" = buildLispPackage 983 - ((f: x: (x // (f x))) 984 - (qlOverrides."generic-cl_dot_comparison" or (x: {})) 985 - (import ./quicklisp-to-nix-output/generic-cl_dot_comparison.nix { 986 - inherit fetchurl; 987 - "agutil" = quicklisp-to-nix-packages."agutil"; 988 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 989 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 990 - "arrows" = quicklisp-to-nix-packages."arrows"; 991 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 992 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 993 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 994 - "collectors" = quicklisp-to-nix-packages."collectors"; 995 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 996 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 997 - "iterate" = quicklisp-to-nix-packages."iterate"; 998 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 999 - "optima" = quicklisp-to-nix-packages."optima"; 1000 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 1001 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 1002 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1003 - "trivia" = quicklisp-to-nix-packages."trivia"; 1004 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 1005 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 1006 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 1007 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 1008 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 1009 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 1010 - "type-i" = quicklisp-to-nix-packages."type-i"; 1011 - })); 1012 - 1013 - 1014 - "generic-cl_dot_collector" = buildLispPackage 1015 - ((f: x: (x // (f x))) 1016 - (qlOverrides."generic-cl_dot_collector" or (x: {})) 1017 - (import ./quicklisp-to-nix-output/generic-cl_dot_collector.nix { 1018 - inherit fetchurl; 1019 - "agutil" = quicklisp-to-nix-packages."agutil"; 1020 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1021 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 1022 - "arrows" = quicklisp-to-nix-packages."arrows"; 1023 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 1024 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 1025 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1026 - "collectors" = quicklisp-to-nix-packages."collectors"; 1027 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 1028 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 1029 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 1030 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 1031 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 1032 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 1033 - "iterate" = quicklisp-to-nix-packages."iterate"; 1034 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 1035 - "optima" = quicklisp-to-nix-packages."optima"; 1036 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 1037 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 1038 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1039 - "trivia" = quicklisp-to-nix-packages."trivia"; 1040 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 1041 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 1042 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 1043 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 1044 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 1045 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 1046 - "type-i" = quicklisp-to-nix-packages."type-i"; 1047 - })); 1048 - 1049 - 1050 - "generic-cl_dot_arithmetic" = buildLispPackage 1051 - ((f: x: (x // (f x))) 1052 - (qlOverrides."generic-cl_dot_arithmetic" or (x: {})) 1053 - (import ./quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix { 1054 - inherit fetchurl; 1055 - "agutil" = quicklisp-to-nix-packages."agutil"; 1056 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1057 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 1058 - "arrows" = quicklisp-to-nix-packages."arrows"; 1059 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 1060 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 1061 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1062 - "collectors" = quicklisp-to-nix-packages."collectors"; 1063 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 1064 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 1065 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 1066 - "iterate" = quicklisp-to-nix-packages."iterate"; 1067 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 1068 - "optima" = quicklisp-to-nix-packages."optima"; 1069 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 1070 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 1071 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1072 - "trivia" = quicklisp-to-nix-packages."trivia"; 1073 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 1074 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 1075 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 1076 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 1077 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 1078 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 1079 - "type-i" = quicklisp-to-nix-packages."type-i"; 1080 - })); 1081 - 1082 - 1083 - "cl-form-types" = buildLispPackage 1084 - ((f: x: (x // (f x))) 1085 - (qlOverrides."cl-form-types" or (x: {})) 1086 - (import ./quicklisp-to-nix-output/cl-form-types.nix { 1087 - inherit fetchurl; 1088 - "agutil" = quicklisp-to-nix-packages."agutil"; 1089 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1090 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 1091 - "arrows" = quicklisp-to-nix-packages."arrows"; 1092 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 1093 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1094 - "collectors" = quicklisp-to-nix-packages."collectors"; 1095 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 1096 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 1097 - "iterate" = quicklisp-to-nix-packages."iterate"; 1098 - "optima" = quicklisp-to-nix-packages."optima"; 1099 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 1100 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1101 - })); 1102 - 1103 - 1104 - "cl-environments" = buildLispPackage 1105 - ((f: x: (x // (f x))) 1106 - (qlOverrides."cl-environments" or (x: {})) 1107 - (import ./quicklisp-to-nix-output/cl-environments.nix { 1108 - inherit fetchurl; 1109 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1110 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 1111 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1112 - "collectors" = quicklisp-to-nix-packages."collectors"; 1113 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 1114 - "iterate" = quicklisp-to-nix-packages."iterate"; 1115 - "optima" = quicklisp-to-nix-packages."optima"; 1116 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 1117 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1118 - })); 1119 - 1120 - 1121 - "arrows" = buildLispPackage 1122 - ((f: x: (x // (f x))) 1123 - (qlOverrides."arrows" or (x: {})) 1124 - (import ./quicklisp-to-nix-output/arrows.nix { 1125 - inherit fetchurl; 1126 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 1127 - })); 1128 - 1129 - 1130 - "agutil" = buildLispPackage 1131 - ((f: x: (x // (f x))) 1132 - (qlOverrides."agutil" or (x: {})) 1133 - (import ./quicklisp-to-nix-output/agutil.nix { 1134 - inherit fetchurl; 1135 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1136 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1137 - "optima" = quicklisp-to-nix-packages."optima"; 1138 - })); 1139 - 1140 - 1141 - "net_dot_didierverna_dot_asdf-flv" = buildLispPackage 1142 - ((f: x: (x // (f x))) 1143 - (qlOverrides."net_dot_didierverna_dot_asdf-flv" or (x: {})) 1144 - (import ./quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix { 1145 - inherit fetchurl; 1146 - })); 1147 - 1148 - 1149 - "iolib_dot_conf" = buildLispPackage 1150 - ((f: x: (x // (f x))) 1151 - (qlOverrides."iolib_dot_conf" or (x: {})) 1152 - (import ./quicklisp-to-nix-output/iolib_dot_conf.nix { 1153 - inherit fetchurl; 1154 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1155 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 1156 - })); 1157 - 1158 - 1159 - "iolib_dot_common-lisp" = buildLispPackage 1160 - ((f: x: (x // (f x))) 1161 - (qlOverrides."iolib_dot_common-lisp" or (x: {})) 1162 - (import ./quicklisp-to-nix-output/iolib_dot_common-lisp.nix { 1163 - inherit fetchurl; 1164 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1165 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 1166 - "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf"; 1167 - })); 1168 - 1169 - 1170 - "iolib_dot_base" = buildLispPackage 1171 - ((f: x: (x // (f x))) 1172 - (qlOverrides."iolib_dot_base" or (x: {})) 1173 - (import ./quicklisp-to-nix-output/iolib_dot_base.nix { 1174 - inherit fetchurl; 1175 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1176 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 1177 - "iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp"; 1178 - "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf"; 1179 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1180 - })); 1181 - 1182 - 1183 - "iolib_dot_asdf" = buildLispPackage 1184 - ((f: x: (x // (f x))) 1185 - (qlOverrides."iolib_dot_asdf" or (x: {})) 1186 - (import ./quicklisp-to-nix-output/iolib_dot_asdf.nix { 1187 - inherit fetchurl; 1188 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1189 - })); 1190 - 1191 - 1192 - "cl-xmlspam" = buildLispPackage 1193 - ((f: x: (x // (f x))) 1194 - (qlOverrides."cl-xmlspam" or (x: {})) 1195 - (import ./quicklisp-to-nix-output/cl-xmlspam.nix { 1196 - inherit fetchurl; 1197 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1198 - "babel" = quicklisp-to-nix-packages."babel"; 1199 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1200 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 1201 - "cxml" = quicklisp-to-nix-packages."cxml"; 1202 - "puri" = quicklisp-to-nix-packages."puri"; 1203 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1204 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1205 - })); 1206 - 1207 - 1208 - "uax-15" = buildLispPackage 1209 - ((f: x: (x // (f x))) 1210 - (qlOverrides."uax-15" or (x: {})) 1211 - (import ./quicklisp-to-nix-output/uax-15.nix { 1212 - inherit fetchurl; 1213 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1214 - "parachute" = quicklisp-to-nix-packages."parachute"; 1215 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1216 - })); 1217 - 1218 - 1219 - "cl-postgres" = buildLispPackage 1220 - ((f: x: (x // (f x))) 1221 - (qlOverrides."cl-postgres" or (x: {})) 1222 - (import ./quicklisp-to-nix-output/cl-postgres.nix { 1223 - inherit fetchurl; 1224 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1225 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1226 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 1227 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1228 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 1229 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 1230 - "md5" = quicklisp-to-nix-packages."md5"; 1231 - "simple-date" = quicklisp-to-nix-packages."simple-date"; 1232 - "simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date_slash_postgres-glue"; 1233 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1234 - "uax-15" = quicklisp-to-nix-packages."uax-15"; 1235 - "uiop" = quicklisp-to-nix-packages."uiop"; 1236 - "usocket" = quicklisp-to-nix-packages."usocket"; 1237 - })); 1238 - 1239 - 1240 - "xpath_slash_test" = quicklisp-to-nix-packages."xpath"; 1241 - 1242 - 1243 - "cxml_slash_test" = quicklisp-to-nix-packages."cxml"; 1244 - 1245 - 1246 - "xpath" = buildLispPackage 1247 - ((f: x: (x // (f x))) 1248 - (qlOverrides."xpath" or (x: {})) 1249 - (import ./quicklisp-to-nix-output/xpath.nix { 1250 - inherit fetchurl; 1251 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1252 - "babel" = quicklisp-to-nix-packages."babel"; 1253 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1254 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 1255 - "cxml" = quicklisp-to-nix-packages."cxml"; 1256 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 1257 - "puri" = quicklisp-to-nix-packages."puri"; 1258 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1259 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1260 - "yacc" = quicklisp-to-nix-packages."yacc"; 1261 - })); 1262 - 1263 - 1264 - "yacc" = buildLispPackage 1265 - ((f: x: (x // (f x))) 1266 - (qlOverrides."yacc" or (x: {})) 1267 - (import ./quicklisp-to-nix-output/yacc.nix { 1268 - inherit fetchurl; 1269 - })); 1270 - 1271 - 1272 - "buildnode-xhtml" = buildLispPackage 1273 - ((f: x: (x // (f x))) 1274 - (qlOverrides."buildnode-xhtml" or (x: {})) 1275 - (import ./quicklisp-to-nix-output/buildnode-xhtml.nix { 1276 - inherit fetchurl; 1277 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1278 - "babel" = quicklisp-to-nix-packages."babel"; 1279 - "buildnode" = quicklisp-to-nix-packages."buildnode"; 1280 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 1281 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1282 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 1283 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1284 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 1285 - "closure-html" = quicklisp-to-nix-packages."closure-html"; 1286 - "collectors" = quicklisp-to-nix-packages."collectors"; 1287 - "cxml" = quicklisp-to-nix-packages."cxml"; 1288 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 1289 - "iterate" = quicklisp-to-nix-packages."iterate"; 1290 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 1291 - "puri" = quicklisp-to-nix-packages."puri"; 1292 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1293 - "swank" = quicklisp-to-nix-packages."swank"; 1294 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1295 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1296 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1297 - })); 1298 - 1299 - 1300 - "buildnode" = buildLispPackage 1301 - ((f: x: (x // (f x))) 1302 - (qlOverrides."buildnode" or (x: {})) 1303 - (import ./quicklisp-to-nix-output/buildnode.nix { 1304 - inherit fetchurl; 1305 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1306 - "babel" = quicklisp-to-nix-packages."babel"; 1307 - "buildnode-xhtml" = quicklisp-to-nix-packages."buildnode-xhtml"; 1308 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 1309 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1310 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 1311 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1312 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 1313 - "closure-html" = quicklisp-to-nix-packages."closure-html"; 1314 - "collectors" = quicklisp-to-nix-packages."collectors"; 1315 - "cxml" = quicklisp-to-nix-packages."cxml"; 1316 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 1317 - "iterate" = quicklisp-to-nix-packages."iterate"; 1318 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 1319 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 1320 - "puri" = quicklisp-to-nix-packages."puri"; 1321 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1322 - "swank" = quicklisp-to-nix-packages."swank"; 1323 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1324 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1325 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1326 - })); 1327 - 1328 - 1329 - "fiasco" = buildLispPackage 1330 - ((f: x: (x // (f x))) 1331 - (qlOverrides."fiasco" or (x: {})) 1332 - (import ./quicklisp-to-nix-output/fiasco.nix { 1333 - inherit fetchurl; 1334 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1335 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1336 - })); 1337 - 1338 - 1339 - "clump-binary-tree" = buildLispPackage 1340 - ((f: x: (x // (f x))) 1341 - (qlOverrides."clump-binary-tree" or (x: {})) 1342 - (import ./quicklisp-to-nix-output/clump-binary-tree.nix { 1343 - inherit fetchurl; 1344 - "acclimation" = quicklisp-to-nix-packages."acclimation"; 1345 - })); 1346 - 1347 - 1348 - "clump-2-3-tree" = buildLispPackage 1349 - ((f: x: (x // (f x))) 1350 - (qlOverrides."clump-2-3-tree" or (x: {})) 1351 - (import ./quicklisp-to-nix-output/clump-2-3-tree.nix { 1352 - inherit fetchurl; 1353 - "acclimation" = quicklisp-to-nix-packages."acclimation"; 1354 - })); 1355 - 1356 - 1357 - "clsql-uffi" = buildLispPackage 1358 - ((f: x: (x // (f x))) 1359 - (qlOverrides."clsql-uffi" or (x: {})) 1360 - (import ./quicklisp-to-nix-output/clsql-uffi.nix { 1361 - inherit fetchurl; 1362 - "clsql" = quicklisp-to-nix-packages."clsql"; 1363 - "uffi" = quicklisp-to-nix-packages."uffi"; 1364 - })); 1365 - 1366 - 1367 - "lack-util" = buildLispPackage 1368 - ((f: x: (x // (f x))) 1369 - (qlOverrides."lack-util" or (x: {})) 1370 - (import ./quicklisp-to-nix-output/lack-util.nix { 1371 - inherit fetchurl; 1372 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1373 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1374 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 1375 - })); 1376 - 1377 - 1378 - "lack-middleware-backtrace" = buildLispPackage 1379 - ((f: x: (x // (f x))) 1380 - (qlOverrides."lack-middleware-backtrace" or (x: {})) 1381 - (import ./quicklisp-to-nix-output/lack-middleware-backtrace.nix { 1382 - inherit fetchurl; 1383 - "uiop" = quicklisp-to-nix-packages."uiop"; 1384 - })); 1385 - 1386 - 1387 - "lack-component" = buildLispPackage 1388 - ((f: x: (x // (f x))) 1389 - (qlOverrides."lack-component" or (x: {})) 1390 - (import ./quicklisp-to-nix-output/lack-component.nix { 1391 - inherit fetchurl; 1392 - })); 1393 - 1394 - 1395 - "cl-aa" = buildLispPackage 1396 - ((f: x: (x // (f x))) 1397 - (qlOverrides."cl-aa" or (x: {})) 1398 - (import ./quicklisp-to-nix-output/cl-aa.nix { 1399 - inherit fetchurl; 1400 - })); 1401 - 1402 - 1403 - "global-vars" = buildLispPackage 1404 - ((f: x: (x // (f x))) 1405 - (qlOverrides."global-vars" or (x: {})) 1406 - (import ./quicklisp-to-nix-output/global-vars.nix { 1407 - inherit fetchurl; 1408 - })); 1409 - 1410 - 1411 - "cl-anonfun" = buildLispPackage 1412 - ((f: x: (x // (f x))) 1413 - (qlOverrides."cl-anonfun" or (x: {})) 1414 - (import ./quicklisp-to-nix-output/cl-anonfun.nix { 1415 - inherit fetchurl; 1416 - })); 1417 - 1418 - 1419 - "asdf-package-system" = buildLispPackage 1420 - ((f: x: (x // (f x))) 1421 - (qlOverrides."asdf-package-system" or (x: {})) 1422 - (import ./quicklisp-to-nix-output/asdf-package-system.nix { 1423 - inherit fetchurl; 1424 - })); 1425 - 1426 - 1427 - "clunit" = buildLispPackage 1428 - ((f: x: (x // (f x))) 1429 - (qlOverrides."clunit" or (x: {})) 1430 - (import ./quicklisp-to-nix-output/clunit.nix { 1431 - inherit fetchurl; 1432 - })); 1433 - 1434 - 1435 - "zpng" = buildLispPackage 1436 - ((f: x: (x // (f x))) 1437 - (qlOverrides."zpng" or (x: {})) 1438 - (import ./quicklisp-to-nix-output/zpng.nix { 1439 - inherit fetchurl; 1440 - "salza2" = quicklisp-to-nix-packages."salza2"; 1441 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1442 - })); 1443 - 1444 - 1445 - "asdf" = quicklisp-to-nix-packages."uiop"; 1446 - 1447 - 1448 - "usocket-server" = buildLispPackage 1449 - ((f: x: (x // (f x))) 1450 - (qlOverrides."usocket-server" or (x: {})) 1451 - (import ./quicklisp-to-nix-output/usocket-server.nix { 1452 - inherit fetchurl; 1453 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1454 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1455 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1456 - "usocket" = quicklisp-to-nix-packages."usocket"; 1457 - })); 1458 - 1459 - 1460 - "s-xml" = buildLispPackage 1461 - ((f: x: (x // (f x))) 1462 - (qlOverrides."s-xml" or (x: {})) 1463 - (import ./quicklisp-to-nix-output/s-xml.nix { 1464 - inherit fetchurl; 1465 - })); 1466 - 1467 - 1468 - "s-sysdeps" = buildLispPackage 1469 - ((f: x: (x // (f x))) 1470 - (qlOverrides."s-sysdeps" or (x: {})) 1471 - (import ./quicklisp-to-nix-output/s-sysdeps.nix { 1472 - inherit fetchurl; 1473 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1474 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1475 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1476 - "usocket" = quicklisp-to-nix-packages."usocket"; 1477 - "usocket-server" = quicklisp-to-nix-packages."usocket-server"; 1478 - })); 1479 - 1480 - 1481 - "cl-ppcre-test" = quicklisp-to-nix-packages."cl-ppcre"; 1482 - 1483 - 1484 - "zpb-ttf" = buildLispPackage 1485 - ((f: x: (x // (f x))) 1486 - (qlOverrides."zpb-ttf" or (x: {})) 1487 - (import ./quicklisp-to-nix-output/zpb-ttf.nix { 1488 - inherit fetchurl; 1489 - })); 1490 - 1491 - 1492 - "cl-paths" = buildLispPackage 1493 - ((f: x: (x // (f x))) 1494 - (qlOverrides."cl-paths" or (x: {})) 1495 - (import ./quicklisp-to-nix-output/cl-paths.nix { 1496 - inherit fetchurl; 1497 - })); 1498 - 1499 - 1500 - "hu_dot_dwim_dot_stefil" = buildLispPackage 1501 - ((f: x: (x // (f x))) 1502 - (qlOverrides."hu_dot_dwim_dot_stefil" or (x: {})) 1503 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_stefil.nix { 1504 - inherit fetchurl; 1505 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1506 - })); 1507 - 1508 - 1509 - "cl-l10n-cldr" = buildLispPackage 1510 - ((f: x: (x // (f x))) 1511 - (qlOverrides."cl-l10n-cldr" or (x: {})) 1512 - (import ./quicklisp-to-nix-output/cl-l10n-cldr.nix { 1513 - inherit fetchurl; 1514 - })); 1515 - 1516 - 1517 - "string-case" = buildLispPackage 1518 - ((f: x: (x // (f x))) 1519 - (qlOverrides."string-case" or (x: {})) 1520 - (import ./quicklisp-to-nix-output/string-case.nix { 1521 - inherit fetchurl; 1522 - })); 1523 - 1524 - 1525 - "cl-difflib" = buildLispPackage 1526 - ((f: x: (x // (f x))) 1527 - (qlOverrides."cl-difflib" or (x: {})) 1528 - (import ./quicklisp-to-nix-output/cl-difflib.nix { 1529 - inherit fetchurl; 1530 - })); 1531 - 1532 - 1533 - "pcall-queue" = buildLispPackage 1534 - ((f: x: (x // (f x))) 1535 - (qlOverrides."pcall-queue" or (x: {})) 1536 - (import ./quicklisp-to-nix-output/pcall-queue.nix { 1537 - inherit fetchurl; 1538 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1539 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1540 - })); 1541 - 1542 - 1543 - "unit-test" = buildLispPackage 1544 - ((f: x: (x // (f x))) 1545 - (qlOverrides."unit-test" or (x: {})) 1546 - (import ./quicklisp-to-nix-output/unit-test.nix { 1547 - inherit fetchurl; 1548 - })); 1549 - 1550 - 1551 - "dbi" = buildLispPackage 1552 - ((f: x: (x // (f x))) 1553 - (qlOverrides."dbi" or (x: {})) 1554 - (import ./quicklisp-to-nix-output/dbi.nix { 1555 - inherit fetchurl; 1556 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1557 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1558 - "cl-mysql" = quicklisp-to-nix-packages."cl-mysql"; 1559 - "cl-postgres" = quicklisp-to-nix-packages."cl-postgres"; 1560 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1561 - "dbd-mysql" = quicklisp-to-nix-packages."dbd-mysql"; 1562 - "dbd-postgres" = quicklisp-to-nix-packages."dbd-postgres"; 1563 - "dbd-sqlite3" = quicklisp-to-nix-packages."dbd-sqlite3"; 1564 - "dbi-test" = quicklisp-to-nix-packages."dbi-test"; 1565 - "rove" = quicklisp-to-nix-packages."rove"; 1566 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1567 - "sqlite" = quicklisp-to-nix-packages."sqlite"; 1568 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1569 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 1570 - })); 1571 - 1572 - 1573 - "cl-cffi-gtk-pango" = buildLispPackage 1574 - ((f: x: (x // (f x))) 1575 - (qlOverrides."cl-cffi-gtk-pango" or (x: {})) 1576 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-pango.nix { 1577 - inherit fetchurl; 1578 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1579 - "babel" = quicklisp-to-nix-packages."babel"; 1580 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1581 - "cffi" = quicklisp-to-nix-packages."cffi"; 1582 - "cl-cffi-gtk-cairo" = quicklisp-to-nix-packages."cl-cffi-gtk-cairo"; 1583 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1584 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 1585 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1586 - "iterate" = quicklisp-to-nix-packages."iterate"; 1587 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1588 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1589 - })); 1590 - 1591 - 1592 - "cl-cffi-gtk-gobject" = buildLispPackage 1593 - ((f: x: (x // (f x))) 1594 - (qlOverrides."cl-cffi-gtk-gobject" or (x: {})) 1595 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-gobject.nix { 1596 - inherit fetchurl; 1597 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1598 - "babel" = quicklisp-to-nix-packages."babel"; 1599 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1600 - "cffi" = quicklisp-to-nix-packages."cffi"; 1601 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1602 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1603 - "iterate" = quicklisp-to-nix-packages."iterate"; 1604 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1605 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1606 - })); 1607 - 1608 - 1609 - "cl-cffi-gtk-glib" = buildLispPackage 1610 - ((f: x: (x // (f x))) 1611 - (qlOverrides."cl-cffi-gtk-glib" or (x: {})) 1612 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-glib.nix { 1613 - inherit fetchurl; 1614 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1615 - "babel" = quicklisp-to-nix-packages."babel"; 1616 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1617 - "cffi" = quicklisp-to-nix-packages."cffi"; 1618 - "iterate" = quicklisp-to-nix-packages."iterate"; 1619 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1620 - })); 1621 - 1622 - 1623 - "cl-cffi-gtk-gio" = buildLispPackage 1624 - ((f: x: (x // (f x))) 1625 - (qlOverrides."cl-cffi-gtk-gio" or (x: {})) 1626 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-gio.nix { 1627 - inherit fetchurl; 1628 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1629 - "babel" = quicklisp-to-nix-packages."babel"; 1630 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1631 - "cffi" = quicklisp-to-nix-packages."cffi"; 1632 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1633 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 1634 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1635 - "iterate" = quicklisp-to-nix-packages."iterate"; 1636 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1637 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1638 - })); 1639 - 1640 - 1641 - "cl-cffi-gtk-gdk-pixbuf" = buildLispPackage 1642 - ((f: x: (x // (f x))) 1643 - (qlOverrides."cl-cffi-gtk-gdk-pixbuf" or (x: {})) 1644 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-gdk-pixbuf.nix { 1645 - inherit fetchurl; 1646 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1647 - "babel" = quicklisp-to-nix-packages."babel"; 1648 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1649 - "cffi" = quicklisp-to-nix-packages."cffi"; 1650 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1651 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 1652 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1653 - "iterate" = quicklisp-to-nix-packages."iterate"; 1654 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1655 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1656 - })); 1657 - 1658 - 1659 - "cl-cffi-gtk-gdk" = buildLispPackage 1660 - ((f: x: (x // (f x))) 1661 - (qlOverrides."cl-cffi-gtk-gdk" or (x: {})) 1662 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-gdk.nix { 1663 - inherit fetchurl; 1664 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1665 - "babel" = quicklisp-to-nix-packages."babel"; 1666 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1667 - "cffi" = quicklisp-to-nix-packages."cffi"; 1668 - "cl-cffi-gtk-cairo" = quicklisp-to-nix-packages."cl-cffi-gtk-cairo"; 1669 - "cl-cffi-gtk-gdk-pixbuf" = quicklisp-to-nix-packages."cl-cffi-gtk-gdk-pixbuf"; 1670 - "cl-cffi-gtk-gio" = quicklisp-to-nix-packages."cl-cffi-gtk-gio"; 1671 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1672 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 1673 - "cl-cffi-gtk-pango" = quicklisp-to-nix-packages."cl-cffi-gtk-pango"; 1674 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1675 - "iterate" = quicklisp-to-nix-packages."iterate"; 1676 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1677 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1678 - })); 1679 - 1680 - 1681 - "cl-cffi-gtk-cairo" = buildLispPackage 1682 - ((f: x: (x // (f x))) 1683 - (qlOverrides."cl-cffi-gtk-cairo" or (x: {})) 1684 - (import ./quicklisp-to-nix-output/cl-cffi-gtk-cairo.nix { 1685 - inherit fetchurl; 1686 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1687 - "babel" = quicklisp-to-nix-packages."babel"; 1688 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1689 - "cffi" = quicklisp-to-nix-packages."cffi"; 1690 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 1691 - "iterate" = quicklisp-to-nix-packages."iterate"; 1692 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1693 - })); 1694 - 1695 - 1696 - "ptester" = buildLispPackage 1697 - ((f: x: (x // (f x))) 1698 - (qlOverrides."ptester" or (x: {})) 1699 - (import ./quicklisp-to-nix-output/ptester.nix { 1700 - inherit fetchurl; 1701 - })); 1702 - 1703 - 1704 - "kmrcl" = buildLispPackage 1705 - ((f: x: (x // (f x))) 1706 - (qlOverrides."kmrcl" or (x: {})) 1707 - (import ./quicklisp-to-nix-output/kmrcl.nix { 1708 - inherit fetchurl; 1709 - "rt" = quicklisp-to-nix-packages."rt"; 1710 - })); 1711 - 1712 - 1713 - "cl-async-util" = quicklisp-to-nix-packages."cl-async"; 1714 - 1715 - 1716 - "cl-colors2" = buildLispPackage 1717 - ((f: x: (x // (f x))) 1718 - (qlOverrides."cl-colors2" or (x: {})) 1719 - (import ./quicklisp-to-nix-output/cl-colors2.nix { 1720 - inherit fetchurl; 1721 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1722 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1723 - "clunit2" = quicklisp-to-nix-packages."clunit2"; 1724 - })); 1725 - 1726 - 1727 - "stefil" = buildLispPackage 1728 - ((f: x: (x // (f x))) 1729 - (qlOverrides."stefil" or (x: {})) 1730 - (import ./quicklisp-to-nix-output/stefil.nix { 1731 - inherit fetchurl; 1732 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1733 - "iterate" = quicklisp-to-nix-packages."iterate"; 1734 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 1735 - "swank" = quicklisp-to-nix-packages."swank"; 1736 - })); 1737 - 1738 - 1739 - "cffi-toolchain" = buildLispPackage 1740 - ((f: x: (x // (f x))) 1741 - (qlOverrides."cffi-toolchain" or (x: {})) 1742 - (import ./quicklisp-to-nix-output/cffi-toolchain.nix { 1743 - inherit fetchurl; 1744 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1745 - "asdf" = quicklisp-to-nix-packages."asdf"; 1746 - "babel" = quicklisp-to-nix-packages."babel"; 1747 - "cffi" = quicklisp-to-nix-packages."cffi"; 1748 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1749 - })); 1750 - 1751 - 1752 - "jpl-util" = buildLispPackage 1753 - ((f: x: (x // (f x))) 1754 - (qlOverrides."jpl-util" or (x: {})) 1755 - (import ./quicklisp-to-nix-output/jpl-util.nix { 1756 - inherit fetchurl; 1757 - })); 1758 - 1759 - 1760 - "jpl-queues" = buildLispPackage 1761 - ((f: x: (x // (f x))) 1762 - (qlOverrides."jpl-queues" or (x: {})) 1763 - (import ./quicklisp-to-nix-output/jpl-queues.nix { 1764 - inherit fetchurl; 1765 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1766 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1767 - "jpl-util" = quicklisp-to-nix-packages."jpl-util"; 1768 - })); 1769 - 1770 - 1771 - "eager-future2" = buildLispPackage 1772 - ((f: x: (x // (f x))) 1773 - (qlOverrides."eager-future2" or (x: {})) 1774 - (import ./quicklisp-to-nix-output/eager-future2.nix { 1775 - inherit fetchurl; 1776 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1777 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1778 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 1779 - })); 1780 - 1781 - 1782 - "vom" = buildLispPackage 1783 - ((f: x: (x // (f x))) 1784 - (qlOverrides."vom" or (x: {})) 1785 - (import ./quicklisp-to-nix-output/vom.nix { 1786 - inherit fetchurl; 1787 - })); 1788 - 1789 - 1790 - "clunit2" = buildLispPackage 1791 - ((f: x: (x // (f x))) 1792 - (qlOverrides."clunit2" or (x: {})) 1793 - (import ./quicklisp-to-nix-output/clunit2.nix { 1794 - inherit fetchurl; 1795 - })); 1796 - 1797 - 1798 - "rt" = buildLispPackage 1799 - ((f: x: (x // (f x))) 1800 - (qlOverrides."rt" or (x: {})) 1801 - (import ./quicklisp-to-nix-output/rt.nix { 1802 - inherit fetchurl; 1803 - })); 1804 - 1805 - 1806 - "lisp-unit2" = buildLispPackage 1807 - ((f: x: (x // (f x))) 1808 - (qlOverrides."lisp-unit2" or (x: {})) 1809 - (import ./quicklisp-to-nix-output/lisp-unit2.nix { 1810 - inherit fetchurl; 1811 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1812 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 1813 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1814 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 1815 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 1816 - "iterate" = quicklisp-to-nix-packages."iterate"; 1817 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 1818 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 1819 - })); 1820 - 1821 - 1822 - "trivial-with-current-source-form" = buildLispPackage 1823 - ((f: x: (x // (f x))) 1824 - (qlOverrides."trivial-with-current-source-form" or (x: {})) 1825 - (import ./quicklisp-to-nix-output/trivial-with-current-source-form.nix { 1826 - inherit fetchurl; 1827 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1828 - })); 1829 - 1830 - 1831 - "yason" = buildLispPackage 1832 - ((f: x: (x // (f x))) 1833 - (qlOverrides."yason" or (x: {})) 1834 - (import ./quicklisp-to-nix-output/yason.nix { 1835 - inherit fetchurl; 1836 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1837 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1838 - })); 1839 - 1840 - 1841 - "xsubseq" = buildLispPackage 1842 - ((f: x: (x // (f x))) 1843 - (qlOverrides."xsubseq" or (x: {})) 1844 - (import ./quicklisp-to-nix-output/xsubseq.nix { 1845 - inherit fetchurl; 1846 - })); 1847 - 1848 - 1849 - "xmls" = buildLispPackage 1850 - ((f: x: (x // (f x))) 1851 - (qlOverrides."xmls" or (x: {})) 1852 - (import ./quicklisp-to-nix-output/xmls.nix { 1853 - inherit fetchurl; 1854 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 1855 - })); 1856 - 1857 - 1858 - "xml_dot_location" = buildLispPackage 1859 - ((f: x: (x // (f x))) 1860 - (qlOverrides."xml_dot_location" or (x: {})) 1861 - (import ./quicklisp-to-nix-output/xml_dot_location.nix { 1862 - inherit fetchurl; 1863 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1864 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 1865 - "babel" = quicklisp-to-nix-packages."babel"; 1866 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1867 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 1868 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 1869 - "cxml" = quicklisp-to-nix-packages."cxml"; 1870 - "cxml-stp" = quicklisp-to-nix-packages."cxml-stp"; 1871 - "iterate" = quicklisp-to-nix-packages."iterate"; 1872 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 1873 - "lift" = quicklisp-to-nix-packages."lift"; 1874 - "more-conditions" = quicklisp-to-nix-packages."more-conditions"; 1875 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 1876 - "puri" = quicklisp-to-nix-packages."puri"; 1877 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1878 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1879 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1880 - "xpath" = quicklisp-to-nix-packages."xpath"; 1881 - "yacc" = quicklisp-to-nix-packages."yacc"; 1882 - })); 1883 - 1884 - 1885 - "xkeyboard" = buildLispPackage 1886 - ((f: x: (x // (f x))) 1887 - (qlOverrides."xkeyboard" or (x: {})) 1888 - (import ./quicklisp-to-nix-output/xkeyboard.nix { 1889 - inherit fetchurl; 1890 - "clx" = quicklisp-to-nix-packages."clx"; 1891 - })); 1892 - 1893 - 1894 - "xembed" = buildLispPackage 1895 - ((f: x: (x // (f x))) 1896 - (qlOverrides."xembed" or (x: {})) 1897 - (import ./quicklisp-to-nix-output/xembed.nix { 1898 - inherit fetchurl; 1899 - "clx" = quicklisp-to-nix-packages."clx"; 1900 - })); 1901 - 1902 - 1903 - "wookie" = buildLispPackage 1904 - ((f: x: (x // (f x))) 1905 - (qlOverrides."wookie" or (x: {})) 1906 - (import ./quicklisp-to-nix-output/wookie.nix { 1907 - inherit fetchurl; 1908 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1909 - "babel" = quicklisp-to-nix-packages."babel"; 1910 - "blackbird" = quicklisp-to-nix-packages."blackbird"; 1911 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1912 - "cffi" = quicklisp-to-nix-packages."cffi"; 1913 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 1914 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 1915 - "chunga" = quicklisp-to-nix-packages."chunga"; 1916 - "cl-async" = quicklisp-to-nix-packages."cl-async"; 1917 - "cl-async-base" = quicklisp-to-nix-packages."cl-async-base"; 1918 - "cl-async-ssl" = quicklisp-to-nix-packages."cl-async-ssl"; 1919 - "cl-async-util" = quicklisp-to-nix-packages."cl-async-util"; 1920 - "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 1921 - "cl-libuv" = quicklisp-to-nix-packages."cl-libuv"; 1922 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1923 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 1924 - "do-urlencode" = quicklisp-to-nix-packages."do-urlencode"; 1925 - "fast-http" = quicklisp-to-nix-packages."fast-http"; 1926 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 1927 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 1928 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 1929 - "quri" = quicklisp-to-nix-packages."quri"; 1930 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 1931 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1932 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 1933 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1934 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1935 - "vom" = quicklisp-to-nix-packages."vom"; 1936 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 1937 - })); 1938 - 1939 - 1940 - "woo" = buildLispPackage 1941 - ((f: x: (x // (f x))) 1942 - (qlOverrides."woo" or (x: {})) 1943 - (import ./quicklisp-to-nix-output/woo.nix { 1944 - inherit fetchurl; 1945 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1946 - "babel" = quicklisp-to-nix-packages."babel"; 1947 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 1948 - "cffi" = quicklisp-to-nix-packages."cffi"; 1949 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 1950 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 1951 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 1952 - "clack-socket" = quicklisp-to-nix-packages."clack-socket"; 1953 - "fast-http" = quicklisp-to-nix-packages."fast-http"; 1954 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 1955 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 1956 - "lev" = quicklisp-to-nix-packages."lev"; 1957 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 1958 - "quri" = quicklisp-to-nix-packages."quri"; 1959 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 1960 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 1961 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 1962 - "swap-bytes" = quicklisp-to-nix-packages."swap-bytes"; 1963 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 1964 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1965 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 1966 - "vom" = quicklisp-to-nix-packages."vom"; 1967 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 1968 - })); 1969 - 1970 - 1971 - "vecto" = buildLispPackage 1972 - ((f: x: (x // (f x))) 1973 - (qlOverrides."vecto" or (x: {})) 1974 - (import ./quicklisp-to-nix-output/vecto.nix { 1975 - inherit fetchurl; 1976 - "cl-aa" = quicklisp-to-nix-packages."cl-aa"; 1977 - "cl-paths" = quicklisp-to-nix-packages."cl-paths"; 1978 - "cl-vectors" = quicklisp-to-nix-packages."cl-vectors"; 1979 - "salza2" = quicklisp-to-nix-packages."salza2"; 1980 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 1981 - "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf"; 1982 - "zpng" = quicklisp-to-nix-packages."zpng"; 1983 - })); 1984 - 1985 - 1986 - "varjo" = buildLispPackage 1987 - ((f: x: (x // (f x))) 1988 - (qlOverrides."varjo" or (x: {})) 1989 - (import ./quicklisp-to-nix-output/varjo.nix { 1990 - inherit fetchurl; 1991 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 1992 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1993 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 1994 - "fn" = quicklisp-to-nix-packages."fn"; 1995 - "glsl-docs" = quicklisp-to-nix-packages."glsl-docs"; 1996 - "glsl-spec" = quicklisp-to-nix-packages."glsl-spec"; 1997 - "glsl-symbols" = quicklisp-to-nix-packages."glsl-symbols"; 1998 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 1999 - "parse-float" = quicklisp-to-nix-packages."parse-float"; 2000 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 2001 - "uiop" = quicklisp-to-nix-packages."uiop"; 2002 - "vas-string-metrics" = quicklisp-to-nix-packages."vas-string-metrics"; 2003 - })); 2004 - 2005 - 2006 - "uuid" = buildLispPackage 2007 - ((f: x: (x // (f x))) 2008 - (qlOverrides."uuid" or (x: {})) 2009 - (import ./quicklisp-to-nix-output/uuid.nix { 2010 - inherit fetchurl; 2011 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2012 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2013 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 2014 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 2015 - })); 2016 - 2017 - 2018 - "utilities_dot_print-tree" = buildLispPackage 2019 - ((f: x: (x // (f x))) 2020 - (qlOverrides."utilities_dot_print-tree" or (x: {})) 2021 - (import ./quicklisp-to-nix-output/utilities_dot_print-tree.nix { 2022 - inherit fetchurl; 2023 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2024 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2025 - "uiop" = quicklisp-to-nix-packages."uiop"; 2026 - })); 2027 - 2028 - 2029 - "utilities_dot_print-items" = buildLispPackage 2030 - ((f: x: (x // (f x))) 2031 - (qlOverrides."utilities_dot_print-items" or (x: {})) 2032 - (import ./quicklisp-to-nix-output/utilities_dot_print-items.nix { 2033 - inherit fetchurl; 2034 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2035 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2036 - })); 2037 - 2038 - 2039 - "usocket" = buildLispPackage 2040 - ((f: x: (x // (f x))) 2041 - (qlOverrides."usocket" or (x: {})) 2042 - (import ./quicklisp-to-nix-output/usocket.nix { 2043 - inherit fetchurl; 2044 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2045 - })); 2046 - 2047 - 2048 - "unix-opts" = buildLispPackage 2049 - ((f: x: (x // (f x))) 2050 - (qlOverrides."unix-opts" or (x: {})) 2051 - (import ./quicklisp-to-nix-output/unix-opts.nix { 2052 - inherit fetchurl; 2053 - })); 2054 - 2055 - 2056 - "unix-options" = buildLispPackage 2057 - ((f: x: (x // (f x))) 2058 - (qlOverrides."unix-options" or (x: {})) 2059 - (import ./quicklisp-to-nix-output/unix-options.nix { 2060 - inherit fetchurl; 2061 - })); 2062 - 2063 - 2064 - "uiop" = buildLispPackage 2065 - ((f: x: (x // (f x))) 2066 - (qlOverrides."uiop" or (x: {})) 2067 - (import ./quicklisp-to-nix-output/uiop.nix { 2068 - inherit fetchurl; 2069 - })); 2070 - 2071 - 2072 - "uffi" = buildLispPackage 2073 - ((f: x: (x // (f x))) 2074 - (qlOverrides."uffi" or (x: {})) 2075 - (import ./quicklisp-to-nix-output/uffi.nix { 2076 - inherit fetchurl; 2077 - })); 2078 - 2079 - 2080 - "trivial-utf-8" = buildLispPackage 2081 - ((f: x: (x // (f x))) 2082 - (qlOverrides."trivial-utf-8" or (x: {})) 2083 - (import ./quicklisp-to-nix-output/trivial-utf-8.nix { 2084 - inherit fetchurl; 2085 - "mgl-pax" = quicklisp-to-nix-packages."mgl-pax"; 2086 - })); 2087 - 2088 - 2089 - "trivial-types" = buildLispPackage 2090 - ((f: x: (x // (f x))) 2091 - (qlOverrides."trivial-types" or (x: {})) 2092 - (import ./quicklisp-to-nix-output/trivial-types.nix { 2093 - inherit fetchurl; 2094 - })); 2095 - 2096 - 2097 - "trivial-shell" = buildLispPackage 2098 - ((f: x: (x // (f x))) 2099 - (qlOverrides."trivial-shell" or (x: {})) 2100 - (import ./quicklisp-to-nix-output/trivial-shell.nix { 2101 - inherit fetchurl; 2102 - })); 2103 - 2104 - 2105 - "trivial-package-local-nicknames" = buildLispPackage 2106 - ((f: x: (x // (f x))) 2107 - (qlOverrides."trivial-package-local-nicknames" or (x: {})) 2108 - (import ./quicklisp-to-nix-output/trivial-package-local-nicknames.nix { 2109 - inherit fetchurl; 2110 - })); 2111 - 2112 - 2113 - "trivial-mimes" = buildLispPackage 2114 - ((f: x: (x // (f x))) 2115 - (qlOverrides."trivial-mimes" or (x: {})) 2116 - (import ./quicklisp-to-nix-output/trivial-mimes.nix { 2117 - inherit fetchurl; 2118 - })); 2119 - 2120 - 2121 - "trivial-main-thread" = buildLispPackage 2122 - ((f: x: (x // (f x))) 2123 - (qlOverrides."trivial-main-thread" or (x: {})) 2124 - (import ./quicklisp-to-nix-output/trivial-main-thread.nix { 2125 - inherit fetchurl; 2126 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2127 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 2128 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2129 - "dissect" = quicklisp-to-nix-packages."dissect"; 2130 - "simple-tasks" = quicklisp-to-nix-packages."simple-tasks"; 2131 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2132 - })); 2133 - 2134 - 2135 - "trivial-indent" = buildLispPackage 2136 - ((f: x: (x // (f x))) 2137 - (qlOverrides."trivial-indent" or (x: {})) 2138 - (import ./quicklisp-to-nix-output/trivial-indent.nix { 2139 - inherit fetchurl; 2140 - })); 2141 - 2142 - 2143 - "trivial-gray-streams" = buildLispPackage 2144 - ((f: x: (x // (f x))) 2145 - (qlOverrides."trivial-gray-streams" or (x: {})) 2146 - (import ./quicklisp-to-nix-output/trivial-gray-streams.nix { 2147 - inherit fetchurl; 2148 - })); 2149 - 2150 - 2151 - "trivial-garbage" = buildLispPackage 2152 - ((f: x: (x // (f x))) 2153 - (qlOverrides."trivial-garbage" or (x: {})) 2154 - (import ./quicklisp-to-nix-output/trivial-garbage.nix { 2155 - inherit fetchurl; 2156 - "rt" = quicklisp-to-nix-packages."rt"; 2157 - })); 2158 - 2159 - 2160 - "trivial-features" = buildLispPackage 2161 - ((f: x: (x // (f x))) 2162 - (qlOverrides."trivial-features" or (x: {})) 2163 - (import ./quicklisp-to-nix-output/trivial-features.nix { 2164 - inherit fetchurl; 2165 - })); 2166 - 2167 - 2168 - "trivial-clipboard" = buildLispPackage 2169 - ((f: x: (x // (f x))) 2170 - (qlOverrides."trivial-clipboard" or (x: {})) 2171 - (import ./quicklisp-to-nix-output/trivial-clipboard.nix { 2172 - inherit fetchurl; 2173 - "uiop" = quicklisp-to-nix-packages."uiop"; 2174 - })); 2175 - 2176 - 2177 - "trivial-backtrace" = buildLispPackage 2178 - ((f: x: (x // (f x))) 2179 - (qlOverrides."trivial-backtrace" or (x: {})) 2180 - (import ./quicklisp-to-nix-output/trivial-backtrace.nix { 2181 - inherit fetchurl; 2182 - })); 2183 - 2184 - 2185 - "trivial-arguments" = buildLispPackage 2186 - ((f: x: (x // (f x))) 2187 - (qlOverrides."trivial-arguments" or (x: {})) 2188 - (import ./quicklisp-to-nix-output/trivial-arguments.nix { 2189 - inherit fetchurl; 2190 - })); 2191 - 2192 - 2193 - "trivia" = buildLispPackage 2194 - ((f: x: (x // (f x))) 2195 - (qlOverrides."trivia" or (x: {})) 2196 - (import ./quicklisp-to-nix-output/trivia.nix { 2197 - inherit fetchurl; 2198 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2199 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2200 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 2201 - "iterate" = quicklisp-to-nix-packages."iterate"; 2202 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 2203 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 2204 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 2205 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 2206 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 2207 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 2208 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 2209 - "type-i" = quicklisp-to-nix-packages."type-i"; 2210 - })); 2211 - 2212 - 2213 - "trees" = buildLispPackage 2214 - ((f: x: (x // (f x))) 2215 - (qlOverrides."trees" or (x: {})) 2216 - (import ./quicklisp-to-nix-output/trees.nix { 2217 - inherit fetchurl; 2218 - })); 2219 - 2220 - 2221 - "symbol-munger" = buildLispPackage 2222 - ((f: x: (x // (f x))) 2223 - (qlOverrides."symbol-munger" or (x: {})) 2224 - (import ./quicklisp-to-nix-output/symbol-munger.nix { 2225 - inherit fetchurl; 2226 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2227 - "iterate" = quicklisp-to-nix-packages."iterate"; 2228 - })); 2229 - 2230 - 2231 - "sycamore" = buildLispPackage 2232 - ((f: x: (x // (f x))) 2233 - (qlOverrides."sycamore" or (x: {})) 2234 - (import ./quicklisp-to-nix-output/sycamore.nix { 2235 - inherit fetchurl; 2236 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2237 - "cl-fuzz" = quicklisp-to-nix-packages."cl-fuzz"; 2238 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2239 - "lisp-unit" = quicklisp-to-nix-packages."lisp-unit"; 2240 - })); 2241 - 2242 - 2243 - "swap-bytes" = buildLispPackage 2244 - ((f: x: (x // (f x))) 2245 - (qlOverrides."swap-bytes" or (x: {})) 2246 - (import ./quicklisp-to-nix-output/swap-bytes.nix { 2247 - inherit fetchurl; 2248 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2249 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2250 - })); 2251 - 2252 - 2253 - "swank" = buildLispPackage 2254 - ((f: x: (x // (f x))) 2255 - (qlOverrides."swank" or (x: {})) 2256 - (import ./quicklisp-to-nix-output/swank.nix { 2257 - inherit fetchurl; 2258 - })); 2259 - 2260 - 2261 - "stumpwm" = buildLispPackage 2262 - ((f: x: (x // (f x))) 2263 - (qlOverrides."stumpwm" or (x: {})) 2264 - (import ./quicklisp-to-nix-output/stumpwm.nix { 2265 - inherit fetchurl; 2266 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2267 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2268 - "clx" = quicklisp-to-nix-packages."clx"; 2269 - })); 2270 - 2271 - 2272 - "str" = buildLispPackage 2273 - ((f: x: (x // (f x))) 2274 - (qlOverrides."str" or (x: {})) 2275 - (import ./quicklisp-to-nix-output/str.nix { 2276 - inherit fetchurl; 2277 - "cl-change-case" = quicklisp-to-nix-packages."cl-change-case"; 2278 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2279 - "cl-ppcre-unicode" = quicklisp-to-nix-packages."cl-ppcre-unicode"; 2280 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 2281 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2282 - })); 2283 - 2284 - 2285 - "static-vectors" = buildLispPackage 2286 - ((f: x: (x // (f x))) 2287 - (qlOverrides."static-vectors" or (x: {})) 2288 - (import ./quicklisp-to-nix-output/static-vectors.nix { 2289 - inherit fetchurl; 2290 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2291 - "babel" = quicklisp-to-nix-packages."babel"; 2292 - "cffi" = quicklisp-to-nix-packages."cffi"; 2293 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 2294 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 2295 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2296 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2297 - })); 2298 - 2299 - 2300 - "sqlite" = buildLispPackage 2301 - ((f: x: (x // (f x))) 2302 - (qlOverrides."sqlite" or (x: {})) 2303 - (import ./quicklisp-to-nix-output/sqlite.nix { 2304 - inherit fetchurl; 2305 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2306 - "babel" = quicklisp-to-nix-packages."babel"; 2307 - "cffi" = quicklisp-to-nix-packages."cffi"; 2308 - "iterate" = quicklisp-to-nix-packages."iterate"; 2309 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2310 - })); 2311 - 2312 - 2313 - "split-sequence" = buildLispPackage 2314 - ((f: x: (x // (f x))) 2315 - (qlOverrides."split-sequence" or (x: {})) 2316 - (import ./quicklisp-to-nix-output/split-sequence.nix { 2317 - inherit fetchurl; 2318 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2319 - })); 2320 - 2321 - 2322 - "spinneret" = buildLispPackage 2323 - ((f: x: (x // (f x))) 2324 - (qlOverrides."spinneret" or (x: {})) 2325 - (import ./quicklisp-to-nix-output/spinneret.nix { 2326 - inherit fetchurl; 2327 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2328 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 2329 - "babel" = quicklisp-to-nix-packages."babel"; 2330 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2331 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2332 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2333 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 2334 - "fare-quasiquote-extras" = quicklisp-to-nix-packages."fare-quasiquote-extras"; 2335 - "fare-quasiquote-optima" = quicklisp-to-nix-packages."fare-quasiquote-optima"; 2336 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 2337 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 2338 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 2339 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 2340 - "iterate" = quicklisp-to-nix-packages."iterate"; 2341 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 2342 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 2343 - "parenscript" = quicklisp-to-nix-packages."parenscript"; 2344 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 2345 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 2346 - "serapeum" = quicklisp-to-nix-packages."serapeum"; 2347 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2348 - "string-case" = quicklisp-to-nix-packages."string-case"; 2349 - "trivia" = quicklisp-to-nix-packages."trivia"; 2350 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 2351 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 2352 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 2353 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 2354 - "trivia_dot_quasiquote" = quicklisp-to-nix-packages."trivia_dot_quasiquote"; 2355 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 2356 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 2357 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2358 - "trivial-file-size" = quicklisp-to-nix-packages."trivial-file-size"; 2359 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 2360 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2361 - "trivial-macroexpand-all" = quicklisp-to-nix-packages."trivial-macroexpand-all"; 2362 - "type-i" = quicklisp-to-nix-packages."type-i"; 2363 - })); 2364 - 2365 - 2366 - "smug" = buildLispPackage 2367 - ((f: x: (x // (f x))) 2368 - (qlOverrides."smug" or (x: {})) 2369 - (import ./quicklisp-to-nix-output/smug.nix { 2370 - inherit fetchurl; 2371 - "asdf-package-system" = quicklisp-to-nix-packages."asdf-package-system"; 2372 - })); 2373 - 2374 - 2375 - "smart-buffer" = buildLispPackage 2376 - ((f: x: (x // (f x))) 2377 - (qlOverrides."smart-buffer" or (x: {})) 2378 - (import ./quicklisp-to-nix-output/smart-buffer.nix { 2379 - inherit fetchurl; 2380 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2381 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2382 - "uiop" = quicklisp-to-nix-packages."uiop"; 2383 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 2384 - })); 2385 - 2386 - 2387 - "slynk" = buildLispPackage 2388 - ((f: x: (x // (f x))) 2389 - (qlOverrides."slynk" or (x: {})) 2390 - (import ./quicklisp-to-nix-output/slynk.nix { 2391 - inherit fetchurl; 2392 - })); 2393 - 2394 - 2395 - "simple-date-time" = buildLispPackage 2396 - ((f: x: (x // (f x))) 2397 - (qlOverrides."simple-date-time" or (x: {})) 2398 - (import ./quicklisp-to-nix-output/simple-date-time.nix { 2399 - inherit fetchurl; 2400 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2401 - })); 2402 - 2403 - 2404 - "simple-date" = buildLispPackage 2405 - ((f: x: (x // (f x))) 2406 - (qlOverrides."simple-date" or (x: {})) 2407 - (import ./quicklisp-to-nix-output/simple-date.nix { 2408 - inherit fetchurl; 2409 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2410 - })); 2411 - 2412 - 2413 - "serapeum" = buildLispPackage 2414 - ((f: x: (x // (f x))) 2415 - (qlOverrides."serapeum" or (x: {})) 2416 - (import ./quicklisp-to-nix-output/serapeum.nix { 2417 - inherit fetchurl; 2418 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2419 - "babel" = quicklisp-to-nix-packages."babel"; 2420 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2421 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2422 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 2423 - "fare-quasiquote-extras" = quicklisp-to-nix-packages."fare-quasiquote-extras"; 2424 - "fare-quasiquote-optima" = quicklisp-to-nix-packages."fare-quasiquote-optima"; 2425 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 2426 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 2427 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 2428 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 2429 - "iterate" = quicklisp-to-nix-packages."iterate"; 2430 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 2431 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 2432 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 2433 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 2434 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2435 - "string-case" = quicklisp-to-nix-packages."string-case"; 2436 - "trivia" = quicklisp-to-nix-packages."trivia"; 2437 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 2438 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 2439 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 2440 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 2441 - "trivia_dot_quasiquote" = quicklisp-to-nix-packages."trivia_dot_quasiquote"; 2442 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 2443 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 2444 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2445 - "trivial-file-size" = quicklisp-to-nix-packages."trivial-file-size"; 2446 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 2447 - "trivial-macroexpand-all" = quicklisp-to-nix-packages."trivial-macroexpand-all"; 2448 - "type-i" = quicklisp-to-nix-packages."type-i"; 2449 - "uiop" = quicklisp-to-nix-packages."uiop"; 2450 - })); 2451 - 2452 - 2453 - "salza2" = buildLispPackage 2454 - ((f: x: (x // (f x))) 2455 - (qlOverrides."salza2" or (x: {})) 2456 - (import ./quicklisp-to-nix-output/salza2.nix { 2457 - inherit fetchurl; 2458 - "chipz" = quicklisp-to-nix-packages."chipz"; 2459 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2460 - "parachute" = quicklisp-to-nix-packages."parachute"; 2461 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2462 - })); 2463 - 2464 - 2465 - "rfc2388" = buildLispPackage 2466 - ((f: x: (x // (f x))) 2467 - (qlOverrides."rfc2388" or (x: {})) 2468 - (import ./quicklisp-to-nix-output/rfc2388.nix { 2469 - inherit fetchurl; 2470 - })); 2471 - 2472 - 2473 - "quri" = buildLispPackage 2474 - ((f: x: (x // (f x))) 2475 - (qlOverrides."quri" or (x: {})) 2476 - (import ./quicklisp-to-nix-output/quri.nix { 2477 - inherit fetchurl; 2478 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2479 - "babel" = quicklisp-to-nix-packages."babel"; 2480 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 2481 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2482 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2483 - })); 2484 - 2485 - 2486 - "query-fs" = buildLispPackage 2487 - ((f: x: (x // (f x))) 2488 - (qlOverrides."query-fs" or (x: {})) 2489 - (import ./quicklisp-to-nix-output/query-fs.nix { 2490 - inherit fetchurl; 2491 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2492 - "babel" = quicklisp-to-nix-packages."babel"; 2493 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2494 - "cffi" = quicklisp-to-nix-packages."cffi"; 2495 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 2496 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 2497 - "cl-fuse" = quicklisp-to-nix-packages."cl-fuse"; 2498 - "cl-fuse-meta-fs" = quicklisp-to-nix-packages."cl-fuse-meta-fs"; 2499 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2500 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 2501 - "command-line-arguments" = quicklisp-to-nix-packages."command-line-arguments"; 2502 - "iterate" = quicklisp-to-nix-packages."iterate"; 2503 - "pcall" = quicklisp-to-nix-packages."pcall"; 2504 - "pcall-queue" = quicklisp-to-nix-packages."pcall-queue"; 2505 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 2506 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2507 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 2508 - })); 2509 - 2510 - 2511 - "pythonic-string-reader" = buildLispPackage 2512 - ((f: x: (x // (f x))) 2513 - (qlOverrides."pythonic-string-reader" or (x: {})) 2514 - (import ./quicklisp-to-nix-output/pythonic-string-reader.nix { 2515 - inherit fetchurl; 2516 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 2517 - })); 2518 - 2519 - 2520 - "puri" = buildLispPackage 2521 - ((f: x: (x // (f x))) 2522 - (qlOverrides."puri" or (x: {})) 2523 - (import ./quicklisp-to-nix-output/puri.nix { 2524 - inherit fetchurl; 2525 - "ptester" = quicklisp-to-nix-packages."ptester"; 2526 - })); 2527 - 2528 - 2529 - "prove-asdf" = buildLispPackage 2530 - ((f: x: (x // (f x))) 2531 - (qlOverrides."prove-asdf" or (x: {})) 2532 - (import ./quicklisp-to-nix-output/prove-asdf.nix { 2533 - inherit fetchurl; 2534 - })); 2535 - 2536 - 2537 - "prove" = buildLispPackage 2538 - ((f: x: (x // (f x))) 2539 - (qlOverrides."prove" or (x: {})) 2540 - (import ./quicklisp-to-nix-output/prove.nix { 2541 - inherit fetchurl; 2542 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2543 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 2544 - "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text"; 2545 - "cl-colors" = quicklisp-to-nix-packages."cl-colors"; 2546 - "cl-colors2" = quicklisp-to-nix-packages."cl-colors2"; 2547 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2548 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 2549 - "uiop" = quicklisp-to-nix-packages."uiop"; 2550 - })); 2551 - 2552 - 2553 - "proc-parse" = buildLispPackage 2554 - ((f: x: (x // (f x))) 2555 - (qlOverrides."proc-parse" or (x: {})) 2556 - (import ./quicklisp-to-nix-output/proc-parse.nix { 2557 - inherit fetchurl; 2558 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2559 - "babel" = quicklisp-to-nix-packages."babel"; 2560 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2561 - })); 2562 - 2563 - 2564 - "postmodern" = buildLispPackage 2565 - ((f: x: (x // (f x))) 2566 - (qlOverrides."postmodern" or (x: {})) 2567 - (import ./quicklisp-to-nix-output/postmodern.nix { 2568 - inherit fetchurl; 2569 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2570 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2571 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 2572 - "cl-postgres" = quicklisp-to-nix-packages."cl-postgres"; 2573 - "cl-postgres_plus_local-time" = quicklisp-to-nix-packages."cl-postgres_plus_local-time"; 2574 - "cl-postgres_slash_tests" = quicklisp-to-nix-packages."cl-postgres_slash_tests"; 2575 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2576 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2577 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2578 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 2579 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 2580 - "local-time" = quicklisp-to-nix-packages."local-time"; 2581 - "md5" = quicklisp-to-nix-packages."md5"; 2582 - "s-sql" = quicklisp-to-nix-packages."s-sql"; 2583 - "s-sql_slash_tests" = quicklisp-to-nix-packages."s-sql_slash_tests"; 2584 - "simple-date" = quicklisp-to-nix-packages."simple-date"; 2585 - "simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date_slash_postgres-glue"; 2586 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2587 - "uax-15" = quicklisp-to-nix-packages."uax-15"; 2588 - "uiop" = quicklisp-to-nix-packages."uiop"; 2589 - "usocket" = quicklisp-to-nix-packages."usocket"; 2590 - })); 2591 - 2592 - 2593 - "plump" = buildLispPackage 2594 - ((f: x: (x // (f x))) 2595 - (qlOverrides."plump" or (x: {})) 2596 - (import ./quicklisp-to-nix-output/plump.nix { 2597 - inherit fetchurl; 2598 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 2599 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 2600 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 2601 - })); 2602 - 2603 - 2604 - "physical-quantities" = buildLispPackage 2605 - ((f: x: (x // (f x))) 2606 - (qlOverrides."physical-quantities" or (x: {})) 2607 - (import ./quicklisp-to-nix-output/physical-quantities.nix { 2608 - inherit fetchurl; 2609 - "parseq" = quicklisp-to-nix-packages."parseq"; 2610 - })); 2611 - 2612 - 2613 - "pcall" = buildLispPackage 2614 - ((f: x: (x // (f x))) 2615 - (qlOverrides."pcall" or (x: {})) 2616 - (import ./quicklisp-to-nix-output/pcall.nix { 2617 - inherit fetchurl; 2618 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2619 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2620 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2621 - "pcall-queue" = quicklisp-to-nix-packages."pcall-queue"; 2622 - })); 2623 - 2624 - 2625 - "parser_dot_common-rules" = buildLispPackage 2626 - ((f: x: (x // (f x))) 2627 - (qlOverrides."parser_dot_common-rules" or (x: {})) 2628 - (import ./quicklisp-to-nix-output/parser_dot_common-rules.nix { 2629 - inherit fetchurl; 2630 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2631 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 2632 - "esrap" = quicklisp-to-nix-packages."esrap"; 2633 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2634 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 2635 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2636 - "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form"; 2637 - })); 2638 - 2639 - 2640 - "parser-combinators" = buildLispPackage 2641 - ((f: x: (x // (f x))) 2642 - (qlOverrides."parser-combinators" or (x: {})) 2643 - (import ./quicklisp-to-nix-output/parser-combinators.nix { 2644 - inherit fetchurl; 2645 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2646 - "iterate" = quicklisp-to-nix-packages."iterate"; 2647 - })); 2648 - 2649 - 2650 - "parse-number" = buildLispPackage 2651 - ((f: x: (x // (f x))) 2652 - (qlOverrides."parse-number" or (x: {})) 2653 - (import ./quicklisp-to-nix-output/parse-number.nix { 2654 - inherit fetchurl; 2655 - })); 2656 - 2657 - 2658 - "parenscript" = buildLispPackage 2659 - ((f: x: (x // (f x))) 2660 - (qlOverrides."parenscript" or (x: {})) 2661 - (import ./quicklisp-to-nix-output/parenscript.nix { 2662 - inherit fetchurl; 2663 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 2664 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 2665 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 2666 - })); 2667 - 2668 - 2669 - "parachute" = buildLispPackage 2670 - ((f: x: (x // (f x))) 2671 - (qlOverrides."parachute" or (x: {})) 2672 - (import ./quicklisp-to-nix-output/parachute.nix { 2673 - inherit fetchurl; 2674 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 2675 - "form-fiddle" = quicklisp-to-nix-packages."form-fiddle"; 2676 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 2677 - })); 2678 - 2679 - 2680 - "osicat" = buildLispPackage 2681 - ((f: x: (x // (f x))) 2682 - (qlOverrides."osicat" or (x: {})) 2683 - (import ./quicklisp-to-nix-output/osicat.nix { 2684 - inherit fetchurl; 2685 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2686 - "babel" = quicklisp-to-nix-packages."babel"; 2687 - "cffi" = quicklisp-to-nix-packages."cffi"; 2688 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 2689 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 2690 - "rt" = quicklisp-to-nix-packages."rt"; 2691 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2692 - })); 2693 - 2694 - 2695 - "optima" = buildLispPackage 2696 - ((f: x: (x // (f x))) 2697 - (qlOverrides."optima" or (x: {})) 2698 - (import ./quicklisp-to-nix-output/optima.nix { 2699 - inherit fetchurl; 2700 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2701 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2702 - })); 2703 - 2704 - 2705 - "nibbles" = buildLispPackage 2706 - ((f: x: (x // (f x))) 2707 - (qlOverrides."nibbles" or (x: {})) 2708 - (import ./quicklisp-to-nix-output/nibbles.nix { 2709 - inherit fetchurl; 2710 - "rt" = quicklisp-to-nix-packages."rt"; 2711 - })); 2712 - 2713 - 2714 - "net-telent-date" = buildLispPackage 2715 - ((f: x: (x // (f x))) 2716 - (qlOverrides."net-telent-date" or (x: {})) 2717 - (import ./quicklisp-to-nix-output/net-telent-date.nix { 2718 - inherit fetchurl; 2719 - })); 2720 - 2721 - 2722 - "nbd" = buildLispPackage 2723 - ((f: x: (x // (f x))) 2724 - (qlOverrides."nbd" or (x: {})) 2725 - (import ./quicklisp-to-nix-output/nbd.nix { 2726 - inherit fetchurl; 2727 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2728 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2729 - "lisp-binary" = quicklisp-to-nix-packages."lisp-binary"; 2730 - "wild-package-inferred-system" = quicklisp-to-nix-packages."wild-package-inferred-system"; 2731 - })); 2732 - 2733 - 2734 - "named-readtables" = buildLispPackage 2735 - ((f: x: (x // (f x))) 2736 - (qlOverrides."named-readtables" or (x: {})) 2737 - (import ./quicklisp-to-nix-output/named-readtables.nix { 2738 - inherit fetchurl; 2739 - })); 2740 - 2741 - 2742 - "mt19937" = buildLispPackage 2743 - ((f: x: (x // (f x))) 2744 - (qlOverrides."mt19937" or (x: {})) 2745 - (import ./quicklisp-to-nix-output/mt19937.nix { 2746 - inherit fetchurl; 2747 - })); 2748 - 2749 - 2750 - "more-conditions" = buildLispPackage 2751 - ((f: x: (x // (f x))) 2752 - (qlOverrides."more-conditions" or (x: {})) 2753 - (import ./quicklisp-to-nix-output/more-conditions.nix { 2754 - inherit fetchurl; 2755 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2756 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2757 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 2758 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 2759 - })); 2760 - 2761 - 2762 - "moptilities" = buildLispPackage 2763 - ((f: x: (x // (f x))) 2764 - (qlOverrides."moptilities" or (x: {})) 2765 - (import ./quicklisp-to-nix-output/moptilities.nix { 2766 - inherit fetchurl; 2767 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2768 - })); 2769 - 2770 - 2771 - "mmap" = buildLispPackage 2772 - ((f: x: (x // (f x))) 2773 - (qlOverrides."mmap" or (x: {})) 2774 - (import ./quicklisp-to-nix-output/mmap.nix { 2775 - inherit fetchurl; 2776 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2777 - "babel" = quicklisp-to-nix-packages."babel"; 2778 - "cffi" = quicklisp-to-nix-packages."cffi"; 2779 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 2780 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2781 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 2782 - })); 2783 - 2784 - 2785 - "mk-string-metrics" = buildLispPackage 2786 - ((f: x: (x // (f x))) 2787 - (qlOverrides."mk-string-metrics" or (x: {})) 2788 - (import ./quicklisp-to-nix-output/mk-string-metrics.nix { 2789 - inherit fetchurl; 2790 - })); 2791 - 2792 - 2793 - "misc-extensions" = buildLispPackage 2794 - ((f: x: (x // (f x))) 2795 - (qlOverrides."misc-extensions" or (x: {})) 2796 - (import ./quicklisp-to-nix-output/misc-extensions.nix { 2797 - inherit fetchurl; 2798 - })); 2799 - 2800 - 2801 - "minheap" = buildLispPackage 2802 - ((f: x: (x // (f x))) 2803 - (qlOverrides."minheap" or (x: {})) 2804 - (import ./quicklisp-to-nix-output/minheap.nix { 2805 - inherit fetchurl; 2806 - })); 2807 - 2808 - 2809 - "mgl-pax" = buildLispPackage 2810 - ((f: x: (x // (f x))) 2811 - (qlOverrides."mgl-pax" or (x: {})) 2812 - (import ./quicklisp-to-nix-output/mgl-pax.nix { 2813 - inherit fetchurl; 2814 - "_3bmd" = quicklisp-to-nix-packages."_3bmd"; 2815 - "_3bmd-ext-code-blocks" = quicklisp-to-nix-packages."_3bmd-ext-code-blocks"; 2816 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2817 - "colorize" = quicklisp-to-nix-packages."colorize"; 2818 - "md5" = quicklisp-to-nix-packages."md5"; 2819 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 2820 - "pythonic-string-reader" = quicklisp-to-nix-packages."pythonic-string-reader"; 2821 - "swank" = quicklisp-to-nix-packages."swank"; 2822 - })); 2823 - 2824 - 2825 - "metatilities-base" = buildLispPackage 2826 - ((f: x: (x // (f x))) 2827 - (qlOverrides."metatilities-base" or (x: {})) 2828 - (import ./quicklisp-to-nix-output/metatilities-base.nix { 2829 - inherit fetchurl; 2830 - })); 2831 - 2832 - 2833 - "metabang-bind" = buildLispPackage 2834 - ((f: x: (x // (f x))) 2835 - (qlOverrides."metabang-bind" or (x: {})) 2836 - (import ./quicklisp-to-nix-output/metabang-bind.nix { 2837 - inherit fetchurl; 2838 - })); 2839 - 2840 - 2841 - "md5" = buildLispPackage 2842 - ((f: x: (x // (f x))) 2843 - (qlOverrides."md5" or (x: {})) 2844 - (import ./quicklisp-to-nix-output/md5.nix { 2845 - inherit fetchurl; 2846 - })); 2847 - 2848 - 2849 - "marshal" = buildLispPackage 2850 - ((f: x: (x // (f x))) 2851 - (qlOverrides."marshal" or (x: {})) 2852 - (import ./quicklisp-to-nix-output/marshal.nix { 2853 - inherit fetchurl; 2854 - })); 2855 - 2856 - 2857 - "lquery" = buildLispPackage 2858 - ((f: x: (x // (f x))) 2859 - (qlOverrides."lquery" or (x: {})) 2860 - (import ./quicklisp-to-nix-output/lquery.nix { 2861 - inherit fetchurl; 2862 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 2863 - "clss" = quicklisp-to-nix-packages."clss"; 2864 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 2865 - "form-fiddle" = quicklisp-to-nix-packages."form-fiddle"; 2866 - "plump" = quicklisp-to-nix-packages."plump"; 2867 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 2868 - })); 2869 - 2870 - 2871 - "lparallel" = buildLispPackage 2872 - ((f: x: (x // (f x))) 2873 - (qlOverrides."lparallel" or (x: {})) 2874 - (import ./quicklisp-to-nix-output/lparallel.nix { 2875 - inherit fetchurl; 2876 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2877 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2878 - })); 2879 - 2880 - 2881 - "log4cl" = buildLispPackage 2882 - ((f: x: (x // (f x))) 2883 - (qlOverrides."log4cl" or (x: {})) 2884 - (import ./quicklisp-to-nix-output/log4cl.nix { 2885 - inherit fetchurl; 2886 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2887 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2888 - "stefil" = quicklisp-to-nix-packages."stefil"; 2889 - })); 2890 - 2891 - 2892 - "local-time" = buildLispPackage 2893 - ((f: x: (x // (f x))) 2894 - (qlOverrides."local-time" or (x: {})) 2895 - (import ./quicklisp-to-nix-output/local-time.nix { 2896 - inherit fetchurl; 2897 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 2898 - "uiop" = quicklisp-to-nix-packages."uiop"; 2899 - })); 2900 - 2901 - 2902 - "lla" = buildLispPackage 2903 - ((f: x: (x // (f x))) 2904 - (qlOverrides."lla" or (x: {})) 2905 - (import ./quicklisp-to-nix-output/lla.nix { 2906 - inherit fetchurl; 2907 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2908 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 2909 - "array-operations" = quicklisp-to-nix-packages."array-operations"; 2910 - "babel" = quicklisp-to-nix-packages."babel"; 2911 - "cffi" = quicklisp-to-nix-packages."cffi"; 2912 - "cl-num-utils" = quicklisp-to-nix-packages."cl-num-utils"; 2913 - "cl-slice" = quicklisp-to-nix-packages."cl-slice"; 2914 - "clunit" = quicklisp-to-nix-packages."clunit"; 2915 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 2916 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2917 - })); 2918 - 2919 - 2920 - "lisp-namespace" = buildLispPackage 2921 - ((f: x: (x // (f x))) 2922 - (qlOverrides."lisp-namespace" or (x: {})) 2923 - (import ./quicklisp-to-nix-output/lisp-namespace.nix { 2924 - inherit fetchurl; 2925 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2926 - })); 2927 - 2928 - 2929 - "lisp-binary" = buildLispPackage 2930 - ((f: x: (x // (f x))) 2931 - (qlOverrides."lisp-binary" or (x: {})) 2932 - (import ./quicklisp-to-nix-output/lisp-binary.nix { 2933 - inherit fetchurl; 2934 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2935 - "babel" = quicklisp-to-nix-packages."babel"; 2936 - "cffi" = quicklisp-to-nix-packages."cffi"; 2937 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 2938 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2939 - "iterate" = quicklisp-to-nix-packages."iterate"; 2940 - "moptilities" = quicklisp-to-nix-packages."moptilities"; 2941 - "quasiquote-2_dot_0" = quicklisp-to-nix-packages."quasiquote-2_dot_0"; 2942 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2943 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2944 - })); 2945 - 2946 - 2947 - "lift" = buildLispPackage 2948 - ((f: x: (x // (f x))) 2949 - (qlOverrides."lift" or (x: {})) 2950 - (import ./quicklisp-to-nix-output/lift.nix { 2951 - inherit fetchurl; 2952 - })); 2953 - 2954 - 2955 - "lfarm-ssl" = buildLispPackage 2956 - ((f: x: (x // (f x))) 2957 - (qlOverrides."lfarm-ssl" or (x: {})) 2958 - (import ./quicklisp-to-nix-output/lfarm-ssl.nix { 2959 - inherit fetchurl; 2960 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2961 - "babel" = quicklisp-to-nix-packages."babel"; 2962 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2963 - "cffi" = quicklisp-to-nix-packages."cffi"; 2964 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 2965 - "cl-store" = quicklisp-to-nix-packages."cl-store"; 2966 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2967 - "lfarm-common" = quicklisp-to-nix-packages."lfarm-common"; 2968 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2969 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 2970 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 2971 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2972 - "usocket" = quicklisp-to-nix-packages."usocket"; 2973 - })); 2974 - 2975 - 2976 - "lfarm-server" = buildLispPackage 2977 - ((f: x: (x // (f x))) 2978 - (qlOverrides."lfarm-server" or (x: {})) 2979 - (import ./quicklisp-to-nix-output/lfarm-server.nix { 2980 - inherit fetchurl; 2981 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2982 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2983 - "cl-store" = quicklisp-to-nix-packages."cl-store"; 2984 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 2985 - "lfarm-common" = quicklisp-to-nix-packages."lfarm-common"; 2986 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 2987 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 2988 - "usocket" = quicklisp-to-nix-packages."usocket"; 2989 - })); 2990 - 2991 - 2992 - "lfarm-client" = buildLispPackage 2993 - ((f: x: (x // (f x))) 2994 - (qlOverrides."lfarm-client" or (x: {})) 2995 - (import ./quicklisp-to-nix-output/lfarm-client.nix { 2996 - inherit fetchurl; 2997 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 2998 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 2999 - "cl-store" = quicklisp-to-nix-packages."cl-store"; 3000 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3001 - "lfarm-common" = quicklisp-to-nix-packages."lfarm-common"; 3002 - "lparallel" = quicklisp-to-nix-packages."lparallel"; 3003 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3004 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3005 - "usocket" = quicklisp-to-nix-packages."usocket"; 3006 - })); 3007 - 3008 - 3009 - "lev" = buildLispPackage 3010 - ((f: x: (x // (f x))) 3011 - (qlOverrides."lev" or (x: {})) 3012 - (import ./quicklisp-to-nix-output/lev.nix { 3013 - inherit fetchurl; 3014 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3015 - "babel" = quicklisp-to-nix-packages."babel"; 3016 - "cffi" = quicklisp-to-nix-packages."cffi"; 3017 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3018 - })); 3019 - 3020 - 3021 - "let-plus" = buildLispPackage 3022 - ((f: x: (x // (f x))) 3023 - (qlOverrides."let-plus" or (x: {})) 3024 - (import ./quicklisp-to-nix-output/let-plus.nix { 3025 - inherit fetchurl; 3026 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3027 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 3028 - "lift" = quicklisp-to-nix-packages."lift"; 3029 - })); 3030 - 3031 - 3032 - "legit" = buildLispPackage 3033 - ((f: x: (x // (f x))) 3034 - (qlOverrides."legit" or (x: {})) 3035 - (import ./quicklisp-to-nix-output/legit.nix { 3036 - inherit fetchurl; 3037 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3038 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3039 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3040 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3041 - "lambda-fiddle" = quicklisp-to-nix-packages."lambda-fiddle"; 3042 - "simple-inferiors" = quicklisp-to-nix-packages."simple-inferiors"; 3043 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3044 - "uiop" = quicklisp-to-nix-packages."uiop"; 3045 - })); 3046 - 3047 - 3048 - "lack" = buildLispPackage 3049 - ((f: x: (x // (f x))) 3050 - (qlOverrides."lack" or (x: {})) 3051 - (import ./quicklisp-to-nix-output/lack.nix { 3052 - inherit fetchurl; 3053 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3054 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3055 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 3056 - "lack-component" = quicklisp-to-nix-packages."lack-component"; 3057 - "lack-util" = quicklisp-to-nix-packages."lack-util"; 3058 - })); 3059 - 3060 - 3061 - "jsown" = buildLispPackage 3062 - ((f: x: (x // (f x))) 3063 - (qlOverrides."jsown" or (x: {})) 3064 - (import ./quicklisp-to-nix-output/jsown.nix { 3065 - inherit fetchurl; 3066 - })); 3067 - 3068 - 3069 - "jonathan" = buildLispPackage 3070 - ((f: x: (x // (f x))) 3071 - (qlOverrides."jonathan" or (x: {})) 3072 - (import ./quicklisp-to-nix-output/jonathan.nix { 3073 - inherit fetchurl; 3074 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3075 - "babel" = quicklisp-to-nix-packages."babel"; 3076 - "cffi" = quicklisp-to-nix-packages."cffi"; 3077 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3078 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3079 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 3080 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3081 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 3082 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 3083 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 3084 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3085 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3086 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3087 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3088 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3089 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 3090 - })); 3091 - 3092 - 3093 - "iterate" = buildLispPackage 3094 - ((f: x: (x // (f x))) 3095 - (qlOverrides."iterate" or (x: {})) 3096 - (import ./quicklisp-to-nix-output/iterate.nix { 3097 - inherit fetchurl; 3098 - })); 3099 - 3100 - 3101 - "ironclad" = buildLispPackage 3102 - ((f: x: (x // (f x))) 3103 - (qlOverrides."ironclad" or (x: {})) 3104 - (import ./quicklisp-to-nix-output/ironclad.nix { 3105 - inherit fetchurl; 3106 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3107 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3108 - "rt" = quicklisp-to-nix-packages."rt"; 3109 - })); 3110 - 3111 - 3112 - "iolib" = buildLispPackage 3113 - ((f: x: (x // (f x))) 3114 - (qlOverrides."iolib" or (x: {})) 3115 - (import ./quicklisp-to-nix-output/iolib.nix { 3116 - inherit fetchurl; 3117 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3118 - "babel" = quicklisp-to-nix-packages."babel"; 3119 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3120 - "cffi" = quicklisp-to-nix-packages."cffi"; 3121 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3122 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3123 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 3124 - "idna" = quicklisp-to-nix-packages."idna"; 3125 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 3126 - "iolib_dot_base" = quicklisp-to-nix-packages."iolib_dot_base"; 3127 - "iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp"; 3128 - "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf"; 3129 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3130 - "swap-bytes" = quicklisp-to-nix-packages."swap-bytes"; 3131 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3132 - })); 3133 - 3134 - 3135 - "inferior-shell" = buildLispPackage 3136 - ((f: x: (x // (f x))) 3137 - (qlOverrides."inferior-shell" or (x: {})) 3138 - (import ./quicklisp-to-nix-output/inferior-shell.nix { 3139 - inherit fetchurl; 3140 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3141 - "asdf" = quicklisp-to-nix-packages."asdf"; 3142 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3143 - "fare-mop" = quicklisp-to-nix-packages."fare-mop"; 3144 - "fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote"; 3145 - "fare-quasiquote-extras" = quicklisp-to-nix-packages."fare-quasiquote-extras"; 3146 - "fare-quasiquote-optima" = quicklisp-to-nix-packages."fare-quasiquote-optima"; 3147 - "fare-quasiquote-readtable" = quicklisp-to-nix-packages."fare-quasiquote-readtable"; 3148 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 3149 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 3150 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 3151 - "iterate" = quicklisp-to-nix-packages."iterate"; 3152 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 3153 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3154 - "trivia" = quicklisp-to-nix-packages."trivia"; 3155 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 3156 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 3157 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 3158 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 3159 - "trivia_dot_quasiquote" = quicklisp-to-nix-packages."trivia_dot_quasiquote"; 3160 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 3161 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 3162 - "type-i" = quicklisp-to-nix-packages."type-i"; 3163 - })); 3164 - 3165 - 3166 - "ieee-floats" = buildLispPackage 3167 - ((f: x: (x // (f x))) 3168 - (qlOverrides."ieee-floats" or (x: {})) 3169 - (import ./quicklisp-to-nix-output/ieee-floats.nix { 3170 - inherit fetchurl; 3171 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 3172 - })); 3173 - 3174 - 3175 - "idna" = buildLispPackage 3176 - ((f: x: (x // (f x))) 3177 - (qlOverrides."idna" or (x: {})) 3178 - (import ./quicklisp-to-nix-output/idna.nix { 3179 - inherit fetchurl; 3180 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3181 - })); 3182 - 3183 - 3184 - "hunchentoot" = buildLispPackage 3185 - ((f: x: (x // (f x))) 3186 - (qlOverrides."hunchentoot" or (x: {})) 3187 - (import ./quicklisp-to-nix-output/hunchentoot.nix { 3188 - inherit fetchurl; 3189 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3190 - "babel" = quicklisp-to-nix-packages."babel"; 3191 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3192 - "cffi" = quicklisp-to-nix-packages."cffi"; 3193 - "chunga" = quicklisp-to-nix-packages."chunga"; 3194 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3195 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3196 - "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 3197 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3198 - "cl-who" = quicklisp-to-nix-packages."cl-who"; 3199 - "cxml-stp" = quicklisp-to-nix-packages."cxml-stp"; 3200 - "drakma" = quicklisp-to-nix-packages."drakma"; 3201 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3202 - "md5" = quicklisp-to-nix-packages."md5"; 3203 - "rfc2388" = quicklisp-to-nix-packages."rfc2388"; 3204 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3205 - "swank" = quicklisp-to-nix-packages."swank"; 3206 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3207 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3208 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3209 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3210 - "usocket" = quicklisp-to-nix-packages."usocket"; 3211 - "xpath" = quicklisp-to-nix-packages."xpath"; 3212 - })); 3213 - 3214 - 3215 - "hunchensocket" = buildLispPackage 3216 - ((f: x: (x // (f x))) 3217 - (qlOverrides."hunchensocket" or (x: {})) 3218 - (import ./quicklisp-to-nix-output/hunchensocket.nix { 3219 - inherit fetchurl; 3220 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3221 - "babel" = quicklisp-to-nix-packages."babel"; 3222 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3223 - "cffi" = quicklisp-to-nix-packages."cffi"; 3224 - "chunga" = quicklisp-to-nix-packages."chunga"; 3225 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3226 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3227 - "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 3228 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3229 - "fiasco" = quicklisp-to-nix-packages."fiasco"; 3230 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3231 - "hunchentoot" = quicklisp-to-nix-packages."hunchentoot"; 3232 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 3233 - "md5" = quicklisp-to-nix-packages."md5"; 3234 - "rfc2388" = quicklisp-to-nix-packages."rfc2388"; 3235 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3236 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3237 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3238 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3239 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3240 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 3241 - "usocket" = quicklisp-to-nix-packages."usocket"; 3242 - })); 3243 - 3244 - 3245 - "hu_dot_dwim_dot_defclass-star" = buildLispPackage 3246 - ((f: x: (x // (f x))) 3247 - (qlOverrides."hu_dot_dwim_dot_defclass-star" or (x: {})) 3248 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_defclass-star.nix { 3249 - inherit fetchurl; 3250 - "hu_dot_dwim_dot_asdf" = quicklisp-to-nix-packages."hu_dot_dwim_dot_asdf"; 3251 - "hu_dot_dwim_dot_common" = quicklisp-to-nix-packages."hu_dot_dwim_dot_common"; 3252 - "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank"; 3253 - })); 3254 - 3255 - 3256 - "hu_dot_dwim_dot_asdf" = buildLispPackage 3257 - ((f: x: (x // (f x))) 3258 - (qlOverrides."hu_dot_dwim_dot_asdf" or (x: {})) 3259 - (import ./quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix { 3260 - inherit fetchurl; 3261 - "asdf" = quicklisp-to-nix-packages."asdf"; 3262 - "uiop" = quicklisp-to-nix-packages."uiop"; 3263 - })); 3264 - 3265 - 3266 - "http-body" = buildLispPackage 3267 - ((f: x: (x // (f x))) 3268 - (qlOverrides."http-body" or (x: {})) 3269 - (import ./quicklisp-to-nix-output/http-body.nix { 3270 - inherit fetchurl; 3271 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3272 - "babel" = quicklisp-to-nix-packages."babel"; 3273 - "cffi" = quicklisp-to-nix-packages."cffi"; 3274 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3275 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3276 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 3277 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3278 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 3279 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 3280 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 3281 - "fast-http" = quicklisp-to-nix-packages."fast-http"; 3282 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 3283 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3284 - "jonathan" = quicklisp-to-nix-packages."jonathan"; 3285 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3286 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3287 - "quri" = quicklisp-to-nix-packages."quri"; 3288 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 3289 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3290 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3291 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3292 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3293 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 3294 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 3295 - })); 3296 - 3297 - 3298 - "heap" = buildLispPackage 3299 - ((f: x: (x // (f x))) 3300 - (qlOverrides."heap" or (x: {})) 3301 - (import ./quicklisp-to-nix-output/heap.nix { 3302 - inherit fetchurl; 3303 - })); 3304 - 3305 - 3306 - "gettext" = buildLispPackage 3307 - ((f: x: (x // (f x))) 3308 - (qlOverrides."gettext" or (x: {})) 3309 - (import ./quicklisp-to-nix-output/gettext.nix { 3310 - inherit fetchurl; 3311 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3312 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3313 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3314 - "yacc" = quicklisp-to-nix-packages."yacc"; 3315 - })); 3316 - 3317 - 3318 - "generic-cl" = buildLispPackage 3319 - ((f: x: (x // (f x))) 3320 - (qlOverrides."generic-cl" or (x: {})) 3321 - (import ./quicklisp-to-nix-output/generic-cl.nix { 3322 - inherit fetchurl; 3323 - "agutil" = quicklisp-to-nix-packages."agutil"; 3324 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3325 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 3326 - "arrows" = quicklisp-to-nix-packages."arrows"; 3327 - "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table"; 3328 - "cl-environments" = quicklisp-to-nix-packages."cl-environments"; 3329 - "cl-form-types" = quicklisp-to-nix-packages."cl-form-types"; 3330 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3331 - "collectors" = quicklisp-to-nix-packages."collectors"; 3332 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 3333 - "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic"; 3334 - "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector"; 3335 - "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison"; 3336 - "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container"; 3337 - "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal"; 3338 - "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator"; 3339 - "generic-cl_dot_lazy-seq" = quicklisp-to-nix-packages."generic-cl_dot_lazy-seq"; 3340 - "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map"; 3341 - "generic-cl_dot_math" = quicklisp-to-nix-packages."generic-cl_dot_math"; 3342 - "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object"; 3343 - "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence"; 3344 - "generic-cl_dot_set" = quicklisp-to-nix-packages."generic-cl_dot_set"; 3345 - "introspect-environment" = quicklisp-to-nix-packages."introspect-environment"; 3346 - "iterate" = quicklisp-to-nix-packages."iterate"; 3347 - "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace"; 3348 - "optima" = quicklisp-to-nix-packages."optima"; 3349 - "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0"; 3350 - "static-dispatch" = quicklisp-to-nix-packages."static-dispatch"; 3351 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3352 - "trivia" = quicklisp-to-nix-packages."trivia"; 3353 - "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006"; 3354 - "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0"; 3355 - "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1"; 3356 - "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2"; 3357 - "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial"; 3358 - "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2"; 3359 - "type-i" = quicklisp-to-nix-packages."type-i"; 3360 - })); 3361 - 3362 - 3363 - "fset" = buildLispPackage 3364 - ((f: x: (x // (f x))) 3365 - (qlOverrides."fset" or (x: {})) 3366 - (import ./quicklisp-to-nix-output/fset.nix { 3367 - inherit fetchurl; 3368 - "misc-extensions" = quicklisp-to-nix-packages."misc-extensions"; 3369 - "mt19937" = quicklisp-to-nix-packages."mt19937"; 3370 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3371 - })); 3372 - 3373 - 3374 - "form-fiddle" = buildLispPackage 3375 - ((f: x: (x // (f x))) 3376 - (qlOverrides."form-fiddle" or (x: {})) 3377 - (import ./quicklisp-to-nix-output/form-fiddle.nix { 3378 - inherit fetchurl; 3379 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3380 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3381 - })); 3382 - 3383 - 3384 - "flow" = buildLispPackage 3385 - ((f: x: (x // (f x))) 3386 - (qlOverrides."flow" or (x: {})) 3387 - (import ./quicklisp-to-nix-output/flow.nix { 3388 - inherit fetchurl; 3389 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3390 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3391 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3392 - })); 3393 - 3394 - 3395 - "float-features" = buildLispPackage 3396 - ((f: x: (x // (f x))) 3397 - (qlOverrides."float-features" or (x: {})) 3398 - (import ./quicklisp-to-nix-output/float-features.nix { 3399 - inherit fetchurl; 3400 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3401 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3402 - })); 3403 - 3404 - 3405 - "flexi-streams" = buildLispPackage 3406 - ((f: x: (x // (f x))) 3407 - (qlOverrides."flexi-streams" or (x: {})) 3408 - (import ./quicklisp-to-nix-output/flexi-streams.nix { 3409 - inherit fetchurl; 3410 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3411 - })); 3412 - 3413 - 3414 - "fiveam" = buildLispPackage 3415 - ((f: x: (x // (f x))) 3416 - (qlOverrides."fiveam" or (x: {})) 3417 - (import ./quicklisp-to-nix-output/fiveam.nix { 3418 - inherit fetchurl; 3419 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3420 - "net_dot_didierverna_dot_asdf-flv" = quicklisp-to-nix-packages."net_dot_didierverna_dot_asdf-flv"; 3421 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3422 - })); 3423 - 3424 - 3425 - "file-attributes" = buildLispPackage 3426 - ((f: x: (x // (f x))) 3427 - (qlOverrides."file-attributes" or (x: {})) 3428 - (import ./quicklisp-to-nix-output/file-attributes.nix { 3429 - inherit fetchurl; 3430 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3431 - "babel" = quicklisp-to-nix-packages."babel"; 3432 - "cffi" = quicklisp-to-nix-packages."cffi"; 3433 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3434 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3435 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3436 - })); 3437 - 3438 - 3439 - "fast-io" = buildLispPackage 3440 - ((f: x: (x // (f x))) 3441 - (qlOverrides."fast-io" or (x: {})) 3442 - (import ./quicklisp-to-nix-output/fast-io.nix { 3443 - inherit fetchurl; 3444 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3445 - "babel" = quicklisp-to-nix-packages."babel"; 3446 - "cffi" = quicklisp-to-nix-packages."cffi"; 3447 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3448 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3449 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3450 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3451 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3452 - })); 3453 - 3454 - 3455 - "fast-http" = buildLispPackage 3456 - ((f: x: (x // (f x))) 3457 - (qlOverrides."fast-http" or (x: {})) 3458 - (import ./quicklisp-to-nix-output/fast-http.nix { 3459 - inherit fetchurl; 3460 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3461 - "babel" = quicklisp-to-nix-packages."babel"; 3462 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 3463 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3464 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3465 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 3466 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3467 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3468 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 3469 - })); 3470 - 3471 - 3472 - "fare-utils" = buildLispPackage 3473 - ((f: x: (x // (f x))) 3474 - (qlOverrides."fare-utils" or (x: {})) 3475 - (import ./quicklisp-to-nix-output/fare-utils.nix { 3476 - inherit fetchurl; 3477 - "asdf" = quicklisp-to-nix-packages."asdf"; 3478 - })); 3479 - 3480 - 3481 - "fare-quasiquote" = buildLispPackage 3482 - ((f: x: (x // (f x))) 3483 - (qlOverrides."fare-quasiquote" or (x: {})) 3484 - (import ./quicklisp-to-nix-output/fare-quasiquote.nix { 3485 - inherit fetchurl; 3486 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 3487 - })); 3488 - 3489 - 3490 - "fare-mop" = buildLispPackage 3491 - ((f: x: (x // (f x))) 3492 - (qlOverrides."fare-mop" or (x: {})) 3493 - (import ./quicklisp-to-nix-output/fare-mop.nix { 3494 - inherit fetchurl; 3495 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3496 - "fare-utils" = quicklisp-to-nix-packages."fare-utils"; 3497 - })); 3498 - 3499 - 3500 - "fare-csv" = buildLispPackage 3501 - ((f: x: (x // (f x))) 3502 - (qlOverrides."fare-csv" or (x: {})) 3503 - (import ./quicklisp-to-nix-output/fare-csv.nix { 3504 - inherit fetchurl; 3505 - })); 3506 - 3507 - 3508 - "external-program" = buildLispPackage 3509 - ((f: x: (x // (f x))) 3510 - (qlOverrides."external-program" or (x: {})) 3511 - (import ./quicklisp-to-nix-output/external-program.nix { 3512 - inherit fetchurl; 3513 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 3514 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3515 - })); 3516 - 3517 - 3518 - "esrap-peg" = buildLispPackage 3519 - ((f: x: (x // (f x))) 3520 - (qlOverrides."esrap-peg" or (x: {})) 3521 - (import ./quicklisp-to-nix-output/esrap-peg.nix { 3522 - inherit fetchurl; 3523 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3524 - "cl-unification" = quicklisp-to-nix-packages."cl-unification"; 3525 - "esrap" = quicklisp-to-nix-packages."esrap"; 3526 - "iterate" = quicklisp-to-nix-packages."iterate"; 3527 - "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form"; 3528 - })); 3529 - 3530 - 3531 - "esrap" = buildLispPackage 3532 - ((f: x: (x // (f x))) 3533 - (qlOverrides."esrap" or (x: {})) 3534 - (import ./quicklisp-to-nix-output/esrap.nix { 3535 - inherit fetchurl; 3536 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3537 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 3538 - "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form"; 3539 - })); 3540 - 3541 - 3542 - "enchant" = buildLispPackage 3543 - ((f: x: (x // (f x))) 3544 - (qlOverrides."enchant" or (x: {})) 3545 - (import ./quicklisp-to-nix-output/enchant.nix { 3546 - inherit fetchurl; 3547 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3548 - "babel" = quicklisp-to-nix-packages."babel"; 3549 - "cffi" = quicklisp-to-nix-packages."cffi"; 3550 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3551 - })); 3552 - 3553 - 3554 - "drakma" = buildLispPackage 3555 - ((f: x: (x // (f x))) 3556 - (qlOverrides."drakma" or (x: {})) 3557 - (import ./quicklisp-to-nix-output/drakma.nix { 3558 - inherit fetchurl; 3559 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3560 - "babel" = quicklisp-to-nix-packages."babel"; 3561 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3562 - "cffi" = quicklisp-to-nix-packages."cffi"; 3563 - "chipz" = quicklisp-to-nix-packages."chipz"; 3564 - "chunga" = quicklisp-to-nix-packages."chunga"; 3565 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3566 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3567 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3568 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3569 - "puri" = quicklisp-to-nix-packages."puri"; 3570 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3571 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3572 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3573 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3574 - "usocket" = quicklisp-to-nix-packages."usocket"; 3575 - })); 3576 - 3577 - 3578 - "documentation-utils" = buildLispPackage 3579 - ((f: x: (x // (f x))) 3580 - (qlOverrides."documentation-utils" or (x: {})) 3581 - (import ./quicklisp-to-nix-output/documentation-utils.nix { 3582 - inherit fetchurl; 3583 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3584 - })); 3585 - 3586 - 3587 - "djula" = buildLispPackage 3588 - ((f: x: (x // (f x))) 3589 - (qlOverrides."djula" or (x: {})) 3590 - (import ./quicklisp-to-nix-output/djula.nix { 3591 - inherit fetchurl; 3592 - "access" = quicklisp-to-nix-packages."access"; 3593 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3594 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 3595 - "arnesi" = quicklisp-to-nix-packages."arnesi"; 3596 - "babel" = quicklisp-to-nix-packages."babel"; 3597 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 3598 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 3599 - "cl-locale" = quicklisp-to-nix-packages."cl-locale"; 3600 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3601 - "cl-slice" = quicklisp-to-nix-packages."cl-slice"; 3602 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 3603 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 3604 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 3605 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3606 - "collectors" = quicklisp-to-nix-packages."collectors"; 3607 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3608 - "gettext" = quicklisp-to-nix-packages."gettext"; 3609 - "iterate" = quicklisp-to-nix-packages."iterate"; 3610 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 3611 - "local-time" = quicklisp-to-nix-packages."local-time"; 3612 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3613 - "parser-combinators" = quicklisp-to-nix-packages."parser-combinators"; 3614 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3615 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3616 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3617 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3618 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3619 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 3620 - "yacc" = quicklisp-to-nix-packages."yacc"; 3621 - })); 3622 - 3623 - 3624 - "dexador" = buildLispPackage 3625 - ((f: x: (x // (f x))) 3626 - (qlOverrides."dexador" or (x: {})) 3627 - (import ./quicklisp-to-nix-output/dexador.nix { 3628 - inherit fetchurl; 3629 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3630 - "babel" = quicklisp-to-nix-packages."babel"; 3631 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3632 - "cffi" = quicklisp-to-nix-packages."cffi"; 3633 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3634 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3635 - "chipz" = quicklisp-to-nix-packages."chipz"; 3636 - "chunga" = quicklisp-to-nix-packages."chunga"; 3637 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3638 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3639 - "cl-cookie" = quicklisp-to-nix-packages."cl-cookie"; 3640 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3641 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 3642 - "fast-http" = quicklisp-to-nix-packages."fast-http"; 3643 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 3644 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3645 - "local-time" = quicklisp-to-nix-packages."local-time"; 3646 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3647 - "quri" = quicklisp-to-nix-packages."quri"; 3648 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 3649 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3650 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3651 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3652 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3653 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3654 - "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes"; 3655 - "uiop" = quicklisp-to-nix-packages."uiop"; 3656 - "usocket" = quicklisp-to-nix-packages."usocket"; 3657 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 3658 - })); 3659 - 3660 - 3661 - "defclass-std" = buildLispPackage 3662 - ((f: x: (x // (f x))) 3663 - (qlOverrides."defclass-std" or (x: {})) 3664 - (import ./quicklisp-to-nix-output/defclass-std.nix { 3665 - inherit fetchurl; 3666 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3667 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 3668 - })); 3669 - 3670 - 3671 - "dbus" = buildLispPackage 3672 - ((f: x: (x // (f x))) 3673 - (qlOverrides."dbus" or (x: {})) 3674 - (import ./quicklisp-to-nix-output/dbus.nix { 3675 - inherit fetchurl; 3676 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3677 - "asdf-package-system" = quicklisp-to-nix-packages."asdf-package-system"; 3678 - "babel" = quicklisp-to-nix-packages."babel"; 3679 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3680 - "cffi" = quicklisp-to-nix-packages."cffi"; 3681 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3682 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3683 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3684 - "cl-xmlspam" = quicklisp-to-nix-packages."cl-xmlspam"; 3685 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3686 - "cxml" = quicklisp-to-nix-packages."cxml"; 3687 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3688 - "idna" = quicklisp-to-nix-packages."idna"; 3689 - "ieee-floats" = quicklisp-to-nix-packages."ieee-floats"; 3690 - "iolib" = quicklisp-to-nix-packages."iolib"; 3691 - "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf"; 3692 - "iolib_dot_base" = quicklisp-to-nix-packages."iolib_dot_base"; 3693 - "iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp"; 3694 - "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf"; 3695 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 3696 - "puri" = quicklisp-to-nix-packages."puri"; 3697 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3698 - "swap-bytes" = quicklisp-to-nix-packages."swap-bytes"; 3699 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3700 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3701 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3702 - })); 3703 - 3704 - 3705 - "dbd-sqlite3" = buildLispPackage 3706 - ((f: x: (x // (f x))) 3707 - (qlOverrides."dbd-sqlite3" or (x: {})) 3708 - (import ./quicklisp-to-nix-output/dbd-sqlite3.nix { 3709 - inherit fetchurl; 3710 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3711 - "babel" = quicklisp-to-nix-packages."babel"; 3712 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3713 - "cffi" = quicklisp-to-nix-packages."cffi"; 3714 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3715 - "dbi" = quicklisp-to-nix-packages."dbi"; 3716 - "iterate" = quicklisp-to-nix-packages."iterate"; 3717 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3718 - "sqlite" = quicklisp-to-nix-packages."sqlite"; 3719 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3720 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3721 - })); 3722 - 3723 - 3724 - "dbd-postgres" = buildLispPackage 3725 - ((f: x: (x // (f x))) 3726 - (qlOverrides."dbd-postgres" or (x: {})) 3727 - (import ./quicklisp-to-nix-output/dbd-postgres.nix { 3728 - inherit fetchurl; 3729 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3730 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3731 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3732 - "cl-postgres" = quicklisp-to-nix-packages."cl-postgres"; 3733 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3734 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3735 - "dbi" = quicklisp-to-nix-packages."dbi"; 3736 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 3737 - "md5" = quicklisp-to-nix-packages."md5"; 3738 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3739 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3740 - "uax-15" = quicklisp-to-nix-packages."uax-15"; 3741 - "usocket" = quicklisp-to-nix-packages."usocket"; 3742 - })); 3743 - 3744 - 3745 - "dbd-mysql" = buildLispPackage 3746 - ((f: x: (x // (f x))) 3747 - (qlOverrides."dbd-mysql" or (x: {})) 3748 - (import ./quicklisp-to-nix-output/dbd-mysql.nix { 3749 - inherit fetchurl; 3750 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3751 - "babel" = quicklisp-to-nix-packages."babel"; 3752 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3753 - "cffi" = quicklisp-to-nix-packages."cffi"; 3754 - "cl-mysql" = quicklisp-to-nix-packages."cl-mysql"; 3755 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3756 - "dbi" = quicklisp-to-nix-packages."dbi"; 3757 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3758 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3759 - })); 3760 - 3761 - 3762 - "data-table" = buildLispPackage 3763 - ((f: x: (x // (f x))) 3764 - (qlOverrides."data-table" or (x: {})) 3765 - (import ./quicklisp-to-nix-output/data-table.nix { 3766 - inherit fetchurl; 3767 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3768 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 3769 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3770 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 3771 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3772 - "iterate" = quicklisp-to-nix-packages."iterate"; 3773 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 3774 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3775 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3776 - })); 3777 - 3778 - 3779 - "cxml-stp" = buildLispPackage 3780 - ((f: x: (x // (f x))) 3781 - (qlOverrides."cxml-stp" or (x: {})) 3782 - (import ./quicklisp-to-nix-output/cxml-stp.nix { 3783 - inherit fetchurl; 3784 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3785 - "babel" = quicklisp-to-nix-packages."babel"; 3786 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3787 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3788 - "cxml" = quicklisp-to-nix-packages."cxml"; 3789 - "cxml_slash_test" = quicklisp-to-nix-packages."cxml_slash_test"; 3790 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 3791 - "puri" = quicklisp-to-nix-packages."puri"; 3792 - "rt" = quicklisp-to-nix-packages."rt"; 3793 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3794 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3795 - "xpath" = quicklisp-to-nix-packages."xpath"; 3796 - "xpath_slash_test" = quicklisp-to-nix-packages."xpath_slash_test"; 3797 - "yacc" = quicklisp-to-nix-packages."yacc"; 3798 - })); 3799 - 3800 - 3801 - "cxml" = buildLispPackage 3802 - ((f: x: (x // (f x))) 3803 - (qlOverrides."cxml" or (x: {})) 3804 - (import ./quicklisp-to-nix-output/cxml.nix { 3805 - inherit fetchurl; 3806 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3807 - "babel" = quicklisp-to-nix-packages."babel"; 3808 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3809 - "puri" = quicklisp-to-nix-packages."puri"; 3810 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3811 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3812 - })); 3813 - 3814 - 3815 - "css-selectors-stp" = buildLispPackage 3816 - ((f: x: (x // (f x))) 3817 - (qlOverrides."css-selectors-stp" or (x: {})) 3818 - (import ./quicklisp-to-nix-output/css-selectors-stp.nix { 3819 - inherit fetchurl; 3820 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3821 - "babel" = quicklisp-to-nix-packages."babel"; 3822 - "buildnode" = quicklisp-to-nix-packages."buildnode"; 3823 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 3824 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3825 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 3826 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3827 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3828 - "closure-html" = quicklisp-to-nix-packages."closure-html"; 3829 - "collectors" = quicklisp-to-nix-packages."collectors"; 3830 - "css-selectors" = quicklisp-to-nix-packages."css-selectors"; 3831 - "cxml" = quicklisp-to-nix-packages."cxml"; 3832 - "cxml-stp" = quicklisp-to-nix-packages."cxml-stp"; 3833 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3834 - "iterate" = quicklisp-to-nix-packages."iterate"; 3835 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3836 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 3837 - "puri" = quicklisp-to-nix-packages."puri"; 3838 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3839 - "swank" = quicklisp-to-nix-packages."swank"; 3840 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3841 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3842 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3843 - "xpath" = quicklisp-to-nix-packages."xpath"; 3844 - "yacc" = quicklisp-to-nix-packages."yacc"; 3845 - })); 3846 - 3847 - 3848 - "css-selectors-simple-tree" = buildLispPackage 3849 - ((f: x: (x // (f x))) 3850 - (qlOverrides."css-selectors-simple-tree" or (x: {})) 3851 - (import ./quicklisp-to-nix-output/css-selectors-simple-tree.nix { 3852 - inherit fetchurl; 3853 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3854 - "babel" = quicklisp-to-nix-packages."babel"; 3855 - "buildnode" = quicklisp-to-nix-packages."buildnode"; 3856 - "cl-html5-parser" = quicklisp-to-nix-packages."cl-html5-parser"; 3857 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 3858 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3859 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 3860 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3861 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3862 - "closure-html" = quicklisp-to-nix-packages."closure-html"; 3863 - "collectors" = quicklisp-to-nix-packages."collectors"; 3864 - "css-selectors" = quicklisp-to-nix-packages."css-selectors"; 3865 - "cxml" = quicklisp-to-nix-packages."cxml"; 3866 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3867 - "iterate" = quicklisp-to-nix-packages."iterate"; 3868 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3869 - "puri" = quicklisp-to-nix-packages."puri"; 3870 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3871 - "string-case" = quicklisp-to-nix-packages."string-case"; 3872 - "swank" = quicklisp-to-nix-packages."swank"; 3873 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3874 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3875 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3876 - "yacc" = quicklisp-to-nix-packages."yacc"; 3877 - })); 3878 - 3879 - 3880 - "css-selectors" = buildLispPackage 3881 - ((f: x: (x // (f x))) 3882 - (qlOverrides."css-selectors" or (x: {})) 3883 - (import ./quicklisp-to-nix-output/css-selectors.nix { 3884 - inherit fetchurl; 3885 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3886 - "babel" = quicklisp-to-nix-packages."babel"; 3887 - "buildnode" = quicklisp-to-nix-packages."buildnode"; 3888 - "buildnode-xhtml" = quicklisp-to-nix-packages."buildnode-xhtml"; 3889 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 3890 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3891 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 3892 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3893 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3894 - "closure-html" = quicklisp-to-nix-packages."closure-html"; 3895 - "collectors" = quicklisp-to-nix-packages."collectors"; 3896 - "cxml" = quicklisp-to-nix-packages."cxml"; 3897 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3898 - "iterate" = quicklisp-to-nix-packages."iterate"; 3899 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 3900 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3901 - "puri" = quicklisp-to-nix-packages."puri"; 3902 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3903 - "swank" = quicklisp-to-nix-packages."swank"; 3904 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3905 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3906 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3907 - "yacc" = quicklisp-to-nix-packages."yacc"; 3908 - })); 3909 - 3910 - 3911 - "css-lite" = buildLispPackage 3912 - ((f: x: (x // (f x))) 3913 - (qlOverrides."css-lite" or (x: {})) 3914 - (import ./quicklisp-to-nix-output/css-lite.nix { 3915 - inherit fetchurl; 3916 - })); 3917 - 3918 - 3919 - "command-line-arguments" = buildLispPackage 3920 - ((f: x: (x // (f x))) 3921 - (qlOverrides."command-line-arguments" or (x: {})) 3922 - (import ./quicklisp-to-nix-output/command-line-arguments.nix { 3923 - inherit fetchurl; 3924 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3925 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 3926 - })); 3927 - 3928 - 3929 - "collectors" = buildLispPackage 3930 - ((f: x: (x // (f x))) 3931 - (qlOverrides."collectors" or (x: {})) 3932 - (import ./quicklisp-to-nix-output/collectors.nix { 3933 - inherit fetchurl; 3934 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3935 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 3936 - "iterate" = quicklisp-to-nix-packages."iterate"; 3937 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 3938 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 3939 - })); 3940 - 3941 - 3942 - "clx" = buildLispPackage 3943 - ((f: x: (x // (f x))) 3944 - (qlOverrides."clx" or (x: {})) 3945 - (import ./quicklisp-to-nix-output/clx.nix { 3946 - inherit fetchurl; 3947 - "fiasco" = quicklisp-to-nix-packages."fiasco"; 3948 - })); 3949 - 3950 - 3951 - "clump" = buildLispPackage 3952 - ((f: x: (x // (f x))) 3953 - (qlOverrides."clump" or (x: {})) 3954 - (import ./quicklisp-to-nix-output/clump.nix { 3955 - inherit fetchurl; 3956 - "acclimation" = quicklisp-to-nix-packages."acclimation"; 3957 - "clump-2-3-tree" = quicklisp-to-nix-packages."clump-2-3-tree"; 3958 - "clump-binary-tree" = quicklisp-to-nix-packages."clump-binary-tree"; 3959 - })); 3960 - 3961 - 3962 - "clss" = buildLispPackage 3963 - ((f: x: (x // (f x))) 3964 - (qlOverrides."clss" or (x: {})) 3965 - (import ./quicklisp-to-nix-output/clss.nix { 3966 - inherit fetchurl; 3967 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 3968 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3969 - "plump" = quicklisp-to-nix-packages."plump"; 3970 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3971 - })); 3972 - 3973 - 3974 - "clsql-sqlite3" = buildLispPackage 3975 - ((f: x: (x // (f x))) 3976 - (qlOverrides."clsql-sqlite3" or (x: {})) 3977 - (import ./quicklisp-to-nix-output/clsql-sqlite3.nix { 3978 - inherit fetchurl; 3979 - "clsql" = quicklisp-to-nix-packages."clsql"; 3980 - "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 3981 - "uffi" = quicklisp-to-nix-packages."uffi"; 3982 - })); 3983 - 3984 - 3985 - "clsql-postgresql-socket" = buildLispPackage 3986 - ((f: x: (x // (f x))) 3987 - (qlOverrides."clsql-postgresql-socket" or (x: {})) 3988 - (import ./quicklisp-to-nix-output/clsql-postgresql-socket.nix { 3989 - inherit fetchurl; 3990 - "clsql" = quicklisp-to-nix-packages."clsql"; 3991 - "md5" = quicklisp-to-nix-packages."md5"; 3992 - "uffi" = quicklisp-to-nix-packages."uffi"; 3993 - })); 3994 - 3995 - 3996 - "clsql-postgresql" = buildLispPackage 3997 - ((f: x: (x // (f x))) 3998 - (qlOverrides."clsql-postgresql" or (x: {})) 3999 - (import ./quicklisp-to-nix-output/clsql-postgresql.nix { 4000 - inherit fetchurl; 4001 - "clsql" = quicklisp-to-nix-packages."clsql"; 4002 - "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 4003 - "uffi" = quicklisp-to-nix-packages."uffi"; 4004 - })); 4005 - 4006 - 4007 - "clsql" = buildLispPackage 4008 - ((f: x: (x // (f x))) 4009 - (qlOverrides."clsql" or (x: {})) 4010 - (import ./quicklisp-to-nix-output/clsql.nix { 4011 - inherit fetchurl; 4012 - "uffi" = quicklisp-to-nix-packages."uffi"; 4013 - })); 4014 - 4015 - 4016 - "closure-html" = buildLispPackage 4017 - ((f: x: (x // (f x))) 4018 - (qlOverrides."closure-html" or (x: {})) 4019 - (import ./quicklisp-to-nix-output/closure-html.nix { 4020 - inherit fetchurl; 4021 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4022 - "babel" = quicklisp-to-nix-packages."babel"; 4023 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 4024 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4025 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4026 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4027 - })); 4028 - 4029 - 4030 - "closure-common" = buildLispPackage 4031 - ((f: x: (x // (f x))) 4032 - (qlOverrides."closure-common" or (x: {})) 4033 - (import ./quicklisp-to-nix-output/closure-common.nix { 4034 - inherit fetchurl; 4035 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4036 - "babel" = quicklisp-to-nix-packages."babel"; 4037 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4038 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4039 - })); 4040 - 4041 - 4042 - "closer-mop" = buildLispPackage 4043 - ((f: x: (x // (f x))) 4044 - (qlOverrides."closer-mop" or (x: {})) 4045 - (import ./quicklisp-to-nix-output/closer-mop.nix { 4046 - inherit fetchurl; 4047 - })); 4048 - 4049 - 4050 - "clfswm" = buildLispPackage 4051 - ((f: x: (x // (f x))) 4052 - (qlOverrides."clfswm" or (x: {})) 4053 - (import ./quicklisp-to-nix-output/clfswm.nix { 4054 - inherit fetchurl; 4055 - "clx" = quicklisp-to-nix-packages."clx"; 4056 - })); 4057 - 4058 - 4059 - "classowary" = buildLispPackage 4060 - ((f: x: (x // (f x))) 4061 - (qlOverrides."classowary" or (x: {})) 4062 - (import ./quicklisp-to-nix-output/classowary.nix { 4063 - inherit fetchurl; 4064 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 4065 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 4066 - })); 4067 - 4068 - 4069 - "clack" = buildLispPackage 4070 - ((f: x: (x // (f x))) 4071 - (qlOverrides."clack" or (x: {})) 4072 - (import ./quicklisp-to-nix-output/clack.nix { 4073 - inherit fetchurl; 4074 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4075 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4076 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 4077 - "lack" = quicklisp-to-nix-packages."lack"; 4078 - "lack-component" = quicklisp-to-nix-packages."lack-component"; 4079 - "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace"; 4080 - "lack-util" = quicklisp-to-nix-packages."lack-util"; 4081 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4082 - "uiop" = quicklisp-to-nix-packages."uiop"; 4083 - "usocket" = quicklisp-to-nix-packages."usocket"; 4084 - })); 4085 - 4086 - 4087 - "cl-who" = buildLispPackage 4088 - ((f: x: (x // (f x))) 4089 - (qlOverrides."cl-who" or (x: {})) 4090 - (import ./quicklisp-to-nix-output/cl-who.nix { 4091 - inherit fetchurl; 4092 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4093 - })); 4094 - 4095 - 4096 - "cl-webkit2" = buildLispPackage 4097 - ((f: x: (x // (f x))) 4098 - (qlOverrides."cl-webkit2" or (x: {})) 4099 - (import ./quicklisp-to-nix-output/cl-webkit2.nix { 4100 - inherit fetchurl; 4101 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4102 - "babel" = quicklisp-to-nix-packages."babel"; 4103 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4104 - "cffi" = quicklisp-to-nix-packages."cffi"; 4105 - "cl-cffi-gtk" = quicklisp-to-nix-packages."cl-cffi-gtk"; 4106 - "cl-cffi-gtk-cairo" = quicklisp-to-nix-packages."cl-cffi-gtk-cairo"; 4107 - "cl-cffi-gtk-gdk" = quicklisp-to-nix-packages."cl-cffi-gtk-gdk"; 4108 - "cl-cffi-gtk-gdk-pixbuf" = quicklisp-to-nix-packages."cl-cffi-gtk-gdk-pixbuf"; 4109 - "cl-cffi-gtk-gio" = quicklisp-to-nix-packages."cl-cffi-gtk-gio"; 4110 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 4111 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 4112 - "cl-cffi-gtk-pango" = quicklisp-to-nix-packages."cl-cffi-gtk-pango"; 4113 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4114 - "iterate" = quicklisp-to-nix-packages."iterate"; 4115 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4116 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4117 - })); 4118 - 4119 - 4120 - "cl-vectors" = buildLispPackage 4121 - ((f: x: (x // (f x))) 4122 - (qlOverrides."cl-vectors" or (x: {})) 4123 - (import ./quicklisp-to-nix-output/cl-vectors.nix { 4124 - inherit fetchurl; 4125 - "cl-aa" = quicklisp-to-nix-packages."cl-aa"; 4126 - "cl-paths" = quicklisp-to-nix-packages."cl-paths"; 4127 - })); 4128 - 4129 - 4130 - "cl-utilities" = buildLispPackage 4131 - ((f: x: (x // (f x))) 4132 - (qlOverrides."cl-utilities" or (x: {})) 4133 - (import ./quicklisp-to-nix-output/cl-utilities.nix { 4134 - inherit fetchurl; 4135 - })); 4136 - 4137 - 4138 - "cl-unification" = buildLispPackage 4139 - ((f: x: (x // (f x))) 4140 - (qlOverrides."cl-unification" or (x: {})) 4141 - (import ./quicklisp-to-nix-output/cl-unification.nix { 4142 - inherit fetchurl; 4143 - })); 4144 - 4145 - 4146 - "cl-unicode" = buildLispPackage 4147 - ((f: x: (x // (f x))) 4148 - (qlOverrides."cl-unicode" or (x: {})) 4149 - (import ./quicklisp-to-nix-output/cl-unicode.nix { 4150 - inherit fetchurl; 4151 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4152 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4153 - })); 4154 - 4155 - 4156 - "cl-typesetting" = buildLispPackage 4157 - ((f: x: (x // (f x))) 4158 - (qlOverrides."cl-typesetting" or (x: {})) 4159 - (import ./quicklisp-to-nix-output/cl-typesetting.nix { 4160 - inherit fetchurl; 4161 - "cl-pdf" = quicklisp-to-nix-packages."cl-pdf"; 4162 - "iterate" = quicklisp-to-nix-packages."iterate"; 4163 - "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf"; 4164 - })); 4165 - 4166 - 4167 - "cl-test-more" = buildLispPackage 4168 - ((f: x: (x // (f x))) 4169 - (qlOverrides."cl-test-more" or (x: {})) 4170 - (import ./quicklisp-to-nix-output/cl-test-more.nix { 4171 - inherit fetchurl; 4172 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4173 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 4174 - "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text"; 4175 - "cl-colors" = quicklisp-to-nix-packages."cl-colors"; 4176 - "cl-colors2" = quicklisp-to-nix-packages."cl-colors2"; 4177 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4178 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 4179 - "prove" = quicklisp-to-nix-packages."prove"; 4180 - })); 4181 - 4182 - 4183 - "cl-syslog" = buildLispPackage 4184 - ((f: x: (x // (f x))) 4185 - (qlOverrides."cl-syslog" or (x: {})) 4186 - (import ./quicklisp-to-nix-output/cl-syslog.nix { 4187 - inherit fetchurl; 4188 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4189 - "babel" = quicklisp-to-nix-packages."babel"; 4190 - "cffi" = quicklisp-to-nix-packages."cffi"; 4191 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 4192 - "local-time" = quicklisp-to-nix-packages."local-time"; 4193 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4194 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4195 - "usocket" = quicklisp-to-nix-packages."usocket"; 4196 - })); 4197 - 4198 - 4199 - "cl-syntax-markup" = buildLispPackage 4200 - ((f: x: (x // (f x))) 4201 - (qlOverrides."cl-syntax-markup" or (x: {})) 4202 - (import ./quicklisp-to-nix-output/cl-syntax-markup.nix { 4203 - inherit fetchurl; 4204 - "cl-markup" = quicklisp-to-nix-packages."cl-markup"; 4205 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4206 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4207 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4208 - })); 4209 - 4210 - 4211 - "cl-syntax-anonfun" = buildLispPackage 4212 - ((f: x: (x // (f x))) 4213 - (qlOverrides."cl-syntax-anonfun" or (x: {})) 4214 - (import ./quicklisp-to-nix-output/cl-syntax-anonfun.nix { 4215 - inherit fetchurl; 4216 - "cl-anonfun" = quicklisp-to-nix-packages."cl-anonfun"; 4217 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4218 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4219 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4220 - })); 4221 - 4222 - 4223 - "cl-syntax-annot" = buildLispPackage 4224 - ((f: x: (x // (f x))) 4225 - (qlOverrides."cl-syntax-annot" or (x: {})) 4226 - (import ./quicklisp-to-nix-output/cl-syntax-annot.nix { 4227 - inherit fetchurl; 4228 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4229 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 4230 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4231 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4232 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4233 - })); 4234 - 4235 - 4236 - "cl-syntax" = buildLispPackage 4237 - ((f: x: (x // (f x))) 4238 - (qlOverrides."cl-syntax" or (x: {})) 4239 - (import ./quicklisp-to-nix-output/cl-syntax.nix { 4240 - inherit fetchurl; 4241 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4242 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4243 - })); 4244 - 4245 - 4246 - "cl-svg" = buildLispPackage 4247 - ((f: x: (x // (f x))) 4248 - (qlOverrides."cl-svg" or (x: {})) 4249 - (import ./quicklisp-to-nix-output/cl-svg.nix { 4250 - inherit fetchurl; 4251 - })); 4252 - 4253 - 4254 - "cl-store" = buildLispPackage 4255 - ((f: x: (x // (f x))) 4256 - (qlOverrides."cl-store" or (x: {})) 4257 - (import ./quicklisp-to-nix-output/cl-store.nix { 4258 - inherit fetchurl; 4259 - "rt" = quicklisp-to-nix-packages."rt"; 4260 - })); 4261 - 4262 - 4263 - "cl-speedy-queue" = buildLispPackage 4264 - ((f: x: (x // (f x))) 4265 - (qlOverrides."cl-speedy-queue" or (x: {})) 4266 - (import ./quicklisp-to-nix-output/cl-speedy-queue.nix { 4267 - inherit fetchurl; 4268 - })); 4269 - 4270 - 4271 - "cl-smtp" = buildLispPackage 4272 - ((f: x: (x // (f x))) 4273 - (qlOverrides."cl-smtp" or (x: {})) 4274 - (import ./quicklisp-to-nix-output/cl-smtp.nix { 4275 - inherit fetchurl; 4276 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4277 - "babel" = quicklisp-to-nix-packages."babel"; 4278 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4279 - "cffi" = quicklisp-to-nix-packages."cffi"; 4280 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 4281 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 4282 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4283 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4284 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4285 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4286 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4287 - "usocket" = quicklisp-to-nix-packages."usocket"; 4288 - })); 4289 - 4290 - 4291 - "cl-smt-lib" = buildLispPackage 4292 - ((f: x: (x // (f x))) 4293 - (qlOverrides."cl-smt-lib" or (x: {})) 4294 - (import ./quicklisp-to-nix-output/cl-smt-lib.nix { 4295 - inherit fetchurl; 4296 - "asdf-package-system" = quicklisp-to-nix-packages."asdf-package-system"; 4297 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4298 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4299 - })); 4300 - 4301 - 4302 - "cl-slice" = buildLispPackage 4303 - ((f: x: (x // (f x))) 4304 - (qlOverrides."cl-slice" or (x: {})) 4305 - (import ./quicklisp-to-nix-output/cl-slice.nix { 4306 - inherit fetchurl; 4307 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4308 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 4309 - "clunit" = quicklisp-to-nix-packages."clunit"; 4310 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 4311 - })); 4312 - 4313 - 4314 - "cl-shellwords" = buildLispPackage 4315 - ((f: x: (x // (f x))) 4316 - (qlOverrides."cl-shellwords" or (x: {})) 4317 - (import ./quicklisp-to-nix-output/cl-shellwords.nix { 4318 - inherit fetchurl; 4319 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4320 - })); 4321 - 4322 - 4323 - "cl-reexport" = buildLispPackage 4324 - ((f: x: (x // (f x))) 4325 - (qlOverrides."cl-reexport" or (x: {})) 4326 - (import ./quicklisp-to-nix-output/cl-reexport.nix { 4327 - inherit fetchurl; 4328 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4329 - })); 4330 - 4331 - 4332 - "cl-qprint" = buildLispPackage 4333 - ((f: x: (x // (f x))) 4334 - (qlOverrides."cl-qprint" or (x: {})) 4335 - (import ./quicklisp-to-nix-output/cl-qprint.nix { 4336 - inherit fetchurl; 4337 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4338 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4339 - })); 4340 - 4341 - 4342 - "cl-qrencode" = buildLispPackage 4343 - ((f: x: (x // (f x))) 4344 - (qlOverrides."cl-qrencode" or (x: {})) 4345 - (import ./quicklisp-to-nix-output/cl-qrencode.nix { 4346 - inherit fetchurl; 4347 - "salza2" = quicklisp-to-nix-packages."salza2"; 4348 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4349 - "zpng" = quicklisp-to-nix-packages."zpng"; 4350 - })); 4351 - 4352 - 4353 - "cl-protobufs" = buildLispPackage 4354 - ((f: x: (x // (f x))) 4355 - (qlOverrides."cl-protobufs" or (x: {})) 4356 - (import ./quicklisp-to-nix-output/cl-protobufs.nix { 4357 - inherit fetchurl; 4358 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4359 - "asdf" = quicklisp-to-nix-packages."asdf"; 4360 - "babel" = quicklisp-to-nix-packages."babel"; 4361 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4362 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4363 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4364 - })); 4365 - 4366 - 4367 - "cl-prevalence" = buildLispPackage 4368 - ((f: x: (x // (f x))) 4369 - (qlOverrides."cl-prevalence" or (x: {})) 4370 - (import ./quicklisp-to-nix-output/cl-prevalence.nix { 4371 - inherit fetchurl; 4372 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4373 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4374 - "s-sysdeps" = quicklisp-to-nix-packages."s-sysdeps"; 4375 - "s-xml" = quicklisp-to-nix-packages."s-xml"; 4376 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4377 - "usocket" = quicklisp-to-nix-packages."usocket"; 4378 - "usocket-server" = quicklisp-to-nix-packages."usocket-server"; 4379 - })); 4380 - 4381 - 4382 - "cl-ppcre-unicode" = buildLispPackage 4383 - ((f: x: (x // (f x))) 4384 - (qlOverrides."cl-ppcre-unicode" or (x: {})) 4385 - (import ./quicklisp-to-nix-output/cl-ppcre-unicode.nix { 4386 - inherit fetchurl; 4387 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4388 - "cl-ppcre-test" = quicklisp-to-nix-packages."cl-ppcre-test"; 4389 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 4390 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4391 - })); 4392 - 4393 - 4394 - "cl-ppcre-template" = buildLispPackage 4395 - ((f: x: (x // (f x))) 4396 - (qlOverrides."cl-ppcre-template" or (x: {})) 4397 - (import ./quicklisp-to-nix-output/cl-ppcre-template.nix { 4398 - inherit fetchurl; 4399 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4400 - "cl-unification" = quicklisp-to-nix-packages."cl-unification"; 4401 - })); 4402 - 4403 - 4404 - "cl-ppcre" = buildLispPackage 4405 - ((f: x: (x // (f x))) 4406 - (qlOverrides."cl-ppcre" or (x: {})) 4407 - (import ./quicklisp-to-nix-output/cl-ppcre.nix { 4408 - inherit fetchurl; 4409 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4410 - })); 4411 - 4412 - 4413 - "cl-pdf" = buildLispPackage 4414 - ((f: x: (x // (f x))) 4415 - (qlOverrides."cl-pdf" or (x: {})) 4416 - (import ./quicklisp-to-nix-output/cl-pdf.nix { 4417 - inherit fetchurl; 4418 - "iterate" = quicklisp-to-nix-packages."iterate"; 4419 - "uiop" = quicklisp-to-nix-packages."uiop"; 4420 - "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf"; 4421 - })); 4422 - 4423 - 4424 - "cl-pattern" = buildLispPackage 4425 - ((f: x: (x // (f x))) 4426 - (qlOverrides."cl-pattern" or (x: {})) 4427 - (import ./quicklisp-to-nix-output/cl-pattern.nix { 4428 - inherit fetchurl; 4429 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4430 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 4431 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4432 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 4433 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4434 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4435 - })); 4436 - 4437 - 4438 - "cl-paths-ttf" = buildLispPackage 4439 - ((f: x: (x // (f x))) 4440 - (qlOverrides."cl-paths-ttf" or (x: {})) 4441 - (import ./quicklisp-to-nix-output/cl-paths-ttf.nix { 4442 - inherit fetchurl; 4443 - "cl-paths" = quicklisp-to-nix-packages."cl-paths"; 4444 - "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf"; 4445 - })); 4446 - 4447 - 4448 - "cl-mysql" = buildLispPackage 4449 - ((f: x: (x // (f x))) 4450 - (qlOverrides."cl-mysql" or (x: {})) 4451 - (import ./quicklisp-to-nix-output/cl-mysql.nix { 4452 - inherit fetchurl; 4453 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4454 - "babel" = quicklisp-to-nix-packages."babel"; 4455 - "cffi" = quicklisp-to-nix-packages."cffi"; 4456 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4457 - })); 4458 - 4459 - 4460 - "cl-mustache" = buildLispPackage 4461 - ((f: x: (x // (f x))) 4462 - (qlOverrides."cl-mustache" or (x: {})) 4463 - (import ./quicklisp-to-nix-output/cl-mustache.nix { 4464 - inherit fetchurl; 4465 - "uiop" = quicklisp-to-nix-packages."uiop"; 4466 - })); 4467 - 4468 - 4469 - "cl-markup" = buildLispPackage 4470 - ((f: x: (x // (f x))) 4471 - (qlOverrides."cl-markup" or (x: {})) 4472 - (import ./quicklisp-to-nix-output/cl-markup.nix { 4473 - inherit fetchurl; 4474 - })); 4475 - 4476 - 4477 - "cl-locale" = buildLispPackage 4478 - ((f: x: (x // (f x))) 4479 - (qlOverrides."cl-locale" or (x: {})) 4480 - (import ./quicklisp-to-nix-output/cl-locale.nix { 4481 - inherit fetchurl; 4482 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4483 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 4484 - "arnesi" = quicklisp-to-nix-packages."arnesi"; 4485 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 4486 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4487 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 4488 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4489 - "collectors" = quicklisp-to-nix-packages."collectors"; 4490 - "iterate" = quicklisp-to-nix-packages."iterate"; 4491 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4492 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 4493 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4494 - })); 4495 - 4496 - 4497 - "cl-libuv" = buildLispPackage 4498 - ((f: x: (x // (f x))) 4499 - (qlOverrides."cl-libuv" or (x: {})) 4500 - (import ./quicklisp-to-nix-output/cl-libuv.nix { 4501 - inherit fetchurl; 4502 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4503 - "babel" = quicklisp-to-nix-packages."babel"; 4504 - "cffi" = quicklisp-to-nix-packages."cffi"; 4505 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4506 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4507 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4508 - })); 4509 - 4510 - 4511 - "cl-l10n" = buildLispPackage 4512 - ((f: x: (x // (f x))) 4513 - (qlOverrides."cl-l10n" or (x: {})) 4514 - (import ./quicklisp-to-nix-output/cl-l10n.nix { 4515 - inherit fetchurl; 4516 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4517 - "babel" = quicklisp-to-nix-packages."babel"; 4518 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4519 - "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 4520 - "cl-l10n-cldr" = quicklisp-to-nix-packages."cl-l10n-cldr"; 4521 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4522 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4523 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 4524 - "cxml" = quicklisp-to-nix-packages."cxml"; 4525 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4526 - "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil"; 4527 - "iterate" = quicklisp-to-nix-packages."iterate"; 4528 - "local-time" = quicklisp-to-nix-packages."local-time"; 4529 - "metabang-bind" = quicklisp-to-nix-packages."metabang-bind"; 4530 - "parse-number" = quicklisp-to-nix-packages."parse-number"; 4531 - "puri" = quicklisp-to-nix-packages."puri"; 4532 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4533 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4534 - })); 4535 - 4536 - 4537 - "cl-json" = buildLispPackage 4538 - ((f: x: (x // (f x))) 4539 - (qlOverrides."cl-json" or (x: {})) 4540 - (import ./quicklisp-to-nix-output/cl-json.nix { 4541 - inherit fetchurl; 4542 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 4543 - })); 4544 - 4545 - 4546 - "cl-jpeg" = buildLispPackage 4547 - ((f: x: (x // (f x))) 4548 - (qlOverrides."cl-jpeg" or (x: {})) 4549 - (import ./quicklisp-to-nix-output/cl-jpeg.nix { 4550 - inherit fetchurl; 4551 - })); 4552 - 4553 - 4554 - "cl-interpol" = buildLispPackage 4555 - ((f: x: (x // (f x))) 4556 - (qlOverrides."cl-interpol" or (x: {})) 4557 - (import ./quicklisp-to-nix-output/cl-interpol.nix { 4558 - inherit fetchurl; 4559 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4560 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 4561 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4562 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4563 - })); 4564 - 4565 - 4566 - "cl-html5-parser" = buildLispPackage 4567 - ((f: x: (x // (f x))) 4568 - (qlOverrides."cl-html5-parser" or (x: {})) 4569 - (import ./quicklisp-to-nix-output/cl-html5-parser.nix { 4570 - inherit fetchurl; 4571 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4572 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4573 - "string-case" = quicklisp-to-nix-packages."string-case"; 4574 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4575 - })); 4576 - 4577 - 4578 - "cl-html-parse" = buildLispPackage 4579 - ((f: x: (x // (f x))) 4580 - (qlOverrides."cl-html-parse" or (x: {})) 4581 - (import ./quicklisp-to-nix-output/cl-html-parse.nix { 4582 - inherit fetchurl; 4583 - })); 4584 - 4585 - 4586 - "cl-html-diff" = buildLispPackage 4587 - ((f: x: (x // (f x))) 4588 - (qlOverrides."cl-html-diff" or (x: {})) 4589 - (import ./quicklisp-to-nix-output/cl-html-diff.nix { 4590 - inherit fetchurl; 4591 - "cl-difflib" = quicklisp-to-nix-packages."cl-difflib"; 4592 - })); 4593 - 4594 - 4595 - "cl-hooks" = buildLispPackage 4596 - ((f: x: (x // (f x))) 4597 - (qlOverrides."cl-hooks" or (x: {})) 4598 - (import ./quicklisp-to-nix-output/cl-hooks.nix { 4599 - inherit fetchurl; 4600 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4601 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 4602 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4603 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 4604 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 4605 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4606 - })); 4607 - 4608 - 4609 - "cl-heap" = buildLispPackage 4610 - ((f: x: (x // (f x))) 4611 - (qlOverrides."cl-heap" or (x: {})) 4612 - (import ./quicklisp-to-nix-output/cl-heap.nix { 4613 - inherit fetchurl; 4614 - })); 4615 - 4616 - 4617 - "cl-gobject-introspection" = buildLispPackage 4618 - ((f: x: (x // (f x))) 4619 - (qlOverrides."cl-gobject-introspection" or (x: {})) 4620 - (import ./quicklisp-to-nix-output/cl-gobject-introspection.nix { 4621 - inherit fetchurl; 4622 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4623 - "babel" = quicklisp-to-nix-packages."babel"; 4624 - "cffi" = quicklisp-to-nix-packages."cffi"; 4625 - "iterate" = quicklisp-to-nix-packages."iterate"; 4626 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4627 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4628 - })); 4629 - 4630 - 4631 - "cl-geometry" = buildLispPackage 4632 - ((f: x: (x // (f x))) 4633 - (qlOverrides."cl-geometry" or (x: {})) 4634 - (import ./quicklisp-to-nix-output/cl-geometry.nix { 4635 - inherit fetchurl; 4636 - "iterate" = quicklisp-to-nix-packages."iterate"; 4637 - "trees" = quicklisp-to-nix-packages."trees"; 4638 - })); 4639 - 4640 - 4641 - "cl-fuse-meta-fs" = buildLispPackage 4642 - ((f: x: (x // (f x))) 4643 - (qlOverrides."cl-fuse-meta-fs" or (x: {})) 4644 - (import ./quicklisp-to-nix-output/cl-fuse-meta-fs.nix { 4645 - inherit fetchurl; 4646 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4647 - "babel" = quicklisp-to-nix-packages."babel"; 4648 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4649 - "cffi" = quicklisp-to-nix-packages."cffi"; 4650 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4651 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4652 - "cl-fuse" = quicklisp-to-nix-packages."cl-fuse"; 4653 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 4654 - "iterate" = quicklisp-to-nix-packages."iterate"; 4655 - "pcall" = quicklisp-to-nix-packages."pcall"; 4656 - "pcall-queue" = quicklisp-to-nix-packages."pcall-queue"; 4657 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 4658 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4659 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 4660 - })); 4661 - 4662 - 4663 - "cl-fuse" = buildLispPackage 4664 - ((f: x: (x // (f x))) 4665 - (qlOverrides."cl-fuse" or (x: {})) 4666 - (import ./quicklisp-to-nix-output/cl-fuse.nix { 4667 - inherit fetchurl; 4668 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4669 - "babel" = quicklisp-to-nix-packages."babel"; 4670 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4671 - "cffi" = quicklisp-to-nix-packages."cffi"; 4672 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4673 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4674 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 4675 - "iterate" = quicklisp-to-nix-packages."iterate"; 4676 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 4677 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4678 - "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 4679 - })); 4680 - 4681 - 4682 - "cl-fad" = buildLispPackage 4683 - ((f: x: (x // (f x))) 4684 - (qlOverrides."cl-fad" or (x: {})) 4685 - (import ./quicklisp-to-nix-output/cl-fad.nix { 4686 - inherit fetchurl; 4687 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4688 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4689 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4690 - "unit-test" = quicklisp-to-nix-packages."unit-test"; 4691 - })); 4692 - 4693 - 4694 - "cl-emb" = buildLispPackage 4695 - ((f: x: (x // (f x))) 4696 - (qlOverrides."cl-emb" or (x: {})) 4697 - (import ./quicklisp-to-nix-output/cl-emb.nix { 4698 - inherit fetchurl; 4699 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4700 - })); 4701 - 4702 - 4703 - "cl-dot" = buildLispPackage 4704 - ((f: x: (x // (f x))) 4705 - (qlOverrides."cl-dot" or (x: {})) 4706 - (import ./quicklisp-to-nix-output/cl-dot.nix { 4707 - inherit fetchurl; 4708 - "uiop" = quicklisp-to-nix-packages."uiop"; 4709 - })); 4710 - 4711 - 4712 - "cl-digraph" = buildLispPackage 4713 - ((f: x: (x // (f x))) 4714 - (qlOverrides."cl-digraph" or (x: {})) 4715 - (import ./quicklisp-to-nix-output/cl-digraph.nix { 4716 - inherit fetchurl; 4717 - })); 4718 - 4719 - 4720 - "cl-dbi" = buildLispPackage 4721 - ((f: x: (x // (f x))) 4722 - (qlOverrides."cl-dbi" or (x: {})) 4723 - (import ./quicklisp-to-nix-output/cl-dbi.nix { 4724 - inherit fetchurl; 4725 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4726 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4727 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4728 - "dbi" = quicklisp-to-nix-packages."dbi"; 4729 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4730 - })); 4731 - 4732 - 4733 - "cl-custom-hash-table" = buildLispPackage 4734 - ((f: x: (x // (f x))) 4735 - (qlOverrides."cl-custom-hash-table" or (x: {})) 4736 - (import ./quicklisp-to-nix-output/cl-custom-hash-table.nix { 4737 - inherit fetchurl; 4738 - })); 4739 - 4740 - 4741 - "cl-cuda" = buildLispPackage 4742 - ((f: x: (x // (f x))) 4743 - (qlOverrides."cl-cuda" or (x: {})) 4744 - (import ./quicklisp-to-nix-output/cl-cuda.nix { 4745 - inherit fetchurl; 4746 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4747 - "babel" = quicklisp-to-nix-packages."babel"; 4748 - "cffi" = quicklisp-to-nix-packages."cffi"; 4749 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4750 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4751 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 4752 - "cl-pattern" = quicklisp-to-nix-packages."cl-pattern"; 4753 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4754 - "cl-reexport" = quicklisp-to-nix-packages."cl-reexport"; 4755 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 4756 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 4757 - "external-program" = quicklisp-to-nix-packages."external-program"; 4758 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4759 - "osicat" = quicklisp-to-nix-packages."osicat"; 4760 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4761 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4762 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4763 - })); 4764 - 4765 - 4766 - "cl-csv" = buildLispPackage 4767 - ((f: x: (x // (f x))) 4768 - (qlOverrides."cl-csv" or (x: {})) 4769 - (import ./quicklisp-to-nix-output/cl-csv.nix { 4770 - inherit fetchurl; 4771 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4772 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 4773 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4774 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 4775 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4776 - "iterate" = quicklisp-to-nix-packages."iterate"; 4777 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 4778 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 4779 - })); 4780 - 4781 - 4782 - "cl-css" = buildLispPackage 4783 - ((f: x: (x // (f x))) 4784 - (qlOverrides."cl-css" or (x: {})) 4785 - (import ./quicklisp-to-nix-output/cl-css.nix { 4786 - inherit fetchurl; 4787 - })); 4788 - 4789 - 4790 - "cl-cookie" = buildLispPackage 4791 - ((f: x: (x // (f x))) 4792 - (qlOverrides."cl-cookie" or (x: {})) 4793 - (import ./quicklisp-to-nix-output/cl-cookie.nix { 4794 - inherit fetchurl; 4795 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4796 - "babel" = quicklisp-to-nix-packages."babel"; 4797 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4798 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 4799 - "local-time" = quicklisp-to-nix-packages."local-time"; 4800 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 4801 - "quri" = quicklisp-to-nix-packages."quri"; 4802 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4803 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4804 - })); 4805 - 4806 - 4807 - "cl-containers" = buildLispPackage 4808 - ((f: x: (x // (f x))) 4809 - (qlOverrides."cl-containers" or (x: {})) 4810 - (import ./quicklisp-to-nix-output/cl-containers.nix { 4811 - inherit fetchurl; 4812 - "asdf-system-connections" = quicklisp-to-nix-packages."asdf-system-connections"; 4813 - "metatilities-base" = quicklisp-to-nix-packages."metatilities-base"; 4814 - "moptilities" = quicklisp-to-nix-packages."moptilities"; 4815 - })); 4816 - 4817 - 4818 - "cl-colors" = buildLispPackage 4819 - ((f: x: (x // (f x))) 4820 - (qlOverrides."cl-colors" or (x: {})) 4821 - (import ./quicklisp-to-nix-output/cl-colors.nix { 4822 - inherit fetchurl; 4823 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4824 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 4825 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 4826 - "lift" = quicklisp-to-nix-packages."lift"; 4827 - })); 4828 - 4829 - 4830 - "cl-cli" = buildLispPackage 4831 - ((f: x: (x // (f x))) 4832 - (qlOverrides."cl-cli" or (x: {})) 4833 - (import ./quicklisp-to-nix-output/cl-cli.nix { 4834 - inherit fetchurl; 4835 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4836 - })); 4837 - 4838 - 4839 - "cl-cffi-gtk" = buildLispPackage 4840 - ((f: x: (x // (f x))) 4841 - (qlOverrides."cl-cffi-gtk" or (x: {})) 4842 - (import ./quicklisp-to-nix-output/cl-cffi-gtk.nix { 4843 - inherit fetchurl; 4844 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4845 - "babel" = quicklisp-to-nix-packages."babel"; 4846 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4847 - "cffi" = quicklisp-to-nix-packages."cffi"; 4848 - "cl-cffi-gtk-cairo" = quicklisp-to-nix-packages."cl-cffi-gtk-cairo"; 4849 - "cl-cffi-gtk-gdk" = quicklisp-to-nix-packages."cl-cffi-gtk-gdk"; 4850 - "cl-cffi-gtk-gdk-pixbuf" = quicklisp-to-nix-packages."cl-cffi-gtk-gdk-pixbuf"; 4851 - "cl-cffi-gtk-gio" = quicklisp-to-nix-packages."cl-cffi-gtk-gio"; 4852 - "cl-cffi-gtk-glib" = quicklisp-to-nix-packages."cl-cffi-gtk-glib"; 4853 - "cl-cffi-gtk-gobject" = quicklisp-to-nix-packages."cl-cffi-gtk-gobject"; 4854 - "cl-cffi-gtk-pango" = quicklisp-to-nix-packages."cl-cffi-gtk-pango"; 4855 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 4856 - "iterate" = quicklisp-to-nix-packages."iterate"; 4857 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4858 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4859 - })); 4860 - 4861 - 4862 - "cl-base64" = buildLispPackage 4863 - ((f: x: (x // (f x))) 4864 - (qlOverrides."cl-base64" or (x: {})) 4865 - (import ./quicklisp-to-nix-output/cl-base64.nix { 4866 - inherit fetchurl; 4867 - "kmrcl" = quicklisp-to-nix-packages."kmrcl"; 4868 - "ptester" = quicklisp-to-nix-packages."ptester"; 4869 - })); 4870 - 4871 - 4872 - "cl-async-ssl" = buildLispPackage 4873 - ((f: x: (x // (f x))) 4874 - (qlOverrides."cl-async-ssl" or (x: {})) 4875 - (import ./quicklisp-to-nix-output/cl-async-ssl.nix { 4876 - inherit fetchurl; 4877 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4878 - "babel" = quicklisp-to-nix-packages."babel"; 4879 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4880 - "cffi" = quicklisp-to-nix-packages."cffi"; 4881 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4882 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4883 - "cl-async" = quicklisp-to-nix-packages."cl-async"; 4884 - "cl-async-base" = quicklisp-to-nix-packages."cl-async-base"; 4885 - "cl-async-util" = quicklisp-to-nix-packages."cl-async-util"; 4886 - "cl-libuv" = quicklisp-to-nix-packages."cl-libuv"; 4887 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4888 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 4889 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 4890 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4891 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4892 - "vom" = quicklisp-to-nix-packages."vom"; 4893 - })); 4894 - 4895 - 4896 - "cl-async-repl" = buildLispPackage 4897 - ((f: x: (x // (f x))) 4898 - (qlOverrides."cl-async-repl" or (x: {})) 4899 - (import ./quicklisp-to-nix-output/cl-async-repl.nix { 4900 - inherit fetchurl; 4901 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4902 - "babel" = quicklisp-to-nix-packages."babel"; 4903 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4904 - "cffi" = quicklisp-to-nix-packages."cffi"; 4905 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4906 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4907 - "cl-async" = quicklisp-to-nix-packages."cl-async"; 4908 - "cl-async-base" = quicklisp-to-nix-packages."cl-async-base"; 4909 - "cl-async-util" = quicklisp-to-nix-packages."cl-async-util"; 4910 - "cl-libuv" = quicklisp-to-nix-packages."cl-libuv"; 4911 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4912 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 4913 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 4914 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4915 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4916 - "vom" = quicklisp-to-nix-packages."vom"; 4917 - })); 4918 - 4919 - 4920 - "cl-async-base" = quicklisp-to-nix-packages."cl-async"; 4921 - 4922 - 4923 - "cl-async" = buildLispPackage 4924 - ((f: x: (x // (f x))) 4925 - (qlOverrides."cl-async" or (x: {})) 4926 - (import ./quicklisp-to-nix-output/cl-async.nix { 4927 - inherit fetchurl; 4928 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4929 - "babel" = quicklisp-to-nix-packages."babel"; 4930 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4931 - "cffi" = quicklisp-to-nix-packages."cffi"; 4932 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4933 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4934 - "cl-libuv" = quicklisp-to-nix-packages."cl-libuv"; 4935 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4936 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 4937 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 4938 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4939 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4940 - "uiop" = quicklisp-to-nix-packages."uiop"; 4941 - "vom" = quicklisp-to-nix-packages."vom"; 4942 - })); 4943 - 4944 - 4945 - "cl-ansi-text" = buildLispPackage 4946 - ((f: x: (x // (f x))) 4947 - (qlOverrides."cl-ansi-text" or (x: {})) 4948 - (import ./quicklisp-to-nix-output/cl-ansi-text.nix { 4949 - inherit fetchurl; 4950 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4951 - "cl-colors2" = quicklisp-to-nix-packages."cl-colors2"; 4952 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4953 - })); 4954 - 4955 - 4956 - "cl-annot" = buildLispPackage 4957 - ((f: x: (x // (f x))) 4958 - (qlOverrides."cl-annot" or (x: {})) 4959 - (import ./quicklisp-to-nix-output/cl-annot.nix { 4960 - inherit fetchurl; 4961 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4962 - })); 4963 - 4964 - 4965 - "cl_plus_ssl" = buildLispPackage 4966 - ((f: x: (x // (f x))) 4967 - (qlOverrides."cl_plus_ssl" or (x: {})) 4968 - (import ./quicklisp-to-nix-output/cl_plus_ssl.nix { 4969 - inherit fetchurl; 4970 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4971 - "babel" = quicklisp-to-nix-packages."babel"; 4972 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4973 - "cffi" = quicklisp-to-nix-packages."cffi"; 4974 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 4975 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4976 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4977 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4978 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4979 - "uiop" = quicklisp-to-nix-packages."uiop"; 4980 - "usocket" = quicklisp-to-nix-packages."usocket"; 4981 - })); 4982 - 4983 - 4984 - "circular-streams" = buildLispPackage 4985 - ((f: x: (x // (f x))) 4986 - (qlOverrides."circular-streams" or (x: {})) 4987 - (import ./quicklisp-to-nix-output/circular-streams.nix { 4988 - inherit fetchurl; 4989 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4990 - "babel" = quicklisp-to-nix-packages."babel"; 4991 - "cffi" = quicklisp-to-nix-packages."cffi"; 4992 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 4993 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 4994 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 4995 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 4996 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4997 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4998 - })); 4999 - 5000 - 5001 - "chunga" = buildLispPackage 5002 - ((f: x: (x // (f x))) 5003 - (qlOverrides."chunga" or (x: {})) 5004 - (import ./quicklisp-to-nix-output/chunga.nix { 5005 - inherit fetchurl; 5006 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 5007 - })); 5008 - 5009 - 5010 - "chipz" = buildLispPackage 5011 - ((f: x: (x // (f x))) 5012 - (qlOverrides."chipz" or (x: {})) 5013 - (import ./quicklisp-to-nix-output/chipz.nix { 5014 - inherit fetchurl; 5015 - })); 5016 - 5017 - 5018 - "check-it" = buildLispPackage 5019 - ((f: x: (x // (f x))) 5020 - (qlOverrides."check-it" or (x: {})) 5021 - (import ./quicklisp-to-nix-output/check-it.nix { 5022 - inherit fetchurl; 5023 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5024 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 5025 - "optima" = quicklisp-to-nix-packages."optima"; 5026 - "stefil" = quicklisp-to-nix-packages."stefil"; 5027 - })); 5028 - 5029 - 5030 - "chanl" = buildLispPackage 5031 - ((f: x: (x // (f x))) 5032 - (qlOverrides."chanl" or (x: {})) 5033 - (import ./quicklisp-to-nix-output/chanl.nix { 5034 - inherit fetchurl; 5035 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5036 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 5037 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 5038 - })); 5039 - 5040 - 5041 - "cffi-uffi-compat" = buildLispPackage 5042 - ((f: x: (x // (f x))) 5043 - (qlOverrides."cffi-uffi-compat" or (x: {})) 5044 - (import ./quicklisp-to-nix-output/cffi-uffi-compat.nix { 5045 - inherit fetchurl; 5046 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5047 - "babel" = quicklisp-to-nix-packages."babel"; 5048 - "cffi" = quicklisp-to-nix-packages."cffi"; 5049 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 5050 - })); 5051 - 5052 - 5053 - "cffi-grovel" = buildLispPackage 5054 - ((f: x: (x // (f x))) 5055 - (qlOverrides."cffi-grovel" or (x: {})) 5056 - (import ./quicklisp-to-nix-output/cffi-grovel.nix { 5057 - inherit fetchurl; 5058 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5059 - "babel" = quicklisp-to-nix-packages."babel"; 5060 - "cffi" = quicklisp-to-nix-packages."cffi"; 5061 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 5062 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 5063 - })); 5064 - 5065 - 5066 - "cffi" = buildLispPackage 5067 - ((f: x: (x // (f x))) 5068 - (qlOverrides."cffi" or (x: {})) 5069 - (import ./quicklisp-to-nix-output/cffi.nix { 5070 - inherit fetchurl; 5071 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5072 - "babel" = quicklisp-to-nix-packages."babel"; 5073 - "cl-json" = quicklisp-to-nix-packages."cl-json"; 5074 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 5075 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 5076 - "uiop" = quicklisp-to-nix-packages."uiop"; 5077 - })); 5078 - 5079 - 5080 - "calispel" = buildLispPackage 5081 - ((f: x: (x // (f x))) 5082 - (qlOverrides."calispel" or (x: {})) 5083 - (import ./quicklisp-to-nix-output/calispel.nix { 5084 - inherit fetchurl; 5085 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5086 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 5087 - "eager-future2" = quicklisp-to-nix-packages."eager-future2"; 5088 - "jpl-queues" = quicklisp-to-nix-packages."jpl-queues"; 5089 - "jpl-util" = quicklisp-to-nix-packages."jpl-util"; 5090 - })); 5091 - 5092 - 5093 - "bordeaux-threads" = buildLispPackage 5094 - ((f: x: (x // (f x))) 5095 - (qlOverrides."bordeaux-threads" or (x: {})) 5096 - (import ./quicklisp-to-nix-output/bordeaux-threads.nix { 5097 - inherit fetchurl; 5098 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5099 - "fiveam" = quicklisp-to-nix-packages."fiveam"; 5100 - })); 5101 - 5102 - 5103 - "blackbird" = buildLispPackage 5104 - ((f: x: (x // (f x))) 5105 - (qlOverrides."blackbird" or (x: {})) 5106 - (import ./quicklisp-to-nix-output/blackbird.nix { 5107 - inherit fetchurl; 5108 - "vom" = quicklisp-to-nix-packages."vom"; 5109 - })); 5110 - 5111 - 5112 - "binpack" = buildLispPackage 5113 - ((f: x: (x // (f x))) 5114 - (qlOverrides."binpack" or (x: {})) 5115 - (import ./quicklisp-to-nix-output/binpack.nix { 5116 - inherit fetchurl; 5117 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5118 - })); 5119 - 5120 - 5121 - "binomial-heap" = buildLispPackage 5122 - ((f: x: (x // (f x))) 5123 - (qlOverrides."binomial-heap" or (x: {})) 5124 - (import ./quicklisp-to-nix-output/binomial-heap.nix { 5125 - inherit fetchurl; 5126 - })); 5127 - 5128 - 5129 - "babel" = buildLispPackage 5130 - ((f: x: (x // (f x))) 5131 - (qlOverrides."babel" or (x: {})) 5132 - (import ./quicklisp-to-nix-output/babel.nix { 5133 - inherit fetchurl; 5134 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5135 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 5136 - })); 5137 - 5138 - 5139 - "asdf-system-connections" = buildLispPackage 5140 - ((f: x: (x // (f x))) 5141 - (qlOverrides."asdf-system-connections" or (x: {})) 5142 - (import ./quicklisp-to-nix-output/asdf-system-connections.nix { 5143 - inherit fetchurl; 5144 - })); 5145 - 5146 - 5147 - "array-utils" = buildLispPackage 5148 - ((f: x: (x // (f x))) 5149 - (qlOverrides."array-utils" or (x: {})) 5150 - (import ./quicklisp-to-nix-output/array-utils.nix { 5151 - inherit fetchurl; 5152 - })); 5153 - 5154 - 5155 - "array-operations" = buildLispPackage 5156 - ((f: x: (x // (f x))) 5157 - (qlOverrides."array-operations" or (x: {})) 5158 - (import ./quicklisp-to-nix-output/array-operations.nix { 5159 - inherit fetchurl; 5160 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5161 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 5162 - "clunit2" = quicklisp-to-nix-packages."clunit2"; 5163 - "let-plus" = quicklisp-to-nix-packages."let-plus"; 5164 - })); 5165 - 5166 - 5167 - "arnesi" = buildLispPackage 5168 - ((f: x: (x // (f x))) 5169 - (qlOverrides."arnesi" or (x: {})) 5170 - (import ./quicklisp-to-nix-output/arnesi.nix { 5171 - inherit fetchurl; 5172 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5173 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 5174 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 5175 - "collectors" = quicklisp-to-nix-packages."collectors"; 5176 - "iterate" = quicklisp-to-nix-packages."iterate"; 5177 - "swank" = quicklisp-to-nix-packages."swank"; 5178 - "symbol-munger" = quicklisp-to-nix-packages."symbol-munger"; 5179 - })); 5180 - 5181 - 5182 - "anaphora" = buildLispPackage 5183 - ((f: x: (x // (f x))) 5184 - (qlOverrides."anaphora" or (x: {})) 5185 - (import ./quicklisp-to-nix-output/anaphora.nix { 5186 - inherit fetchurl; 5187 - "rt" = quicklisp-to-nix-packages."rt"; 5188 - })); 5189 - 5190 - 5191 - "alexandria" = buildLispPackage 5192 - ((f: x: (x // (f x))) 5193 - (qlOverrides."alexandria" or (x: {})) 5194 - (import ./quicklisp-to-nix-output/alexandria.nix { 5195 - inherit fetchurl; 5196 - })); 5197 - 5198 - 5199 - "acclimation" = buildLispPackage 5200 - ((f: x: (x // (f x))) 5201 - (qlOverrides."acclimation" or (x: {})) 5202 - (import ./quicklisp-to-nix-output/acclimation.nix { 5203 - inherit fetchurl; 5204 - })); 5205 - 5206 - 5207 - "access" = buildLispPackage 5208 - ((f: x: (x // (f x))) 5209 - (qlOverrides."access" or (x: {})) 5210 - (import ./quicklisp-to-nix-output/access.nix { 5211 - inherit fetchurl; 5212 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5213 - "anaphora" = quicklisp-to-nix-packages."anaphora"; 5214 - "cl-interpol" = quicklisp-to-nix-packages."cl-interpol"; 5215 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 5216 - "cl-unicode" = quicklisp-to-nix-packages."cl-unicode"; 5217 - "closer-mop" = quicklisp-to-nix-packages."closer-mop"; 5218 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 5219 - "iterate" = quicklisp-to-nix-packages."iterate"; 5220 - "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2"; 5221 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 5222 - })); 5223 - 5224 - 5225 - "_3bmd" = buildLispPackage 5226 - ((f: x: (x // (f x))) 5227 - (qlOverrides."_3bmd" or (x: {})) 5228 - (import ./quicklisp-to-nix-output/_3bmd.nix { 5229 - inherit fetchurl; 5230 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 5231 - "esrap" = quicklisp-to-nix-packages."esrap"; 5232 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 5233 - "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form"; 5234 - })); 5235 - 5236 - 5237 - "_1am" = buildLispPackage 5238 - ((f: x: (x // (f x))) 5239 - (qlOverrides."_1am" or (x: {})) 5240 - (import ./quicklisp-to-nix-output/_1am.nix { 5241 - inherit fetchurl; 5242 - })); 5243 - 5244 - 5245 - }; 5246 - in 5247 - quicklisp-to-nix-packages
-7
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/invocation.emb
··· 1 - "<% @var filename %>" = buildLispPackage 2 - ((f: x: (x // (f x))) 3 - (qlOverrides."<% @var filename %>" or (x: {})) 4 - (import ./quicklisp-to-nix-output/<% @var filename %>.nix { 5 - inherit fetchurl;<% @loop deps %> 6 - "<% @var filename %>" = quicklisp-to-nix-packages."<% @var filename %>";<% @endloop %> 7 - }));
-23
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/nix-package.emb
··· 1 - /* Generated file. */ 2 - args @ { fetchurl, ... }: 3 - rec { 4 - baseName = "<% @var filename %>"; 5 - version = "<% @var version %>";<% @if parasites %> 6 - 7 - parasites = [<% (dolist (p (getf env :parasites)) (format t " \"~A\"" p)) %> ];<% @endif %> 8 - 9 - description = <%= (format nil "~s" (cl-emb::getf-emb "description")) %>; 10 - 11 - deps = [ <% @loop deps %>args."<% @var filename %>" <% @endloop %>]; 12 - 13 - src = fetchurl { 14 - url = "<% @var url %>"; 15 - sha256 = "<% @var sha256 %>"; 16 - }; 17 - 18 - packageName = "<% @var name %>"; 19 - 20 - asdFilesToKeep = ["<% @var name %>.asd"]; 21 - overrides = x: x; 22 - } 23 - /* <%= cl-emb-intern::topenv %> */
-1
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/parasitic-invocation.emb
··· 1 - "<% @var filename %>" = quicklisp-to-nix-packages."<% @var host-filename %>";
-327
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/ql-to-nix.lisp
··· 1 - (unless (find-package :ql-to-nix-util) 2 - (load "util.lisp")) 3 - (unless (find-package :ql-to-nix-quicklisp-bootstrap) 4 - (load "quicklisp-bootstrap.lisp")) 5 - (defpackage :ql-to-nix 6 - (:use :common-lisp :ql-to-nix-util :ql-to-nix-quicklisp-bootstrap)) 7 - (in-package :ql-to-nix) 8 - 9 - ;; We're going to pull in our dependencies at image dumping time in an 10 - ;; isolated quicklisp installation. Unfortunately, that means that we 11 - ;; can't yet access the symbols for our dependencies. We can probably 12 - ;; do better (by, say, loading these dependencies before this file), 13 - ;; but... 14 - 15 - (defvar *required-systems* nil) 16 - 17 - (push :cl-emb *required-systems*) 18 - (wrap :cl-emb register-emb) 19 - (wrap :cl-emb execute-emb) 20 - 21 - (push :external-program *required-systems*) 22 - (wrap :external-program run) 23 - 24 - (push :cl-ppcre *required-systems*) 25 - (wrap :cl-ppcre split) 26 - (wrap :cl-ppcre regex-replace-all) 27 - (wrap :cl-ppcre scan) 28 - 29 - (push :alexandria *required-systems*) 30 - (wrap :alexandria read-file-into-string) 31 - (wrap :alexandria write-string-into-file) 32 - 33 - (push :md5 *required-systems*) 34 - (wrap :md5 md5sum-file) 35 - 36 - (wrap :ql-dist find-system) 37 - (wrap :ql-dist release) 38 - (wrap :ql-dist provided-systems) 39 - (wrap :ql-dist archive-url) 40 - (wrap :ql-dist local-archive-file) 41 - (wrap :ql-dist ensure-local-archive-file) 42 - (wrap :ql-dist archive-md5) 43 - (wrap :ql-dist name) 44 - (wrap :ql-dist short-description) 45 - 46 - (defun escape-filename (s) 47 - (format 48 - nil "~a~{~a~}" 49 - (if (scan "^[a-zA-Z_]" s) "" "_") 50 - (loop 51 - for x in (map 'list 'identity s) 52 - collect 53 - (case x 54 - (#\/ "_slash_") 55 - (#\\ "_backslash_") 56 - (#\_ "__") 57 - (#\. "_dot_") 58 - (#\+ "_plus_") 59 - (t x))))) 60 - 61 - (defvar *system-info-bin* 62 - (let* ((path (uiop:getenv "system-info")) 63 - (path-dir (if (equal #\/ (aref path (1- (length path)))) 64 - path 65 - (concatenate 'string path "/"))) 66 - (pathname (parse-namestring path-dir))) 67 - (merge-pathnames #P"bin/quicklisp-to-nix-system-info" pathname)) 68 - "The path to the quicklisp-to-nix-system-info binary.") 69 - 70 - (defvar *cache-dir* nil 71 - "The folder where fasls will be cached.") 72 - 73 - (defun raw-system-info (system-name) 74 - "Run quicklisp-to-nix-system-info on the given system and return the 75 - form produced by the program." 76 - (when *cache-dir* 77 - (let ((command `(,*system-info-bin* "--cacheDir" ,(namestring *cache-dir*) ,system-name))) 78 - (handler-case 79 - (return-from raw-system-info 80 - (read (make-string-input-stream (uiop:run-program command :output :string)))) 81 - (error (e) 82 - ;; Some systems don't like the funky caching that we're 83 - ;; doing. That's okay. Let's try it uncached before we 84 - ;; give up. 85 - (warn "Unable to use cache for system ~A.~%~A" system-name e))))) 86 - (read (make-string-input-stream (uiop:run-program `(,*system-info-bin* ,system-name) :output :string)))) 87 - 88 - (defvar *system-data-memoization-path* nil 89 - "The path to the folder where fully-resolved system information can 90 - be cached. 91 - 92 - If information for a system is found in this directory, `system-data' 93 - will use it instead of re-computing the system data.") 94 - 95 - (defvar *system-data-in-memory-memoization* 96 - (make-hash-table :test #'equalp)) 97 - 98 - (defun memoized-system-data-path (system) 99 - "Return the path to the file that (if it exists) contains 100 - pre-computed system data." 101 - (when *system-data-memoization-path* 102 - (merge-pathnames 103 - (make-pathname 104 - :name (escape-filename (string system)) 105 - :type "txt") *system-data-memoization-path*))) 106 - 107 - (defun memoized-system-data (system) 108 - "Attempts to locate memoized system data in the path specified by 109 - `*system-data-memoization-path*'." 110 - (multiple-value-bind (value found) (gethash system *system-data-in-memory-memoization*) 111 - (when found 112 - (return-from memoized-system-data (values value found)))) 113 - (let ((path (memoized-system-data-path system))) 114 - (unless path 115 - (return-from memoized-system-data (values nil nil))) 116 - (with-open-file (s path :if-does-not-exist nil :direction :input) 117 - (unless s 118 - (return-from memoized-system-data (values nil nil))) 119 - (return-from memoized-system-data (values (read s) t))))) 120 - 121 - (defun set-memoized-system-data (system data) 122 - "Store system data in the path specified by 123 - `*system-data-memoization-path*'." 124 - (setf (gethash system *system-data-in-memory-memoization*) data) 125 - (let ((path (memoized-system-data-path system))) 126 - (unless path 127 - (return-from set-memoized-system-data data)) 128 - (with-open-file (s path :direction :output :if-exists :supersede) 129 - (format s "~W" data))) 130 - data) 131 - 132 - (defun system-data (system) 133 - "Examine a quicklisp system name and figure out everything that is 134 - required to produce a nix package. 135 - 136 - This function stores results for memoization purposes in files within 137 - `*system-data-memoization-path*'." 138 - (multiple-value-bind (value found) (memoized-system-data system) 139 - (when found 140 - (return-from system-data value))) 141 - (format t "Examining system ~A~%" system) 142 - (let* ((system-info (raw-system-info system)) 143 - (host (getf system-info :host)) 144 - (host-name (getf system-info :host-name)) 145 - (name (getf system-info :name))) 146 - (when host 147 - (return-from system-data 148 - (set-memoized-system-data 149 - system 150 - (list 151 - :system (getf system-info :system) 152 - :host host 153 - :filename (escape-filename name) 154 - :host-filename (escape-filename host-name))))) 155 - 156 - (let* ((url (getf system-info :url)) 157 - (sha256 (getf system-info :sha256)) 158 - (archive-data (nix-prefetch-url url :expected-sha256 sha256)) 159 - (archive-path (getf archive-data :path)) 160 - (archive-md5 (string-downcase 161 - (format nil "~{~16,2,'0r~}" 162 - (map 'list 'identity (md5sum-file archive-path))))) 163 - (stated-md5 (getf system-info :md5)) 164 - (dependencies (getf system-info :dependencies)) 165 - (deps (mapcar (lambda (x) (list :name x :filename (escape-filename x))) 166 - dependencies)) 167 - (description (getf system-info :description)) 168 - (siblings (getf system-info :siblings)) 169 - (release-name (getf system-info :release-name)) 170 - (parasites (getf system-info :parasites)) 171 - (version (regex-replace-all 172 - (format nil "~a-" name) release-name ""))) 173 - (assert (equal archive-md5 stated-md5)) 174 - (set-memoized-system-data 175 - system 176 - (list 177 - :system system 178 - :description description 179 - :sha256 sha256 180 - :url url 181 - :md5 stated-md5 182 - :name name 183 - :filename (escape-filename name) 184 - :deps deps 185 - :dependencies dependencies 186 - :version version 187 - :siblings siblings 188 - :parasites parasites))))) 189 - 190 - (defun parasitic-p (data) 191 - (getf data :host)) 192 - 193 - (defvar *loaded-from* (or *compile-file-truename* *load-truename*) 194 - "Where this source file is located.") 195 - 196 - (defun this-file () 197 - "Where this source file is located or an error." 198 - (or *loaded-from* (error "Not sure where this file is located!"))) 199 - 200 - (defun nix-expression (system) 201 - (execute-emb 202 - "nix-package" 203 - :env (system-data system))) 204 - 205 - (defun nix-invocation (system) 206 - (let ((data (system-data system))) 207 - (if (parasitic-p data) 208 - (execute-emb 209 - "parasitic-invocation" 210 - :env data) 211 - (execute-emb 212 - "invocation" 213 - :env data)))) 214 - 215 - (defun systems-closure (systems) 216 - (let* 217 - ((seen (make-hash-table :test 'equal))) 218 - (loop 219 - with queue := systems 220 - with res := nil 221 - while queue 222 - for next := (pop queue) 223 - for old := (gethash next seen) 224 - for data := (unless old (system-data next)) 225 - for deps := (getf data :dependencies) 226 - for siblings := (getf data :siblings) 227 - unless old do 228 - (progn 229 - (push next res) 230 - (setf queue (append queue deps))) 231 - do (setf (gethash next seen) t) 232 - finally (return res)))) 233 - 234 - (defun ql-to-nix (target-directory) 235 - (let* 236 - ((systems 237 - (split 238 - (format nil "~%") 239 - (read-file-into-string 240 - (format nil "~a/quicklisp-to-nix-systems.txt" target-directory)))) 241 - (closure (systems-closure systems)) 242 - (invocations 243 - (loop for s in closure 244 - collect (list :code (nix-invocation s))))) 245 - (loop 246 - for s in closure 247 - do (unless (parasitic-p (system-data s)) 248 - (write-string-into-file 249 - (nix-expression s) 250 - (format nil "~a/quicklisp-to-nix-output/~a.nix" 251 - target-directory (escape-filename s)) 252 - :if-exists :supersede))) 253 - (write-string-into-file 254 - (execute-emb 255 - "top-package" 256 - :env (list :invocations invocations)) 257 - (format nil "~a/quicklisp-to-nix.nix" target-directory) 258 - :if-exists :supersede))) 259 - 260 - (defun print-usage-and-quit () 261 - "Does what it says on the tin." 262 - (format *error-output* "Usage: 263 - ~A [--help] [--cacheSystemInfoDir <path>] [--cacheFaslDir <path>] <work-dir> 264 - Arguments: 265 - --cacheSystemInfoDir Store computed system info in the given directory 266 - --cacheFaslDir Store intermediate fast load files in the given directory 267 - --help Print usage and exit 268 - <work-dir> Path to directory with quicklisp-to-nix-systems.txt 269 - " (uiop:argv0)) 270 - (uiop:quit 2)) 271 - 272 - (defun main () 273 - "Make it go" 274 - (let ((argv (uiop:command-line-arguments)) 275 - work-directory 276 - cache-system-info-directory 277 - cache-fasl-directory) 278 - (loop :while argv :for arg = (pop argv) :do 279 - (cond 280 - ((equal arg "--cacheSystemInfoDir") 281 - (unless argv 282 - (format *error-output* "--cacheSystemInfoDir requires an argument~%") 283 - (print-usage-and-quit)) 284 - (setf cache-system-info-directory (pop argv))) 285 - 286 - ((equal arg "--cacheFaslDir") 287 - (unless argv 288 - (format *error-output* "--cacheFaslDir requires an argument~%") 289 - (print-usage-and-quit)) 290 - (setf cache-fasl-directory (pop argv))) 291 - 292 - ((equal arg "--help") 293 - (print-usage-and-quit)) 294 - 295 - (t 296 - (when argv 297 - (format *error-output* "Only one positional argument allowed~%") 298 - (print-usage-and-quit)) 299 - (setf work-directory arg)))) 300 - 301 - (when cache-system-info-directory 302 - (setf cache-system-info-directory (pathname-as-directory (pathname cache-system-info-directory))) 303 - (ensure-directories-exist cache-system-info-directory)) 304 - 305 - (labels 306 - ((make-go (*cache-dir*) 307 - (format t "Caching fasl files in ~A~%" *cache-dir*) 308 - 309 - (let ((*system-data-memoization-path* cache-system-info-directory)) 310 - (ql-to-nix work-directory)))) 311 - (if cache-fasl-directory 312 - (make-go (truename (pathname-as-directory (parse-namestring (ensure-directories-exist cache-fasl-directory))))) 313 - (with-temporary-directory (*cache-dir*) 314 - (make-go *cache-dir*)))))) 315 - 316 - (defun dump-image () 317 - "Make an executable" 318 - (dolist (system *required-systems*) 319 - (asdf:make system)) 320 - (register-emb "nix-package" (merge-pathnames #p"nix-package.emb" (this-file))) 321 - (register-emb "invocation" (merge-pathnames #p"invocation.emb" (this-file))) 322 - (register-emb "parasitic-invocation" (merge-pathnames #p"parasitic-invocation.emb" (this-file))) 323 - (register-emb "top-package" (merge-pathnames #p"top-package.emb" (this-file))) 324 - (setf uiop:*image-entry-point* #'main) 325 - (setf uiop:*lisp-interaction* nil) 326 - (setf *loaded-from* nil) ;; Break the link to our source 327 - (uiop:dump-image "quicklisp-to-nix" :executable t))
-76
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/quicklisp-bootstrap.lisp
··· 1 - (unless (find-package :ql-to-nix-util) 2 - (load "ql-to-nix-util.lisp")) 3 - (defpackage :ql-to-nix-quicklisp-bootstrap 4 - (:use :common-lisp :ql-to-nix-util) 5 - (:export #:with-quicklisp) 6 - (:documentation 7 - "This package provides a way to create a temporary quicklisp installation.")) 8 - (in-package :ql-to-nix-quicklisp-bootstrap) 9 - 10 - (declaim (optimize (debug 3) (speed 0) (space 0) (compilation-speed 0) (safety 3))) 11 - 12 - ;; This file cannot have any dependencies beyond quicklisp and asdf. 13 - ;; Otherwise, we'll miss some dependencies! 14 - 15 - (defvar *quicklisp* 16 - (namestring (pathname-as-directory (uiop:getenv "quicklisp"))) 17 - "The path to the nix quicklisp package.") 18 - 19 - (defun prepare-quicklisp-dir (target-dir quicklisp-prototype-dir) 20 - "Install quicklisp into the specified `target-dir'. 21 - 22 - `quicklisp-prototype-dir' should be the path to the quicklisp nix 23 - package." 24 - (ensure-directories-exist target-dir) 25 - (dolist (subdir '(#P"dists/quicklisp/" #P"tmp/" #P"local-projects/" #P"quicklisp/")) 26 - (ensure-directories-exist (merge-pathnames subdir target-dir))) 27 - (with-open-file (s (merge-pathnames #P"dists/quicklisp/enabled.txt" target-dir) :direction :output :if-exists :supersede) 28 - (format s "1~%")) 29 - (uiop:copy-file 30 - (merge-pathnames #P"lib/common-lisp/quicklisp/quicklisp-distinfo.txt" quicklisp-prototype-dir) 31 - (merge-pathnames #P"dists/quicklisp/distinfo.txt" target-dir)) 32 - (uiop:copy-file 33 - (merge-pathnames #P"lib/common-lisp/quicklisp/asdf.lisp" quicklisp-prototype-dir) 34 - (merge-pathnames #P"asdf.lisp" target-dir)) 35 - (uiop:copy-file 36 - (merge-pathnames #P"lib/common-lisp/quicklisp/setup.lisp" quicklisp-prototype-dir) 37 - (merge-pathnames #P"setup.lisp" target-dir)) 38 - (copy-directory-tree 39 - (merge-pathnames #P"lib/common-lisp/quicklisp/quicklisp/" quicklisp-prototype-dir) 40 - (merge-pathnames #P"quicklisp/" target-dir))) 41 - 42 - (defun call-with-quicklisp (function &key (target-dir :temp) (cache-dir :temp)) 43 - "Invoke the given function with the path to a quicklisp installation. 44 - 45 - Quicklisp will be loaded before the function is called. `target-dir' 46 - can either be a pathname for the place where quicklisp should be 47 - installed or `:temp' to request installation in a temporary directory. 48 - `cache-dir' can either be a pathname for a place to store fasls or 49 - `:temp' to request caching in a temporary directory." 50 - (when (find-package :ql) 51 - (error "Already loaded quicklisp in this process")) 52 - (labels 53 - ((make-ql (ql-dir) 54 - (prepare-quicklisp-dir ql-dir *quicklisp*) 55 - (with-temporary-asdf-cache (ql-dir) 56 - (load (merge-pathnames #P"setup.lisp" ql-dir)) 57 - (if (eq :temp cache-dir) 58 - (funcall function ql-dir) 59 - (with-asdf-cache (ql-dir cache-dir) 60 - (funcall function ql-dir)))))) 61 - (if (eq :temp target-dir) 62 - (with-temporary-directory (dir) 63 - (make-ql dir)) 64 - (make-ql target-dir)))) 65 - 66 - (defmacro with-quicklisp ((quicklisp-dir) (&key (cache-dir :temp)) &body body) 67 - "Install quicklisp in a temporary directory, load it, bind 68 - `quicklisp-dir' to the path where quicklisp was installed, and then 69 - evaluate `body'. 70 - 71 - `cache-dir' can either be a pathname for a place to store fasls or 72 - `:temp' to request caching in a temporary directory." 73 - `(call-with-quicklisp 74 - (lambda (,quicklisp-dir) 75 - ,@body) 76 - :cache-dir ,cache-dir))
-493
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/system-info.lisp
··· 1 - (unless (find-package :ql-to-nix-util) 2 - (load "util.lisp")) 3 - (unless (find-package :ql-to-nix-quicklisp-bootstrap) 4 - (load "quicklisp-bootstrap.lisp")) 5 - (defpackage :ql-to-nix-system-info 6 - (:use :common-lisp :ql-to-nix-quicklisp-bootstrap :ql-to-nix-util) 7 - (:export #:dump-image)) 8 - (in-package :ql-to-nix-system-info) 9 - 10 - (eval-when (:compile-toplevel :load-toplevel :execute) 11 - (defparameter *implementation-systems* 12 - (append 13 - #+sbcl(list :sb-posix :sb-bsd-sockets :sb-rotate-byte :sb-cltl2 14 - :sb-introspect :sb-rt :sb-concurrency))) 15 - (mapcar (function require) *implementation-systems*)) 16 - 17 - (declaim (optimize (debug 3) (speed 0) (space 0) (compilation-speed 0) (safety 3))) 18 - 19 - ;; This file cannot have any dependencies beyond quicklisp and asdf. 20 - ;; Otherwise, we'll miss some dependencies! 21 - 22 - ;; (Implementation-provided dependencies are special, though) 23 - 24 - ;; We can't load quicklisp until runtime (at which point we'll create 25 - ;; an isolated quicklisp installation). These wrapper functions are 26 - ;; nicer than funcalling intern'd symbols every time we want to talk 27 - ;; to quicklisp. 28 - (wrap :ql apply-load-strategy) 29 - (wrap :ql compute-load-strategy) 30 - (wrap :ql show-load-strategy) 31 - (wrap :ql quicklisp-systems) 32 - (wrap :ql ensure-installed) 33 - (wrap :ql quicklisp-releases) 34 - (wrap :ql-dist archive-md5) 35 - (wrap :ql-dist archive-url) 36 - (wrap :ql-dist ensure-local-archive-file) 37 - (wrap :ql-dist find-system) 38 - (wrap :ql-dist local-archive-file) 39 - (wrap :ql-dist name) 40 - (wrap :ql-dist provided-systems) 41 - (wrap :ql-dist release) 42 - (wrap :ql-dist short-description) 43 - (wrap :ql-dist system-file-name) 44 - (wrap :ql-impl-util call-with-quiet-compilation) 45 - 46 - (defvar *version* (uiop:getenv "version") 47 - "The version number of this program") 48 - 49 - (defvar *main-system* nil 50 - "The name of the system we're trying to extract info from.") 51 - 52 - (defvar *found-parasites* (make-hash-table :test #'equalp) 53 - "Names of systems which have been identified as parasites. 54 - 55 - A system is parasitic if its name doesn't match the name of the file 56 - it is defined in. So, for example, if foo and foo-bar are both 57 - defined in a file named foo.asd, foo would be the host system and 58 - foo-bar would be a parasitic system. 59 - 60 - Parasitic systems are not generally loaded without loading the host 61 - system first. 62 - 63 - Keys are system names. Values are unspecified.") 64 - 65 - (defvar *found-dependencies* (make-hash-table :test #'equalp) 66 - "Hash table containing the set of dependencies discovered while installing a system. 67 - 68 - Keys are system names. Values are unspecified.") 69 - 70 - (defun decode-asdf-dependency (name) 71 - "Translates an asdf system dependency description into a system name. 72 - 73 - For example, translates (:version :foo \"1.0\") into \"foo\"." 74 - (etypecase name 75 - (symbol 76 - (setf name (symbol-name name))) 77 - (string) 78 - (cons 79 - (ecase (first name) 80 - (:version 81 - (warn "Discarding version information ~A" name) 82 - ;; There's nothing we can do about this. If the version we 83 - ;; have around is good enough, then we're golden. If it isn't 84 - ;; good enough, then we'll error out and let a human figure it 85 - ;; out. 86 - (setf name (second name)) 87 - (return-from decode-asdf-dependency 88 - (decode-asdf-dependency name))) 89 - 90 - (:feature 91 - (if (find (second name) *features*) 92 - (return-from decode-asdf-dependency 93 - (decode-asdf-dependency (third name))) 94 - (progn 95 - (warn "Dropping dependency due to missing feature: ~A" name) 96 - (return-from decode-asdf-dependency nil)))) 97 - 98 - (:require 99 - ;; This probably isn't a dependency we can satisfy using 100 - ;; quicklisp, but we might as well try anyway. 101 - (return-from decode-asdf-dependency 102 - (decode-asdf-dependency (second name))))))) 103 - (string-downcase name)) 104 - 105 - (defun found-new-parasite (system-name) 106 - "Record that the given system has been identified as a parasite." 107 - (setf system-name (decode-asdf-dependency system-name)) 108 - (setf (gethash system-name *found-parasites*) t) 109 - (when (nth-value 1 (gethash system-name *found-dependencies*)) 110 - (error "Found dependency on parasite"))) 111 - 112 - (defun known-parasite-p (system-name) 113 - "Have we previously identified this system as a parasite?" 114 - (nth-value 1 (gethash system-name *found-parasites*))) 115 - 116 - (defun found-parasites () 117 - "Return a vector containing all identified parasites." 118 - (let ((systems (make-array (hash-table-size *found-parasites*) :fill-pointer 0))) 119 - (loop :for system :being :the :hash-keys :of *found-parasites* :do 120 - (vector-push system systems)) 121 - systems)) 122 - 123 - (defvar *track-dependencies* nil 124 - "When this variable is nil, found-new-dependency will not record 125 - depdendencies.") 126 - 127 - (defun parasitic-relationship-p (potential-host potential-parasite) 128 - "Returns t if potential-host and potential-parasite have a parasitic relationship. 129 - 130 - See `*found-parasites*'." 131 - (let ((host-ql-system (find-system potential-host)) 132 - (parasite-ql-system (find-system potential-parasite))) 133 - (and host-ql-system parasite-ql-system 134 - (not (equal (name host-ql-system) 135 - (name parasite-ql-system))) 136 - (equal (system-file-name host-ql-system) 137 - (system-file-name parasite-ql-system))))) 138 - 139 - (defun found-new-dependency (name) 140 - "Record that the given system has been identified as a dependency. 141 - 142 - The named system may not be recorded as a dependency. It may be left 143 - out for any number of reasons. For example, if `*track-dependencies*' 144 - is nil then this function does nothing. If the named system isn't a 145 - quicklisp system, this function does nothing." 146 - (setf name (decode-asdf-dependency name)) 147 - (unless name 148 - (return-from found-new-dependency)) 149 - (unless *track-dependencies* 150 - (return-from found-new-dependency)) 151 - (when (known-parasite-p name) 152 - (return-from found-new-dependency)) 153 - (when (parasitic-relationship-p *main-system* name) 154 - (found-new-parasite name) 155 - (return-from found-new-dependency)) 156 - (unless (find-system name) 157 - (return-from found-new-dependency)) 158 - (setf (gethash name *found-dependencies*) t)) 159 - 160 - (defun forget-dependency (name) 161 - "Whoops. Did I say that was a dependency? My bad. 162 - 163 - Be very careful using this function! You can remove a system from the 164 - dependency list, but you can't remove other effects associated with 165 - this system. For example, transitive dependencies might still be in 166 - the dependency list." 167 - (setf name (decode-asdf-dependency name)) 168 - (remhash name *found-dependencies*)) 169 - 170 - (defun found-dependencies () 171 - "Return a vector containing all identified dependencies." 172 - (let ((systems (make-array (hash-table-size *found-dependencies*) :fill-pointer 0))) 173 - (loop :for system :being :the :hash-keys :of *found-dependencies* :do 174 - (vector-push system systems)) 175 - systems)) 176 - 177 - (defun host-system (system-name) 178 - "If the given system is a parasite, return the name of the system that is its host. 179 - 180 - See `*found-parasites*'." 181 - (let* ((system (find-system system-name)) 182 - (host-file (system-file-name system))) 183 - (unless (equalp host-file system-name) 184 - host-file))) 185 - 186 - (defun get-loaded (system) 187 - "Try to load the named system using quicklisp and record any 188 - dependencies quicklisp is aware of. 189 - 190 - Unlike `our-quickload', this function doesn't attempt to install 191 - missing dependencies." 192 - ;; Let's get this party started! 193 - (let* ((strategy (compute-load-strategy system)) 194 - (ql-systems (quicklisp-systems strategy))) 195 - (dolist (dep ql-systems) 196 - (found-new-dependency (name dep))) 197 - (show-load-strategy strategy) 198 - (labels 199 - ((make-go () 200 - (apply-load-strategy strategy))) 201 - (call-with-quiet-compilation #'make-go) 202 - (let ((asdf-system (asdf:find-system system))) 203 - ;; If ASDF says that it needed a system, then we should 204 - ;; probably track that. 205 - (dolist (asdf-dep (asdf:component-sideway-dependencies asdf-system)) 206 - (found-new-dependency asdf-dep)) 207 - (dolist (asdf-dep (asdf:system-defsystem-depends-on asdf-system)) 208 - (found-new-dependency asdf-dep)))))) 209 - 210 - (defun our-quickload (system) 211 - "Attempt to install a package like quicklisp would, but record any 212 - dependencies that are detected during the install." 213 - (setf system (string-downcase system)) 214 - ;; Load it quickly, but do it OUR way. Turns out our way is very 215 - ;; similar to the quicklisp way... 216 - (let ((already-tried (make-hash-table :test #'equalp))) ;; Case insensitive 217 - (tagbody 218 - retry 219 - (handler-case 220 - (get-loaded system) 221 - (asdf/find-component:missing-dependency (e) 222 - (let ((required-by (asdf/find-component:missing-required-by e)) 223 - (missing (asdf/find-component:missing-requires e))) 224 - (unless (typep required-by 'asdf:system) 225 - (error e)) 226 - (when (gethash missing already-tried) 227 - (error "Dependency loop? ~A" missing)) 228 - (setf (gethash missing already-tried) t) 229 - (let ((parasitic-p (parasitic-relationship-p *main-system* missing))) 230 - (if parasitic-p 231 - (found-new-parasite missing) 232 - (found-new-dependency missing)) 233 - ;; We always want to track the dependencies of systems 234 - ;; that share an asd file with the main system. The 235 - ;; whole asd file should be loadable. Otherwise, we 236 - ;; don't want to include transitive dependencies. 237 - (let ((*track-dependencies* parasitic-p)) 238 - (our-quickload missing))) 239 - (format t "Attempting to load ~A again~%" system) 240 - (go retry))))))) 241 - 242 - (defvar *blacklisted-parasites* 243 - #("hu.dwim.stefil/documentation" ;; This system depends on :hu.dwim.stefil.test, but it should depend on hu.dwim.stefil/test 244 - "named-readtables/doc" ;; Dependency cycle between named-readtabes and mgl-pax 245 - "symbol-munger-test" ;; Dependency cycle between lisp-unit2 and symbol-munger 246 - "cl-postgres-simple-date-tests" ;; Dependency cycle between cl-postgres and simple-date 247 - "cl-containers/with-variates" ;; Symbol conflict between cl-variates:next-element, metabang.utilities:next-element 248 - "serapeum/docs" ;; Weird issue with FUN-INFO redefinition 249 - "spinneret/cl-markdown" ;; Weird issue with FUN-INFO redefinition 250 - "spinneret/ps" ;; Weird issue with FUN-INFO redefinition 251 - "spinneret/tests") ;; Weird issue with FUN-INFO redefinition 252 - "A vector of systems that shouldn't be loaded by `quickload-parasitic-systems'. 253 - 254 - These systems are known to be troublemakers. In some sense, all 255 - parasites are troublemakers (you shouldn't define parasitic systems!). 256 - However, these systems prevent us from generating nix packages and are 257 - thus doubly evil.") 258 - 259 - (defvar *blacklisted-parasites-table* 260 - (let ((ht (make-hash-table :test #'equalp))) 261 - (loop :for system :across *blacklisted-parasites* :do 262 - (setf (gethash system ht) t)) 263 - ht) 264 - "A hash table where each entry in `*blacklisted-parasites*' is an 265 - entry in the table.") 266 - 267 - (defun blacklisted-parasite-p (system-name) 268 - "Returns non-nil if the named system is blacklisted" 269 - (nth-value 1 (gethash system-name *blacklisted-parasites-table*))) 270 - 271 - (defun quickload-parasitic-systems (system) 272 - "Attempt to load all the systems defined in the same asd as the named system. 273 - 274 - Blacklisted systems are skipped. Dependencies of the identified 275 - parasitic systems will be tracked." 276 - (let* ((asdf-system (asdf:find-system system)) 277 - (source-file (asdf:system-source-file asdf-system))) 278 - (cond 279 - (source-file 280 - (loop :for system-name :being :the :hash-keys :of asdf/find-system::*registered-systems* :do 281 - ; for an unclear reason, a literal 0 which is not a key in the hash table gets observed 282 - (when (and (gethash system-name asdf/find-system::*registered-systems*) 283 - (parasitic-relationship-p system system-name) 284 - (not (blacklisted-parasite-p system-name))) 285 - (found-new-parasite system-name) 286 - (let ((*track-dependencies* t)) 287 - (our-quickload system-name))))) 288 - (t 289 - (unless (or (equal "uiop" system) 290 - (equal "asdf" system)) 291 - (warn "No source file for system ~A. Can't identify parasites." system)))))) 292 - 293 - (defun determine-dependencies (system) 294 - "Load the named system and return a sorted vector containing all the 295 - quicklisp systems that were loaded to satisfy dependencies. 296 - 297 - This function should probably only be called once per process! 298 - Subsequent calls will miss dependencies identified by earlier calls." 299 - (tagbody 300 - retry 301 - (restart-case 302 - (let ((*standard-output* (make-broadcast-stream)) 303 - (*trace-output* (make-broadcast-stream)) 304 - (*main-system* system) 305 - (*track-dependencies* t)) 306 - (our-quickload system) 307 - (quickload-parasitic-systems system)) 308 - (try-again () 309 - :report "Start the quickload over again" 310 - (go retry)) 311 - (die () 312 - :report "Just give up and die" 313 - (uiop:quit 1)))) 314 - 315 - ;; Systems can't depend on themselves! 316 - (forget-dependency system) 317 - (values)) 318 - 319 - (defun parasitic-system-data (parasite-system) 320 - "Return a plist of information about the given known-parastic system. 321 - 322 - Sometimes we are asked to provide information about a system that is 323 - actually a parasite. The only correct response is to point them 324 - toward the host system. The nix package for the host system should 325 - have all the dependencies for this parasite already recorded. 326 - 327 - The plist is only meant to be consumed by other parts of 328 - quicklisp-to-nix." 329 - (let ((host-system (host-system parasite-system))) 330 - (list 331 - :system parasite-system 332 - :host host-system 333 - :name (string-downcase (format nil "~a" parasite-system)) 334 - :host-name (string-downcase (format nil "~a" host-system))))) 335 - 336 - (defun system-data (system) 337 - "Produce a plist describing a system. 338 - 339 - The plist is only meant to be consumed by other parts of 340 - quicklisp-to-nix." 341 - (when (host-system system) 342 - (return-from system-data 343 - (parasitic-system-data system))) 344 - 345 - (determine-dependencies system) 346 - (let* 347 - ((dependencies (sort (found-dependencies) #'string<)) 348 - (parasites (coerce (sort (found-parasites) #'string<) 'list)) 349 - (ql-system (find-system system)) 350 - (ql-release (release ql-system)) 351 - (ql-sibling-systems (provided-systems ql-release)) 352 - (url (archive-url ql-release)) 353 - (local-archive (local-archive-file ql-release)) 354 - (local-url (format nil "file://~a" (pathname local-archive))) 355 - (archive-data 356 - (progn 357 - (ensure-local-archive-file ql-release) 358 - ;; Stuff this archive into the nix store. It was almost 359 - ;; certainly going to end up there anyway (since it will 360 - ;; probably be fetchurl'd for a nix package). Also, putting 361 - ;; it into the store also gives us the SHA we need. 362 - (nix-prefetch-url local-url))) 363 - (ideal-md5 (archive-md5 ql-release)) 364 - (raw-dependencies (coerce dependencies 'list)) 365 - (name (string-downcase (format nil "~a" system))) 366 - (ql-sibling-names 367 - (remove name (mapcar 'name ql-sibling-systems) 368 - :test 'equal)) 369 - (dependencies raw-dependencies) 370 - (description 371 - (or 372 - (ignore-errors (asdf:system-description (asdf:find-system system))) 373 - "System lacks description")) 374 - (release-name (short-description ql-release))) 375 - (list 376 - :system system 377 - :description description 378 - :sha256 (getf archive-data :sha256) 379 - :url url 380 - :md5 ideal-md5 381 - :name name 382 - :dependencies dependencies 383 - :siblings ql-sibling-names 384 - :release-name release-name 385 - :parasites parasites))) 386 - 387 - (defvar *error-escape-valve* *error-output* 388 - "When `*error-output*' is rebound to inhibit spew, this stream will 389 - still produce output.") 390 - 391 - (defun print-usage-and-quit () 392 - "Describe how to use this program... and then exit." 393 - (format *error-output* "Usage: 394 - ~A [--cacheDir <dir>] [--silent] [--debug] [--help|-h] <system-name> 395 - Arguments: 396 - --cacheDir Store (and look for) compiled lisp files in the given directory 397 - --verbose Show compilation output 398 - --debug Enter the debugger when a fatal error is encountered 399 - --help Print usage and exit 400 - <system-name> The quicklisp system to examine 401 - " (or (uiop:argv0) "quicklisp-to-nix-system-info")) 402 - (uiop:quit 2)) 403 - 404 - (defun main () 405 - "Make it go." 406 - (let ((argv (uiop:command-line-arguments)) 407 - cache-dir 408 - target-system 409 - verbose-p 410 - debug-p) 411 - (handler-bind 412 - ((warning 413 - (lambda (w) 414 - (format *error-escape-valve* "~A~%" w))) 415 - (error 416 - (lambda (e) 417 - (if debug-p 418 - (invoke-debugger e) 419 - (progn 420 - (format *error-escape-valve* "~ 421 - Failed to extract system info. Details are below. ~ 422 - Run with --debug and/or --verbose for more info. 423 - ~A~%" e) 424 - (uiop:quit 1)))))) 425 - (loop :while argv :do 426 - (cond 427 - ((equal "--cacheDir" (first argv)) 428 - (pop argv) 429 - (unless argv 430 - (error "--cacheDir expects an argument")) 431 - (setf cache-dir (first argv)) 432 - (pop argv)) 433 - 434 - ((equal "--verbose" (first argv)) 435 - (setf verbose-p t) 436 - (pop argv)) 437 - 438 - ((equal "--debug" (first argv)) 439 - (setf debug-p t) 440 - (pop argv)) 441 - 442 - ((or (equal "--help" (first argv)) 443 - (equal "-h" (first argv))) 444 - (print-usage-and-quit)) 445 - 446 - (t 447 - (setf target-system (pop argv)) 448 - (when argv 449 - (error "Can only operate on one system"))))) 450 - 451 - (unless target-system 452 - (print-usage-and-quit)) 453 - 454 - (when cache-dir 455 - (setf cache-dir (pathname-as-directory (parse-namestring cache-dir)))) 456 - 457 - (mapcar (function require) *implementation-systems*) 458 - 459 - (with-quicklisp (dir) (:cache-dir (or cache-dir :temp)) 460 - (declare (ignore dir)) 461 - 462 - (let (system-data) 463 - (let ((*error-output* (if verbose-p 464 - *error-output* 465 - (make-broadcast-stream))) 466 - (*standard-output* (if verbose-p 467 - *standard-output* 468 - (make-broadcast-stream))) 469 - (*trace-output* (if verbose-p 470 - *trace-output* 471 - (make-broadcast-stream)))) 472 - (format *error-output* 473 - "quicklisp-to-nix-system-info ~A~%ASDF ~A~%Quicklisp ~A~%Compiler ~A ~A~%" 474 - *version* 475 - (asdf:asdf-version) 476 - (funcall (intern "CLIENT-VERSION" :ql)) 477 - (lisp-implementation-type) 478 - (lisp-implementation-version)) 479 - (setf system-data (system-data target-system))) 480 - 481 - (cond 482 - (system-data 483 - (format t "~W~%" system-data) 484 - (uiop:quit 0)) 485 - (t 486 - (format *error-output* "Failed to determine system data~%") 487 - (uiop:quit 1)))))))) 488 - 489 - (defun dump-image () 490 - "Make an executable" 491 - (setf uiop:*image-entry-point* #'main) 492 - (setf uiop:*lisp-interaction* nil) 493 - (uiop:dump-image "quicklisp-to-nix-system-info" :executable t))
-13
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/top-package.emb
··· 1 - {stdenv, lib, fetchurl, pkgs, clwrapper}: 2 - let quicklisp-to-nix-packages = rec { 3 - inherit stdenv lib fetchurl clwrapper pkgs quicklisp-to-nix-packages; 4 - 5 - callPackage = pkgs.lib.callPackageWith quicklisp-to-nix-packages; 6 - buildLispPackage = callPackage ./define-package.nix; 7 - qlOverrides = callPackage ./quicklisp-to-nix-overrides.nix {}; 8 - <% @loop invocations %> 9 - <% @var code %> 10 - <% @endloop %> 11 - }; 12 - in 13 - quicklisp-to-nix-packages
-178
pkgs/development/lisp-modules-obsolete/quicklisp-to-nix/util.lisp
··· 1 - (defpackage :ql-to-nix-util 2 - (:use :common-lisp) 3 - (:export #:nix-prefetch-url #:wrap #:pathname-as-directory #:copy-directory-tree #:with-temporary-directory #:sym #:with-temporary-asdf-cache #:with-asdf-cache) 4 - (:documentation 5 - "A collection of useful functions and macros that ql-to-nix will use.")) 6 - (in-package :ql-to-nix-util) 7 - 8 - (declaim (optimize (debug 3) (speed 0) (space 0) (compilation-speed 0) (safety 3))) 9 - 10 - ;; This file cannot have any dependencies beyond quicklisp and asdf. 11 - ;; Otherwise, we'll miss some dependencies! 12 - 13 - (defun pathname-as-directory (pathname) 14 - "Given a pathname, make it into a path to a directory. 15 - 16 - This is sort of like putting a / at the end of the path." 17 - (unless (pathname-name pathname) 18 - (return-from pathname-as-directory pathname)) 19 - (let* ((old-dir (pathname-directory pathname)) 20 - (old-name (pathname-name pathname)) 21 - (old-type (pathname-type pathname)) 22 - (last-dir 23 - (cond 24 - (old-type 25 - (format nil "~A.~A" old-name old-type)) 26 - (t 27 - old-name))) 28 - (new-dir (if old-dir 29 - (concatenate 'list old-dir (list last-dir)) 30 - (list :relative last-dir)))) 31 - 32 - (make-pathname :name nil :directory new-dir :type nil :defaults pathname))) 33 - 34 - (defvar *nix-prefetch-url-bin* 35 - (namestring (merge-pathnames #P"bin/nix-prefetch-url" (pathname-as-directory (uiop:getenv "nix-prefetch-url")))) 36 - "The path to the nix-prefetch-url binary") 37 - 38 - (defun nix-prefetch-url (url &key expected-sha256) 39 - "Invoke the nix-prefetch-url program. 40 - 41 - Returns a plist with two keys. 42 - :sha256 => The sha of the fetched file 43 - :path => The path to the file in the nix store" 44 - (when expected-sha256 45 - (setf expected-sha256 (list expected-sha256))) 46 - (let* ((stdout 47 - (with-output-to-string (so) 48 - (uiop:run-program 49 - `(,*nix-prefetch-url-bin* "--print-path" ,url ,@expected-sha256) 50 - :output so))) 51 - (stream (make-string-input-stream stdout))) 52 - (list 53 - :sha256 (read-line stream) 54 - :path (read-line stream)))) 55 - 56 - (defmacro wrap (package symbol-name) 57 - "Create a function which looks up the named symbol at runtime and 58 - invokes it with the same arguments. 59 - 60 - If you can't load a system until runtime, this macro gives you an 61 - easier way to write 62 - (funcall (intern \"SYMBOL-NAME\" :package-name) arg) 63 - Instead, you can write 64 - (wrap :package-name symbol-name) 65 - (symbol-name arg)" 66 - (let ((args (gensym "ARGS"))) 67 - `(defun ,symbol-name (&rest ,args) 68 - (apply (sym ',package ',symbol-name) ,args)))) 69 - 70 - (defun copy-directory-tree (src-dir target-dir) 71 - "Recursively copy every file in `src-dir' into `target-dir'. 72 - 73 - This function traverses symlinks." 74 - (when (or (not (pathname-directory target-dir)) 75 - (pathname-name target-dir)) 76 - (error "target-dir must be a dir")) 77 - (when (or (not (pathname-directory src-dir)) 78 - (pathname-name src-dir)) 79 - (error "src-dir must be a dir")) 80 - (let ((src-wild (make-pathname :name :wild :type :wild :defaults src-dir))) 81 - (dolist (entity (uiop:directory* src-wild)) 82 - (if (pathname-name entity) 83 - (uiop:copy-file entity (make-pathname :type (pathname-type entity) :name (pathname-name entity) :defaults target-dir)) 84 - (let ((new-target-dir 85 - (make-pathname 86 - :directory (concatenate 'list (pathname-directory target-dir) (last (pathname-directory entity)))))) 87 - (ensure-directories-exist new-target-dir) 88 - (copy-directory-tree entity new-target-dir)))))) 89 - 90 - (defun call-with-temporary-directory (function) 91 - "Create a temporary directory, invoke the given function by passing 92 - in the pathname for the directory, and then delete the directory." 93 - (let* ((dir (uiop:run-program '("mktemp" "-d") :output :line)) 94 - (parsed (parse-namestring dir)) 95 - (parsed-as-dir (pathname-as-directory parsed))) 96 - (assert (uiop:absolute-pathname-p dir)) 97 - (unwind-protect 98 - (funcall function parsed-as-dir) 99 - (uiop:delete-directory-tree 100 - parsed-as-dir 101 - :validate 102 - (lambda (path) 103 - (and (uiop:absolute-pathname-p path) 104 - (equal (subseq (pathname-directory path) 0 (length (pathname-directory parsed-as-dir))) 105 - (pathname-directory parsed-as-dir)))))))) 106 - 107 - (defmacro with-temporary-directory ((dir-name) &body body) 108 - "See `call-with-temporary-directory'." 109 - `(call-with-temporary-directory (lambda (,dir-name) ,@body))) 110 - 111 - (defun sym (package sym) 112 - "A slightly less picky version of `intern'. 113 - 114 - Unlike `intern', the `sym' argument can be a string or a symbol. If 115 - it is a symbol, then the `symbol-name' is `intern'ed into the 116 - specified package. 117 - 118 - The arguments are also reversed so that the package comes first." 119 - (etypecase sym 120 - (symbol (setf sym (symbol-name sym))) 121 - (string)) 122 - (intern sym package)) 123 - 124 - (defvar *touch-bin* 125 - (namestring (merge-pathnames #P"bin/touch" (pathname-as-directory (uiop:getenv "touch")))) 126 - "Path to the touch binary.") 127 - 128 - (defvar *cache-dir* nil 129 - "When asdf cache remapping is in effect (see `with-asdf-cache'), 130 - this stores the path to the fasl cache directory.") 131 - (defvar *src-dir* nil 132 - "When asdf cache remapping is in effect (see `with-asdf-cache'), 133 - this stores the path to the source directory. 134 - 135 - Only lisp files within the source directory will have their fasls 136 - cached in the cache directory.") 137 - 138 - (defun remap (path prefix) 139 - "Implements the cache policy described in `with-asdf-cache'." 140 - (declare (ignore prefix)) 141 - (let* ((ql-dirs (pathname-directory *src-dir*)) 142 - (ql-dirs-length (length ql-dirs)) 143 - (path-prefix (subseq (pathname-directory path) 0 ql-dirs-length)) 144 - (path-postfix (subseq (pathname-directory path) ql-dirs-length))) 145 - (unless (equal path-prefix ql-dirs) 146 - (return-from remap path)) 147 - (let ((result (make-pathname :directory (concatenate 'list (pathname-directory *cache-dir*) path-postfix) :defaults path))) 148 - (with-open-file (s result :direction :probe :if-does-not-exist nil) 149 - (when s 150 - (uiop:run-program `(,*touch-bin* ,(namestring result))))) 151 - result))) 152 - 153 - (defmacro with-temporary-asdf-cache ((src-dir) &body body) 154 - "Create a temporary directory, and then use it as the ASDF cache 155 - directory for source files in `src-dir'. 156 - 157 - See `with-asdf-cache'." 158 - (let ((tmp-dir (gensym "ORIGINAL-VALUE"))) 159 - `(with-temporary-directory (,tmp-dir) 160 - (with-asdf-cache (,src-dir ,tmp-dir) 161 - ,@body)))) 162 - 163 - (defmacro with-asdf-cache ((src-dir cache-dir) &body body) 164 - "When ASDF compiles a lisp file in `src-dir', store the fasl in `cache-dir'." 165 - (let ((original-value (gensym "ORIGINAL-VALUE"))) 166 - `(let ((,original-value asdf:*output-translations-parameter*) 167 - (*src-dir* ,src-dir) 168 - (*cache-dir* ,cache-dir)) 169 - (unwind-protect 170 - (progn 171 - (asdf:initialize-output-translations 172 - '(:output-translations 173 - :INHERIT-CONFIGURATION 174 - ;; FIXME: Shouldn't we only be remaping things 175 - ;; actually in the src dir? Oh well. 176 - (t (:function remap)))) 177 - ,@body) 178 - (asdf:initialize-output-translations ,original-value)))))
-85
pkgs/development/lisp-modules-obsolete/quicklisp.sh
··· 1 - #! /usr/bin/env bash 2 - 3 - op= 4 - end_param= 5 - args=() 6 - cmd_args=() 7 - 8 - while let "$#"; do 9 - if test -n "$end_param" || test "$1" = "${1#--}"; then 10 - if test -n "$op"; then 11 - args[${#args[@]}]="$1"; 12 - else 13 - op="$1" 14 - fi 15 - shift 16 - else 17 - case "$1" in 18 - --) 19 - end_param=1; shift; 20 - ;; 21 - --quicklisp-dir) 22 - NIX_QUICKLISP_DIR="$2"; 23 - shift; shift; 24 - ;; 25 - --help) 26 - echo "Operation: init, run, update, install {system-name}" 27 - exit 0; 28 - ;; 29 - *) 30 - echo "Unknown parameter [$1]" >&2 31 - exit 2; 32 - ;; 33 - esac 34 - fi 35 - done 36 - 37 - NIX_QUICKLISP_DIR="${NIX_QUICKLISP_DIR:-${HOME}/quicklisp}" 38 - 39 - case "$op" in 40 - '') echo "Specify an operation: init, install, run, update" 41 - ;; 42 - install) 43 - NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh"; 44 - 45 - cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" 46 - cmd_args[${#cmd_args[@]}]="(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" 47 - for i in "${args[@]}"; do 48 - cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" 49 - cmd_args[${#cmd_args[@]}]="(ql:quickload :$i)" 50 - done 51 - cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" 52 - cmd_args[${#cmd_args[@]}]="$NIX_LISP_QUIT" 53 - 54 - "@clwrapper@/bin/common-lisp.sh" "${cmd_args[@]}" 55 - ;; 56 - update) 57 - NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" 58 - 59 - ln -sfT "@out@/lib/common-lisp/quicklisp/asdf.lisp" "$NIX_QUICKLISP_DIR/asdf.lisp" 60 - cp -f "@out@/lib/common-lisp/quicklisp/setup.lisp" "$NIX_QUICKLISP_DIR/setup.lisp" 61 - 62 - if test -d "$NIX_QUICKLISP_DIR/quicklisp"; then 63 - mv "$NIX_QUICKLISP_DIR/quicklisp"{,-old-$(date +%Y%m%d-%H%M%S)} 64 - fi 65 - 66 - cp -rfT "@out@/lib/common-lisp/quicklisp/quicklisp" "$NIX_QUICKLISP_DIR/quicklisp" 67 - 68 - "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ 69 - "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "$NIX_LISP_EXEC_CODE" \ 70 - "(ql:update-all-dists)" "$NIX_LISP_EXEC_CODE" "$NIX_LISP_QUIT" 71 - ;; 72 - init) 73 - mkdir -p "$NIX_QUICKLISP_DIR"/{dists/quicklisp,tmp,local-projects} 74 - echo 1 > "$NIX_QUICKLISP_DIR/dists/quicklisp/enabled.txt" 75 - cp -f "@out@/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" \ 76 - "$NIX_QUICKLISP_DIR/dists/quicklisp/distinfo.txt" 77 - 78 - NIX_QUICKLISP_DIR="$NIX_QUICKLISP_DIR" "$0" update 79 - ;; 80 - run) 81 - NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" 82 - "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ 83 - "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "${args[@]}" 84 - ;; 85 - esac
-38
pkgs/development/lisp-modules-obsolete/shell.nix
··· 1 - with import ../../../default.nix {}; 2 - let 3 - openssl_lib_marked = import ./openssl-lib-marked.nix; 4 - self = rec { 5 - name = "ql-to-nix"; 6 - env = buildEnv { name = name; paths = buildInputs; }; 7 - buildInputs = [ 8 - gcc 9 - openssl fuse libuv libmysqlclient libfixposix libev sqlite 10 - freetds 11 - lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info 12 - ]; 13 - CPATH = lib.makeSearchPath "include" 14 - [ libfixposix 15 - ]; 16 - LD_LIBRARY_PATH = lib.makeLibraryPath 17 - [ cairo 18 - freetds 19 - fuse 20 - gdk-pixbuf 21 - glib 22 - gobject-introspection 23 - gtk3 24 - libev 25 - libfixposix 26 - libmysqlclient 27 - libuv 28 - openblas 29 - openssl 30 - openssl_lib_marked 31 - pango 32 - postgresql 33 - sqlite 34 - webkitgtk 35 - ] 36 - + ":${libmysqlclient}/lib/mysql"; 37 - }; 38 - in stdenv.mkDerivation self