nixdots/home/packages/cli/scripts/packages/gh-notify/default.nix
2024-06-21 15:54:02 +02:00

17 lines
283 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}
'';
})