nixdots/home/packages/cli/scripts/packages/gh-notify/default.nix
2024-07-27 01:07:07 +02:00

13 lines
281 B
Nix

{pkgs, ...}: (pkgs.writeShellApplication {
name = "gh-notify";
runtimeInputs = with pkgs; [
coreutils
findutils
gawk
libnotify
gh # we also need gh-notify plugin, this assumes it's installed
];
text = ''
${builtins.readFile ./gh-notify.sh}
'';
})