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

21 lines
538 B
Nix
Raw Normal View History

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