From e9bfa84aafc65896e2fffead2f1ef4853bdd59af Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 15 Dec 2021 00:32:27 +0300 Subject: 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 --- third_party/lisp/prove.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'third_party/lisp/prove.nix') diff --git a/third_party/lisp/prove.nix b/third_party/lisp/prove.nix index 358049865e..af48149920 100644 --- a/third_party/lisp/prove.nix +++ b/third_party/lisp/prove.nix @@ -1,11 +1,6 @@ { depot, pkgs, ... }: -let - src = pkgs.fetchgit { - url = "https://github.com/fukamachi/prove.git"; - rev = "5d71f02795b89e36f34e8c7d50e69b67ec6ca2de"; - hash = "sha256:0ca6ha3zhmckq3ad9lxm6sbg4i0hg3m81xhan4dkxd3x9898jzpc"; - }; +let src = with pkgs; srcOnly lispPackages.prove; in depot.nix.buildLisp.library { name = "prove"; -- cgit 1.4.1