2019-09-12 07:25:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt }:
|
2014-02-21 04:18:56 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-29 00:45:05 -07:00
|
|
|
version = "0.5.4.14";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xarchiver";
|
2014-02-21 04:18:56 -08:00
|
|
|
|
2016-07-15 09:23:26 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ib";
|
|
|
|
repo = "xarchiver";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2019-05-29 00:45:05 -07:00
|
|
|
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
|
2014-02-21 04:18:56 -08:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-09-12 07:25:05 -07:00
|
|
|
buildInputs = [ gtk3 intltool libxslt ];
|
2014-02-21 04:18:56 -08:00
|
|
|
|
|
|
|
meta = {
|
2019-09-03 15:49:40 -07:00
|
|
|
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ib/xarchiver";
|
2016-05-17 04:57:28 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.domenkozar ];
|
2014-02-21 04:18:56 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|