configuration/packages/gopass-ydotool.nix

14 lines
264 B
Nix
Raw Normal View History

2022-09-02 04:46:05 +00:00
{ 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)