mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
b0c2aea20b
This was either for the setup-hook to remove caches or added even though the respective icon theme propagated it.
25 lines
698 B
Nix
25 lines
698 B
Nix
{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.4.14";
|
|
pname = "xarchiver";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ib";
|
|
repo = "xarchiver";
|
|
rev = version;
|
|
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk3 intltool libxslt ];
|
|
|
|
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;
|
|
};
|
|
}
|