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

25 lines
753 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
stdenv.mkDerivation rec {
version = "0.5.4.14";
name = "xarchiver-${version}";
2016-07-15 18:23:26 +02:00
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
rev = "${version}";
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk3 intltool libxslt hicolor-icon-theme ];
meta = {
2016-07-15 18:23:26 +02:00
description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
2016-07-23 13:18:42 +02:00
homepage = https://github.com/ib/xarchiver;
maintainers = [ stdenv.lib.maintainers.domenkozar ];
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}