configuration/packages/git-remote.nix

17 lines
273 B
Nix
Raw Permalink Normal View History

2022-08-02 18:34:45 +00:00
{ resholve
# Dependencies
2022-08-02 18:34:45 +00:00
, bash
, git
2022-08-02 18:34:45 +00:00
, gnugrep
}:
2023-11-28 17:46:03 +00:00
let
inherit (builtins) readFile;
in
2023-09-29 17:15:00 +00:00
resholve.writeScriptBin "git-remote" {
2022-08-02 18:34:45 +00:00
interpreter = "${bash}/bin/bash";
inputs = [ git gnugrep ];
execer = [ "cannot:${git}/bin/git" ];
2023-11-28 17:46:03 +00:00
} (readFile ./resources/git-remote)