about summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
diff options
context:
space:
mode:
authorBaptist BENOIST <baptist.benoist@hydrocean.fr>2014-09-17 00:08:59 +0200
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-10-02 06:39:03 +0100
commitc35a1b828fc3acda627fb04cd323b56e91fdefcb (patch)
tree0ac43a3d2bc57814b8b594e1f5a0902dd468c854 /pkgs/applications/editors/geany
parentfa910f2f74683f3f03ad5f96947e4fbeb8972a2f (diff)
downloadnixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar.gz
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar.bz2
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar.lz
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar.xz
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.tar.zst
nixlib-c35a1b828fc3acda627fb04cd323b56e91fdefcb.zip
geany: Update from 1.23.1 to 1.24.1
Closes #4359
Diffstat (limited to 'pkgs/applications/editors/geany')
-rw-r--r--pkgs/applications/editors/geany/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index d7ed048cdaa8..8d4002c9ef85 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";