mirror of
https://github.com/ItsDrike/nixdots
synced 2025-01-30 18:44:34 +00:00
17 lines
283 B
Nix
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}
|
|
'';
|
|
})
|
|
|
|
|