bins/rpr: remove unused input

This commit is contained in:
Aaron Bieber 2023-05-19 06:14:41 -06:00
parent ec8e0777da
commit cffce13c5a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ tea, gh, _1password, hut }:
{ tea, gh, hut }:
let
teaBin = "${tea}/bin/tea";

View File

@ -2,7 +2,7 @@
let
rage = pkgs.writeScriptBin "rage" (import ../bins/rage.nix { inherit pkgs; });
rpr = pkgs.writeScriptBin "rpr"
(import ../bins/rpr.nix { inherit (pkgs) _1password hut gh tea; });
(import ../bins/rpr.nix { inherit (pkgs) hut gh tea; });
promnesia =
pkgs.python3Packages.callPackage ../pkgs/promnesia.nix { inherit pkgs; };
hpi = pkgs.python3Packages.callPackage ../pkgs/hpi.nix { inherit pkgs; };