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";