Merge pull request #147705 from nagy/lisp-cl-shellwords

lispPackages: add cl-shellwords
This commit is contained in:
7c6f434c 2021-11-28 14:49:50 +00:00 committed by GitHub
commit 48bc3c6205
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,29 @@
/* Generated file. */
args @ { fetchurl, ... }:
rec {
baseName = "cl-shellwords";
version = "20150923-git";
description = "Common Lisp port of Ruby's shellwords.rb, for escaping and
splitting strings to be passed to a shell.";
deps = [ args."cl-ppcre" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz";
sha256 = "1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk";
};
packageName = "cl-shellwords";
asdFilesToKeep = ["cl-shellwords.asd"];
overrides = x: x;
}
/* (SYSTEM cl-shellwords DESCRIPTION
Common Lisp port of Ruby's shellwords.rb, for escaping and
splitting strings to be passed to a shell.
SHA256 1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk URL
http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz
MD5 c2c62c6a2ce4ed2590d60707ead2e084 NAME cl-shellwords FILENAME
cl-shellwords DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES
(cl-ppcre) VERSION 20150923-git SIBLINGS (cl-shellwords-test) PARASITES NIL) */

View file

@ -71,6 +71,7 @@ cl-prevalence
cl-protobufs cl-protobufs
cl-qprint cl-qprint
cl-reexport cl-reexport
cl-shellwords
cl-slice cl-slice
cl-smt-lib cl-smt-lib
cl-smtp cl-smtp

View file

@ -4024,6 +4024,15 @@ let quicklisp-to-nix-packages = rec {
})); }));
"cl-shellwords" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-shellwords" or (x: {}))
(import ./quicklisp-to-nix-output/cl-shellwords.nix {
inherit fetchurl;
"cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
}));
"cl-reexport" = buildLispPackage "cl-reexport" = buildLispPackage
((f: x: (x // (f x))) ((f: x: (x // (f x)))
(qlOverrides."cl-reexport" or (x: {})) (qlOverrides."cl-reexport" or (x: {}))