configuration/packages/add-words.nix
Andrew Kvalheim b7eabca46a Use resholve
2022-08-02 11:37:41 -07:00

14 lines
268 B
Nix

{ resholve
# Dependencies
, bash
, coreutils
, git
, moreutils
}:
resholve.writeScriptBin "add-words" {
interpreter = "${bash}/bin/bash";
inputs = [ coreutils git moreutils ];
execer = [ "cannot:${git}/bin/git" ];
} (builtins.readFile ./resources/add-words)