aboutsummaryrefslogtreecommitdiff
path: root/pkgs/desktops/xfce/thunar-plugins
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-09-23 19:12:36 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-09-23 19:19:31 +0200
commit735f0f2ca8b9da0791554a6335f2f0b1238ffad8 (patch)
treef27e15dfcbe21ba2fd320130a47d76b05b258db6 /pkgs/desktops/xfce/thunar-plugins
parent8d2e4761c8eeabcdf07825af7d73989f36ad8016 (diff)
thunar-dropbox-plugin: fixup after #9935
Close #9935. I don't think it's good to split thunarx into a separate derivation in this way. We would have the library and associated stuff twice and two expressions, etc. Distributions do these things by an analogy to multiple-output derivation (Debian does, for example), so we could use that, but it doesn't seem important in this case and would be better after #7701 anyway.
Diffstat (limited to 'pkgs/desktops/xfce/thunar-plugins')
-rw-r--r--pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix b/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix
index 4027e5cb996c..cf83386fa261 100644
--- a/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix
+++ b/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig
, gtk
-, thunarx-2-dev, python2
+, thunar, python2
}:
stdenv.mkDerivation rec {
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
buildInputs = [
pkgconfig
gtk
- thunarx-2-dev python2
+ thunar python2
];
configurePhase = "python2 waf configure --prefix=$out";
@@ -30,13 +30,12 @@ stdenv.mkDerivation rec {
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
-
enableParallelBuilding = true;
- meta = {
+ meta = with stdenv.lib; {
homepage = http://softwarebakery.com/maato/thunar-dropbox.html;
description = "A plugin for thunar that adds context-menu items from dropbox";
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
};
}