chore: Rename pkgs->depot in all Nix file headers

This commit is contained in:
Vincent Ambo 2020-02-21 12:47:29 +00:00
parent 5d9d84f4cf
commit 4bbbb58cb5
113 changed files with 318 additions and 349 deletions

View file

@ -1,17 +1,17 @@
# cl-prevalence is an implementation of object prevalence for CL (i.e.
# an in-memory database)
{ pkgs, ... }:
{ depot, ... }:
let src = pkgs.third_party.fetchFromGitHub {
let src = depot.third_party.fetchFromGitHub {
owner = "40ants";
repo = "cl-prevalence";
rev = "da3ed6c4594b1c2fca90c178c1993973c4bf16c9";
sha256 = "0bq905hv1626dl6b7s0zn4lbdh608g1pxaljl1fda6pwp9hmj95a";
};
in pkgs.nix.buildLisp.library {
in depot.nix.buildLisp.library {
name = "cl-prevalence";
deps = with pkgs.third_party.lisp; [
deps = with depot.third_party.lisp; [
s-xml
s-sysdeps
];