thunar: improvements (close #10306)

Add the possibility to specify plugin set to
be used as overridable `thunar` derivation argument.

New nixos config attribute:
`services.xserver.desktopManager.xfce.thunarPlugins`
that allows user to specify plugins in the context
of nixos.

Tests:

 -  With and without plugins.
 -  Using the nixos attributes.
This commit is contained in:
Raymond Gauthier
2015-11-24 09:51:39 +01:00
committed by Vladimír Čunát
parent b2409581f8
commit 662bbb526c
6 changed files with 111 additions and 32 deletions
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig
, gtk
, thunar, python2
, thunarx-2-dev, python2
}:
stdenv.mkDerivation rec {
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
buildInputs = [
pkgconfig
gtk
thunar python2
thunarx-2-dev python2
];
configurePhase = "python2 waf configure --prefix=$out";