Skip to content

Commit

Permalink
zile: 2.4.13 -> 2.4.14
Browse files Browse the repository at this point in the history
fixes #30209
  • Loading branch information
sigma authored and Mic92 committed Oct 8, 2017
1 parent 9b4f74e commit 8079e52
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/applications/editors/zile/default.nix
@@ -1,14 +1,15 @@
{ fetchurl, stdenv, pkgconfig, ncurses, boehmgc, perl, help2man }:

stdenv.mkDerivation rec {
name = "zile-2.4.13";
name = "zile-2.4.14";

src = fetchurl {
url = "mirror://gnu/zile/${name}.tar.gz";
sha256 = "03mcg0bxkzprlsx8y6h22w924pzx4a9zr7zm3g11j8j3x9lz75f7";
sha256 = "0x3byaddms8l3g7igx6njycqsq98wgapysdb5c7lhcnajlkp8y3s";
};

nativeBuildInputs = [ pkgconfig perl ]
buildInputs = [ ncurses boehmgc ];
nativeBuildInputs = [ perl pkgconfig ]
# `help2man' wants to run Zile, which won't work when the
# newly-produced binary can't be run at build-time.
++ stdenv.lib.optional
Expand All @@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
doCheck = false;

# XXX: Work around cross-compilation-unfriendly `gl_FUNC_FSTATAT' macro.
preConfigure = "export gl_cv_func_fstatat_zero_flag=yes";
gl_cv_func_fstatat_zero_flag="yes";

meta = with stdenv.lib; {
description = "Lightweight Emacs clone";
Expand Down

0 comments on commit 8079e52

Please sign in to comment.