Prefer <depot> and <universe>

Consuming the aliases that I defined in `NIX_PATH` in `.envrc`.
This commit is contained in:
William Carroll 2020-01-23 16:33:04 +00:00
parent e76843d337
commit 7f37acf548

View file

@ -1,10 +1,13 @@
{ tpkgs ? (import (builtins.fetchGit "https://git.tazj.in/") {}), ... }:
{ depot ? import <depot> {},
universe ? import <universe> {},
...
}:
tpkgs.nix.buildLisp.program {
depot.nix.buildLisp.program {
name = "unit-testing";
deps = with tpkgs.third_party.lisp; [
(import ./prove.nix {})
deps = with universe.third_party.lisp; [
prove
];
srcs = [