mirror of
https://github.com/ItsDrike/nixdots
synced 2025-04-04 13:22:27 +00:00
13 lines
281 B
Nix
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}
|
|
'';
|
|
})
|