Prefer <depot> and <universe>
Consuming the aliases that I defined in `NIX_PATH` in `.envrc`.
This commit is contained in:
parent
e76843d337
commit
7f37acf548
1 changed files with 7 additions and 4 deletions
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue