configuration/packages/add-words.nix

15 lines
268 B
Nix
Raw Normal View History

2022-08-02 18:34:45 +00:00
{ resholve
2022-06-08 20:53:00 +00:00
# Dependencies
2022-08-02 18:34:45 +00:00
, bash
, coreutils
2022-06-08 20:53:00 +00:00
, git
, moreutils
}:
2022-08-02 18:34:45 +00:00
resholve.writeScriptBin "add-words" {
interpreter = "${bash}/bin/bash";
inputs = [ coreutils git moreutils ];
execer = [ "cannot:${git}/bin/git" ];
} (builtins.readFile ./resources/add-words)