From: Ismaƫl Bouya Date: Wed, 19 Dec 2018 17:48:40 +0000 (+0100) Subject: Add some new programs: weechat profanity ranger X-Git-Tag: nur_publish~424 X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=commitdiff_plain;h=3936ddc576d7e896f5894902bcb19a045709fd6f Add some new programs: weechat profanity ranger --- diff --git a/default.nix b/default.nix index 5227b47..4592eef 100644 --- a/default.nix +++ b/default.nix @@ -69,7 +69,23 @@ let } ); - #weechat = callPackage nixpkgs.weechat { guileSupport = false; luaSupport = false; rubySupport = false; tclSupport = false; }; + profanity = (nixpkgs.profanity.override { + notifySupport = true; + inherit libnotify gpgme gdk_pixbuf; + python = python3; + }).overrideAttrs (oldAttrs: rec { + configureFlags = oldAttrs.configureFlags ++ [ "--enable-plugins" ]; + }); + + weechat = nixpkgs.weechat.override { + configure = { availablePlugins, ... }: { + plugins = with availablePlugins; [ + (python.withPackages (ps: with ps; [websocket_client emoji])) + perl + ]; + }; + }; + in { inherit nix-prefetch-scripts; @@ -90,5 +106,8 @@ in inherit xmr-stak; inherit urlwatch; inherit pass; + inherit ranger; + inherit profanity; + inherit weechat; #inherit nixos; }