nixpkgs/pkgs/tools/archivers/xarchiver/default.nix

31 lines
967 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, gtk3, pkg-config, intltool, libxslt, makeWrapper,
2020-06-12 21:40:29 +01:00
coreutils, zip, unzip, p7zip, unrar, gnutar, bzip2, gzip, lhasa, wrapGAppsHook }:
stdenv.mkDerivation rec {
version = "0.5.4.14";
pname = "xarchiver";
2016-07-15 17:23:26 +01:00
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config makeWrapper wrapGAppsHook ];
buildInputs = [ gtk3 intltool libxslt ];
2020-06-12 21:40:29 +01:00
postFixup = ''
wrapProgram $out/bin/xarchiver \
2021-01-15 09:19:50 +00:00
--prefix PATH : ${lib.makeBinPath [ zip unzip p7zip unrar gnutar bzip2 gzip lhasa coreutils ]}
2020-06-12 21:40:29 +01:00
'';
meta = {
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
homepage = "https://github.com/ib/xarchiver";
2021-01-15 09:19:50 +00:00
maintainers = [ lib.maintainers.domenkozar ];
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
};
}