about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/thunar-archive-plugin.nix
blob: 62b04caaa347e73c6ad2bd1d01d714ec8f0e795a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}