From c35a1b828fc3acda627fb04cd323b56e91fdefcb Mon Sep 17 00:00:00 2001 From: Baptist BENOIST Date: Wed, 17 Sep 2014 00:08:59 +0200 Subject: [PATCH] geany: Update from 1.23.1 to 1.24.1 Closes #4359 --- pkgs/applications/editors/geany/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index d7ed048cdaa..8d4002c9ef8 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool }: +{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: let - version = "1.23.1"; + version = "1.24.1"; in stdenv.mkDerivation rec { @@ -9,15 +9,17 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.geany.org/${name}.tar.bz2"; - sha256 = "1bcgjxywggsljs9kq22kr9xpzrq5xr7pb9d1b71rwryqb5pb25c8"; + sha256 = "0cwci8876dpgcn60dfvjlciqr8x68iv86psjj148grhzn3chbdbz"; }; - buildInputs = [ gtk2 which pkgconfig intltool ]; + buildInputs = [ gtk2 which pkgconfig intltool file ]; doCheck = true; enableParallelBuilding = true; + patchPhase = "patchShebangs ."; + # This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command # It have no reasons to exist in a redistribuable package postInstall = "rm $out/share/icons/hicolor/icon-theme.cache";