chore(3p/lisp): remove unused lisp packages
Change-Id: Id259341e251170c1caeeab5c9fcb6fbd973372f8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4816 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
7e5fddf4dc
commit
9f0671edc9
4 changed files with 0 additions and 110 deletions
26
third_party/lisp/checkl.nix
vendored
26
third_party/lisp/checkl.nix
vendored
|
@ -1,26 +0,0 @@
|
||||||
{ depot, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (depot.nix.buildLisp) bundled;
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "rpav";
|
|
||||||
repo = "CheckL";
|
|
||||||
rev = "80328800d047fef9b6e32dfe6bdc98396aee3cc9";
|
|
||||||
sha256 = "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx";
|
|
||||||
};
|
|
||||||
|
|
||||||
in depot.nix.buildLisp.library {
|
|
||||||
name = "checkl";
|
|
||||||
deps = with depot.third_party.lisp; [
|
|
||||||
(bundled "asdf")
|
|
||||||
marshal
|
|
||||||
fiveam
|
|
||||||
];
|
|
||||||
|
|
||||||
srcs = map (f: src + ("/" + f)) [
|
|
||||||
"package.lisp"
|
|
||||||
"checkl.lisp"
|
|
||||||
"formalize.lisp"
|
|
||||||
];
|
|
||||||
}
|
|
16
third_party/lisp/cl-arrows.nix
vendored
16
third_party/lisp/cl-arrows.nix
vendored
|
@ -1,16 +0,0 @@
|
||||||
{ depot, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
src = pkgs.fetchgit {
|
|
||||||
url = "https://github.com/nightfly19/cl-arrows.git";
|
|
||||||
rev = "cbb46b69a7de40f1161c9caaf6cef93b3af9994f";
|
|
||||||
hash = "sha256:0la2vr10510vmx29w9p3sj1qi1sych0crcpy4kdgxzn8m7kqlli0";
|
|
||||||
};
|
|
||||||
in depot.nix.buildLisp.library {
|
|
||||||
name = "cl-arrows";
|
|
||||||
deps = [];
|
|
||||||
srcs = [
|
|
||||||
"${src}/packages.lisp"
|
|
||||||
"${src}/arrows.lisp"
|
|
||||||
];
|
|
||||||
}
|
|
27
third_party/lisp/data-sift.nix
vendored
27
third_party/lisp/data-sift.nix
vendored
|
@ -1,27 +0,0 @@
|
||||||
{ depot, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "archimag";
|
|
||||||
repo = "data-sift";
|
|
||||||
rev = "fd617d8200cdcc1b87ecf45ab59bb38e8b16ef7e";
|
|
||||||
sha256 = "1v7gf0x4ibjzp0c56n9m77hxdgwcm9356zlk5n4l3fx4i0hj6146";
|
|
||||||
};
|
|
||||||
|
|
||||||
in depot.nix.buildLisp.library {
|
|
||||||
name = "data-sift";
|
|
||||||
deps = with depot.third_party.lisp; [
|
|
||||||
cl-ppcre
|
|
||||||
parse-number
|
|
||||||
alexandria
|
|
||||||
puri
|
|
||||||
];
|
|
||||||
|
|
||||||
srcs = map (f: src + ("/src/" + f)) [
|
|
||||||
"packages.lisp"
|
|
||||||
"conditions.lisp"
|
|
||||||
"sift.lisp"
|
|
||||||
];
|
|
||||||
|
|
||||||
}
|
|
41
third_party/lisp/restas.nix
vendored
41
third_party/lisp/restas.nix
vendored
|
@ -1,41 +0,0 @@
|
||||||
{ depot, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "archimag";
|
|
||||||
repo = "restas";
|
|
||||||
rev = "81bbbab6b36f81f846f78e71232e9d3d15f6d952";
|
|
||||||
sha256 = "00ng6jik1lwjw3bbxhijy8s0ml24lgm73liwrr01gcsb0r6wrjjn";
|
|
||||||
};
|
|
||||||
|
|
||||||
in depot.nix.buildLisp.library {
|
|
||||||
name = "restas";
|
|
||||||
deps = with depot.third_party.lisp; [
|
|
||||||
cffi
|
|
||||||
hunchentoot
|
|
||||||
bordeaux-threads
|
|
||||||
routes
|
|
||||||
alexandria
|
|
||||||
data-sift
|
|
||||||
];
|
|
||||||
|
|
||||||
srcs = map (f: src + ("/src/" + f)) [
|
|
||||||
"packages.lisp"
|
|
||||||
"special.lisp"
|
|
||||||
"declarations.lisp"
|
|
||||||
"errors.lisp"
|
|
||||||
"render.lisp"
|
|
||||||
"context.lisp"
|
|
||||||
"module.lisp"
|
|
||||||
"route.lisp"
|
|
||||||
"decorators.lisp"
|
|
||||||
"vhost.lisp"
|
|
||||||
"hunchentoot.lisp"
|
|
||||||
"policy.lisp"
|
|
||||||
];
|
|
||||||
|
|
||||||
brokenOn = [
|
|
||||||
"ecl" # dynamic cffi
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Reference in a new issue