nixpkgs/pkgs/tools/archivers/xarchive/default.nix

23 lines
567 B
Nix
Raw Normal View History

2013-05-05 20:02:48 +00:00
{ 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 ];
2016-02-24 16:01:51 +00:00
hardening_format = false;
2013-05-05 20:02:48 +00:00
meta = {
description = "A GTK+ front-end for command line archiving tools";
2014-11-05 08:12:35 +00:00
maintainers = [ stdenv.lib.maintainers.iElectric ];
2013-05-05 20:02:48 +00:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}