diff options
author | Vincent Ambo <mail@tazj.in> | 2022-01-05T11·44+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-05T13·28+0000 |
commit | 9f0671edc9e26b145d0f694e07c44718cbb5b389 (patch) | |
tree | 21438da20706aefb0c1218b30fb46b8aeff2860a /third_party/lisp/checkl.nix | |
parent | 7e5fddf4dc377fe4383f13bcf1cb9671a53719bf (diff) |
chore(3p/lisp): remove unused lisp packages r/3520
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>
Diffstat (limited to 'third_party/lisp/checkl.nix')
-rw-r--r-- | third_party/lisp/checkl.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/third_party/lisp/checkl.nix b/third_party/lisp/checkl.nix deleted file mode 100644 index 4fb92cb37937..000000000000 --- a/third_party/lisp/checkl.nix +++ /dev/null @@ -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" - ]; -} |