summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/thunar-archive-plugin.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2013-08-16 13:56:54 +0200
committerDomen Kožar <domen@dev.si>2013-08-16 13:57:08 +0200
commit330219d0c4778413ec2b68d9b655316ceeb48ea1 (patch)
tree9335d0d67503c6476aa3158206a688576efb71ea /pkgs/desktops/xfce/core/thunar-archive-plugin.nix
parent617595427191e6a3bf3d5c418dae4a258f8686a9 (diff)
downloadnixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar.gz
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar.bz2
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar.lz
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar.xz
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.tar.zst
nixlib-330219d0c4778413ec2b68d9b655316ceeb48ea1.zip
add thunar-archive-plugin
Diffstat (limited to 'pkgs/desktops/xfce/core/thunar-archive-plugin.nix')
-rw-r--r--pkgs/desktops/xfce/core/thunar-archive-plugin.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/thunar-archive-plugin.nix b/pkgs/desktops/xfce/core/thunar-archive-plugin.nix
new file mode 100644
index 000000000000..62b04caaa347
--- /dev/null
+++ b/pkgs/desktops/xfce/core/thunar-archive-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, thunar, intltool, exo, gtk, udev, libxfce4ui, libxfce4util, xfconf }:
+
+stdenv.mkDerivation rec {
+  name  = "thunar-archive-plugin-${version}";
+  maj_ver = "0.3";
+  version = "${maj_ver}.1";
+
+  src = fetchurl {
+    url = "mirror://xfce/src/thunar-plugins/${name}/${maj_ver}/${name}.tar.bz2";
+    sha256 = "1sxw09fwyn5sr6ipxk7r8gqjyf41c2v7vkgl0l6mhy5mcb48f27z";
+  };
+
+  buildInputs = [ pkgconfig thunar intltool exo gtk udev libxfce4ui libxfce4util xfconf ];
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://foo-projects.org/~benny/projects/thunar-archive-plugin/;
+    description = "The Thunar Archive Plugin allows you to create and extract archive files using the file context menus in the Thunar file manager";
+    license = "GPLv2+";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.iElectric ];
+  };
+}