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