2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, gtk2, pkgconfig }:
|
2013-05-05 21:02:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.2.8-6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xarchive";
|
2013-05-05 21:02:48 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/xarchive/${pname}-${version}.tar.gz";
|
2013-05-05 21:02:48 +01:00
|
|
|
sha256 = "0chfim7z27s00naf43a61zsngwhvim14mg1p3csbv5i3f6m50xx4";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 ];
|
2013-05-05 21:02:48 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-24 16:01:51 +00:00
|
|
|
|
2013-05-05 21:02:48 +01:00
|
|
|
meta = {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "A GTK front-end for command line archiving tools";
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = [ lib.maintainers.domenkozar ];
|
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.all;
|
2013-05-05 21:02:48 +01:00
|
|
|
};
|
|
|
|
}
|