We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 47e3245 commit 369fde1Copy full SHA for 369fde1
pkgs/applications/editors/geany/default.nix
@@ -3,19 +3,19 @@
3
with stdenv.lib;
4
5
let
6
- version = "1.30.1";
+ version = "1.31";
7
in
8
9
stdenv.mkDerivation rec {
10
name = "geany-${version}";
11
12
src = fetchurl {
13
url = "http://download.geany.org/${name}.tar.bz2";
14
- sha256 = "0ac360f1f3d6c28790a81d570252a7d40421f6e1d8e5a8d653756bd041d88491";
+ sha256 = "30fdb906bb76c4251a8bcf83ee267db28c26ef6ab867668a782cec1164a3aba5";
15
};
16
17
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
18
-
+
19
nativeBuildInputs = [ pkgconfig intltool ];
20
buildInputs = [ gtk2 which file ];
21
0 commit comments