summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorFrank Lanitz <frank@frank.uvena.de>2018-02-25 14:59:59 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2018-02-25 16:08:32 +0100
commit3c04b54205eb46bd3c50de470def4e237aca10c8 (patch)
tree4251ed200a7045e93a8052f3853b7a35d4486bfc /pkgs/applications/editors
parent538913cb906cf63199c902d318df731280f98caa (diff)
downloadnixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar.gz
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar.bz2
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar.lz
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar.xz
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.tar.zst
nixlib-3c04b54205eb46bd3c50de470def4e237aca10c8.zip
Geany: 1.32 -> 1.33
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/geany/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index 9288d293b916..23478758efe5 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 let
-  version = "1.32";
+  version = "1.33";
 in
 
 stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://download.geany.org/${name}.tar.bz2";
-    sha256 = "8b7be10b95d0614eb07f845ba2280f7c026eacd5739d8fac4d5d26606f8c3c2d";
+    sha256 = "66baaff43f12caebcf0efec9a5533044dc52837f799c73a1fd7312caa86099c2";
   };
 
   NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;