Pidgin: Difference between revisions
imported>HLandau No edit summary |
Beginning added and Category:Applications |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
Pidgin is a multi-protocol messaging client. | |||
[https://pidgin.im/ Pidgin] is available in NixOS, as are many popular plugins such as pidgin-otr. | [https://pidgin.im/ Pidgin] is available in NixOS, as are many popular plugins such as pidgin-otr. | ||
| Line 10: | Line 12: | ||
... | ... | ||
packageOverrides = pkgs: rec { | packageOverrides = pkgs: rec { | ||
pidgin-with-plugins = pkgs.pidgin | pidgin-with-plugins = pkgs.pidgin.override { | ||
## Add whatever plugins are desired (see nixos.org package listing). | ## Add whatever plugins are desired (see nixos.org package listing). | ||
plugins = [ pkgs. | plugins = [ pkgs.pidgin-otr ]; | ||
}; | }; | ||
}; | }; | ||
| Line 34: | Line 36: | ||
allowUnfree = true; | allowUnfree = true; | ||
packageOverrides = pkgs: with pkgs; { | packageOverrides = pkgs: with pkgs; { | ||
pidgin-with-plugins = pkgs.pidgin | pidgin-with-plugins = pkgs.pidgin.override { | ||
## Add whatever plugins are desired (see nixos.org package listing). | ## Add whatever plugins are desired (see nixos.org package listing). | ||
plugins = [ | plugins = [ pidgin-otr ]; | ||
}; | }; | ||
}; | }; | ||
| Line 44: | Line 46: | ||
# Run <tt>nixos-rebuild switch</tt> as root to apply changes. | # Run <tt>nixos-rebuild switch</tt> as root to apply changes. | ||
[[Category: | [[Category:Applications]] | ||