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