summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-05-29 02:45:05 -0500
committerWill Dietz <w@wdtz.org>2019-05-29 02:50:30 -0500
commitacb3ace5c9422371a8b85da476506fd9d9f882af (patch)
tree92cc3bbbd3040c55849e63da1604b59a6a1a3826 /pkgs/tools/archivers
parent4d0ec78406ca57986234d22fffbba5dc077f2701 (diff)
xarchiver: 0.5.4.12 -> 0.5.4.14
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
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/xarchiver/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix
index d8c4175e7760..9860c2b34bd4 100644
--- a/pkgs/tools/archivers/xarchiver/default.nix
+++ b/pkgs/tools/archivers/xarchiver/default.nix
@@ -1,24 +1,16 @@
-{ stdenv, fetchFromGitHub, fetchpatch, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
+{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
stdenv.mkDerivation rec {
- version = "0.5.4.12";
+ version = "0.5.4.14";
name = "xarchiver-${version}";
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
rev = "${version}";
- sha256 = "13d8slcx3frz0dhl1w4llj7001n57cjjb8r7dlaw5qacaas3xfwi";
+ sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
};
- patches = [
- # Fixes darwin build, remove with next update.
- (fetchpatch {
- url = https://github.com/ib/xarchiver/commit/8c69d066a827419feafd0bd047d19207ceadc7df.patch;
- sha256 = "1ch1409hx1ynkm0mz93zy8h7wvcrsn56sz7lczsf6hznc8yzl0qg";
- })
- ];
-
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk3 intltool libxslt hicolor-icon-theme ];