From 3936ddc576d7e896f5894902bcb19a045709fd6f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 19 Dec 2018 18:48:40 +0100 Subject: [PATCH] Add some new programs: weechat profanity ranger --- default.nix | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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; } -- 2.41.0