configuration/packages/gopass-env.nix
2023-07-10 15:59:02 -07:00

12 lines
262 B
Nix

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