refactor(3p/lisp): Use sources from nixpkgs where possible

nixpkgs includes a lispPackages set which is generated from something.
In the meantime, we pretty much never update our Lisp deps.

This commit ties our sources to nixpkgs.lispPackages where the desired
package is included in nixpkgs (which is actually most of them!)

Change-Id: I520a006535980271b2fa4e0ed4e34029475dcbef
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4331
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2021-12-15 00:32:27 +03:00 committed by tazjin
parent b0614b5c83
commit e9bfa84aaf
49 changed files with 172 additions and 359 deletions

View file

@ -1,12 +1,7 @@
# Common Lisp library for decompressing deflate, zlib, gzip, and bzip2 data
{ depot, pkgs, ... }:
let src = pkgs.fetchFromGitHub {
owner = "froydnj";
repo = "chipz";
rev = "75dfbc660a5a28161c57f115adf74c8a926bfc4d";
sha256 = "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg";
};
let src = with pkgs; srcOnly lispPackages.chipz;
in depot.nix.buildLisp.library {
name = "chipz";
deps = [ (depot.nix.buildLisp.bundled "asdf") ];