21 lines
539 B
Nix
21 lines
539 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|