summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core
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/core
parent8d2e4761c8eeabcdf07825af7d73989f36ad8016 (diff)
downloadnixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar.gz
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar.bz2
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar.lz
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar.xz
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.tar.zst
nixlib-735f0f2ca8b9da0791554a6335f2f0b1238ffad8.zip
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/core')
-rw-r--r--pkgs/desktops/xfce/core/thunarx-2-dev.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/desktops/xfce/core/thunarx-2-dev.nix b/pkgs/desktops/xfce/core/thunarx-2-dev.nix
deleted file mode 100644
index 2cce01b75e7c..000000000000
--- a/pkgs/desktops/xfce/core/thunarx-2-dev.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, intltool
-, gtk, dbus_glib, libstartup_notification, libnotify, libexif, pcre, udev
-, exo, libxfce4util
-, xfconf, libxfce4ui
-}:
-
-stdenv.mkDerivation rec {
-  host_p_name = "thunar";
-  p_name = "thunarx-2-dev";
-  ver_maj = "1.6";
-  ver_min = "6";
-
-  src = fetchurl {
-    url = "mirror://xfce/src/xfce/${host_p_name}/${ver_maj}/Thunar-${ver_maj}.${ver_min}.tar.bz2";
-    sha256 = "1cl9v3rdzipyyxml3pyrzspxfmmssz5h5snpj18irq4an42539dr";
-  };
-  name = "${p_name}-${ver_maj}.${ver_min}";
-
-  preBuild = ''
-    cd thunarx
-  '';
-
-  buildInputs = [
-    pkgconfig intltool
-    gtk dbus_glib libstartup_notification libnotify libexif pcre udev
-    exo libxfce4util 
-    xfconf libxfce4ui
-  ];
-
-  enableParallelBuilding = true;
-
-  meta = {
-    homepage = http://thunar.xfce.org/;
-    description = "Thunar Extension Framework";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}