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

31 lines
971 B
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchFromGitHub, gtk3, pkg-config, intltool, libxslt, makeWrapper,
2020-06-12 22:40:29 +02:00
coreutils, zip, unzip, p7zip, unrar, gnutar, bzip2, gzip, lhasa, wrapGAppsHook }:
stdenv.mkDerivation rec {
version = "0.5.4.17";
pname = "xarchiver";
2016-07-15 18:23:26 +02:00
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
2019-09-09 01:38:31 +02:00
rev = version;
sha256 = "00adrjpxqlaccrwjf65w3vhxfswdj0as8aj263c6f9b85llypc5v";
};
nativeBuildInputs = [ intltool pkg-config makeWrapper wrapGAppsHook ];
buildInputs = [ gtk3 libxslt ];
2020-06-12 22:40:29 +02:00
postFixup = ''
wrapProgram $out/bin/xarchiver \
2021-01-15 10:19:50 +01:00
--prefix PATH : ${lib.makeBinPath [ zip unzip p7zip unrar gnutar bzip2 gzip lhasa coreutils ]}
2020-06-12 22:40:29 +02: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 10:19:50 +01:00
maintainers = [ lib.maintainers.domenkozar ];
license = lib.licenses.gpl2Plus;
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.all;
};
}