]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/profanity/default.nix
Initial commit published for NUR
[perso/Immae/Config/Nix/NUR.git] / overlays / profanity / default.nix
1 self: super: {
2 profanity = (super.profanity.override {
3 notifySupport = true;
4 inherit (self) libnotify gpgme gdk_pixbuf;
5 python = self.python3;
6 }).overrideAttrs (old: rec {
7 configureFlags = old.configureFlags ++ [ "--enable-plugins" ];
8 });
9 }