From 7c86a69b2a9f897e2027ee56c5ce3e663b75f0ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 11 Apr 2013 19:28:21 +0200 Subject: [PATCH] geany: fix build via a minor update --- pkgs/applications/editors/geany/default.nix | 6 +++--- 1 file 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 ];