diff options
Diffstat (limited to 'third_party/lisp/unix-opts.nix')
-rw-r--r-- | third_party/lisp/unix-opts.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/lisp/unix-opts.nix b/third_party/lisp/unix-opts.nix index 138da1c7faf9..99117d8beb2a 100644 --- a/third_party/lisp/unix-opts.nix +++ b/third_party/lisp/unix-opts.nix @@ -1,14 +1,14 @@ # unix-opts is a portable command line argument parser -{ pkgs, ...}: +{ depot, ...}: let - src = pkgs.third_party.fetchFromGitHub { + src = depot.third_party.fetchFromGitHub { owner = "libre-man"; repo = "unix-opts"; rev = "b805050b074bd860edd18cfc8776fdec666ec36e"; sha256 = "0j93dkc9f77wz1zfspm7q1scx6wwbm6jhk8vl2rm6bfd0n8scxla"; }; -in pkgs.nix.buildLisp.library { +in depot.nix.buildLisp.library { name = "unix-opts"; srcs = [ |