2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, gtk3, pkg-config, intltool, libxslt, makeWrapper,
|
2021-07-16 02:43:51 +00:00
|
|
|
coreutils, zip, unzip, p7zip, unar, gnutar, bzip2, gzip, lhasa, wrapGAppsHook }:
|
2014-02-21 12:18:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2023-06-02 15:19:46 +00:00
|
|
|
version = "0.5.4.21";
|
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;
|
2023-06-02 15:19:46 +00:00
|
|
|
sha256 = "sha256-pYrF9fyEbay+iboL9EuoTETTI3RTcgv3yeVtAWvAe1Q=";
|
2014-02-21 12:18:56 +00:00
|
|
|
};
|
|
|
|
|
2021-05-13 21:48:42 +00:00
|
|
|
nativeBuildInputs = [ intltool pkg-config makeWrapper wrapGAppsHook ];
|
|
|
|
buildInputs = [ gtk3 libxslt ];
|
2014-02-21 12:18:56 +00:00
|
|
|
|
2020-06-12 20:40:29 +00:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/xarchiver \
|
2021-07-16 02:43:51 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ zip unzip p7zip unar gnutar bzip2 gzip lhasa coreutils ]}
|
2020-06-12 20:40:29 +00:00
|
|
|
'';
|
|
|
|
|
2014-02-21 12:18:56 +00:00
|
|
|
meta = {
|
2022-05-28 13:22:26 +00:00
|
|
|
broken = stdenv.isDarwin;
|
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";
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = [ lib.maintainers.domenkozar ];
|
2021-05-13 21:48:42 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
2014-02-21 12:18:56 +00:00
|
|
|
};
|
|
|
|
}
|