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

@ -2,12 +2,8 @@
{ depot, pkgs, ...}:
let
src = pkgs.fetchFromGitHub {
owner = "edicl";
repo = "hunchentoot";
rev = "585b45b6b873f2da421fdf456b61860ab5868207";
sha256 = "13nazwix067mdclq9vgjhsi2vpr57a8dz51dd5d3h99ccsq4mik5";
};
src = with pkgs; srcOnly lispPackages.hunchentoot;
url-rewrite = depot.nix.buildLisp.library {
name = "url-rewrite";