acb3ace5c9
Changelog seems only at the level of 5.4.x: https://github.com/ib/xarchiver/blob/0.5.4.14/ChangeLog Commits from 0.5.4.12 to 0.5.4.14: https://github.com/ib/xarchiver/compare/0.5.4.12...0.5.4.14
24 lines
753 B
Nix
24 lines
753 B
Nix
{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.4.14";
|
|
name = "xarchiver-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ib";
|
|
repo = "xarchiver";
|
|
rev = "${version}";
|
|
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk3 intltool libxslt hicolor-icon-theme ];
|
|
|
|
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;
|
|
maintainers = [ stdenv.lib.maintainers.domenkozar ];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|