summary refs log tree commit diff
path: root/pkgs/tools/archivers/xarchiver/default.nix
blob: eff82351ca39399ecb859f6af0b99dc4a54e9cee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, gtk2, pkgconfig, intltool }:

stdenv.mkDerivation rec {
  version = "0.5.4";
  name = "xarchiver-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/xarchiver/${name}.tar.bz2";
    sha256 = "1x1f8m71cvv2p1364rz99iqs2caxj7yrb46aikz6xigwg4wsfgz6";
  };

  buildInputs = [ gtk2 pkgconfig intltool ];

  meta = {
    description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
    homepage = http://sourceforge.net/projects/xarchiver/;
    maintainers = [ stdenv.lib.maintainers.iElectric ];
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
  };
}