configuration/packages/gopass-ydotool.nix

17 lines
293 B
Nix
Raw Permalink Normal View History

2022-09-02 04:46:05 +00:00
{ resholve
# Dependencies
, bash
, gopass
, ydotool
}:
2023-11-28 17:46:03 +00:00
let
inherit (builtins) readFile;
in
2022-09-02 04:46:05 +00:00
resholve.writeScriptBin "gopass-ydotool" {
interpreter = "${bash}/bin/bash";
inputs = [ gopass ydotool ];
execer = [ "cannot:${gopass}/bin/gopass" ];
2023-11-28 17:46:03 +00:00
} (readFile ./resources/gopass-ydotool)