summaryrefslogtreecommitdiffstats
path: root/pkgs/development/lisp-modules
diff options
context:
space:
mode:
authorKasper Gałkowski <k@galkowski.xyz>2023-07-14 21:18:52 +0200
committerKasper Gałkowski <k@galkowski.xyz>2023-07-14 21:37:59 +0200
commitacd0161ba27062a0e72b2faf81662ef36dde1827 (patch)
tree21bbd7e15dca49f1c7f41184af0c14d37b357643 /pkgs/development/lisp-modules
parent0d84933bfe2fec2a5de540c07287ab69428409da (diff)
sbcl.pkgs: use Quicklisp versions of tar and tar-file
Out-of-quicklisp version that was manually specified in packages.nix stopped building after Quicklisp dist bump, because of a change in one of its dependencies. Switching to using the one imported straight from Quicklisp, in imported.nix. See https://github.com/NixOS/nixpkgs/pull/238790#issuecomment-1622040328
Diffstat (limited to 'pkgs/development/lisp-modules')
-rw-r--r--pkgs/development/lisp-modules/packages.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix
index 648ffc12473f..a963daf7f36e 100644
--- a/pkgs/development/lisp-modules/packages.nix
+++ b/pkgs/development/lisp-modules/packages.nix
@@ -141,60 +141,6 @@ let
};
};
- cl-tar-file = build-asdf-system {
- pname = "cl-tar-file";
- version = "v0.2.1";
- src = pkgs.fetchzip {
- url = let
- rev = "0c10bc82f14702c97a26dc25ce075b5d3a2347d1";
- in "https://gitlab.common-lisp.net/cl-tar/cl-tar-file/-/archive/${rev}/cl-tar-file-${rev}.tar.gz";
- sha256 = "0i8j05fkgdqy4c4pqj0c68sh4s3klpx9kc5wp73qwzrl3xqd2svy";
- };
- lispLibs = with super; [
- alexandria
- babel
- trivial-gray-streams
- _40ants-doc
- salza2
- chipz
- flexi-streams
- parachute
- ];
- systems = [ "tar-file" "tar-file/test" ];
- };
-
- cl-tar = build-asdf-system {
- pname = "cl-tar";
- version = "v0.2.1";
- src = pkgs.fetchzip {
- url = let
- rev = "7c6e07a10c93d9e311f087b5f6328cddd481669a";
- in "https://gitlab.common-lisp.net/cl-tar/cl-tar/-/archive/${rev}/cl-tar-${rev}.tar.gz";
- sha256 = "0wp23cs3i6a89dibifiz6559la5nk58d1n17xvbxq4nrl8cqsllf";
- };
- lispLibs = with super; [
- alexandria
- babel
- local-time
- split-sequence
- _40ants-doc
- parachute
- osicat
- ] ++ [ self.cl-tar-file ];
- systems = [
- "tar"
- "tar/common-extract"
- "tar/simple-extract"
- "tar/extract"
- "tar/create"
- "tar/docs"
- "tar/test"
- "tar/create-test"
- "tar/extract-test"
- "tar/simple-extract-test"
- ];
- };
-
lessp = build-asdf-system {
pname = "lessp";
version = "0.2-f8a9e4664";