diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-23T16·33+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-23T16·33+0000 |
commit | 7f37acf548307448c92bd567de096d5734ac6f0d (patch) | |
tree | 4656f8241f0ffa4f33db7802ba7d9bb9dab3ee21 | |
parent | e76843d337546fe83dbbc9eba9cff52ca6767ef7 (diff) |
Prefer <depot> and <universe>
Consuming the aliases that I defined in `NIX_PATH` in `.envrc`.
-rw-r--r-- | common-lisp/default.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/common-lisp/default.nix b/common-lisp/default.nix index b3c51eea704c..0969c7abf7e2 100644 --- a/common-lisp/default.nix +++ b/common-lisp/default.nix @@ -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 = [ |