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

stdenv.mkDerivation rec {
  version = "0.2.8-6";
  name = "xarchive-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/xarchive/${name}.tar.gz";
    sha256 = "0chfim7z27s00naf43a61zsngwhvim14mg1p3csbv5i3f6m50xx4";
  };

  buildInputs = [ gtk2 pkgconfig ];

  meta = {
    description = "A GTK+ front-end for command line archiving tools";
    mainatainers = [ stdenv.lib.maintainers.iElectric ];
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
  };
}