about summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-04-11 19:28:21 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-04-11 19:28:21 +0200
commit7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed (patch)
tree55b44e8494687c8126d4b0304a7f7a7ec889a2c7 /pkgs/applications/editors/geany
parentf59b0f8ccdfa7ffdf825ff2f099bfc4929b8eb8d (diff)
downloadnixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar.gz
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar.bz2
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar.lz
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar.xz
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.tar.zst
nixlib-7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed.zip
geany: fix build via a minor update
Diffstat (limited to 'pkgs/applications/editors/geany')
-rw-r--r--pkgs/applications/editors/geany/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index 289cf7ff8d63..6d43cc279975 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchurl, gtk2, which, pkgconfig, intltool }:
 
 let
-  version = "1.22";
+  version = "1.23";
 in
 
 stdenv.mkDerivation rec {
   name = "geany-${version}";
 
   src = fetchurl {
-    url = "http://download.geany.org/${name}.tar.gz";
-    md5 = "1cb7f6cea8e301c416211786cec474fa";
+    url = "http://download.geany.org/${name}.tar.bz2";
+    sha256 = "1c78rggjaz9fa8gj25wka1sa3argvixnzrarmqvwh0s8d5ragm6d";
   };
 
   buildInputs = [ gtk2 which pkgconfig intltool ];