1 { lib, stdenv, fetchurl, gtk2, pkg-config }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/xarchive/${pname}-${version}.tar.gz";
9 sha256 = "0chfim7z27s00naf43a61zsngwhvim14mg1p3csbv5i3f6m50xx4";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ gtk2 ];
15 hardeningDisable = [ "format" ];
18 description = "A GTK front-end for command line archiving tools";
19 maintainers = [ lib.maintainers.domenkozar ];
20 license = lib.licenses.gpl2;
21 platforms = lib.platforms.all;