configuration/packages/gopass-ydotool.nix
2022-09-06 09:37:59 -07:00

13 lines
264 B
Nix

{ resholve
# Dependencies
, bash
, gopass
, ydotool
}:
resholve.writeScriptBin "gopass-ydotool" {
interpreter = "${bash}/bin/bash";
inputs = [ gopass ydotool ];
execer = [ "cannot:${gopass}/bin/gopass" ];
} (builtins.readFile ./resources/gopass-ydotool)