summary refs log tree commit diff
path: root/pkgs/applications/editors/zile
diff options
context:
space:
mode:
authorYann Hodique <yann.hodique@gmail.com>2017-10-07 16:08:52 -0700
committerJoerg Thalheim <joerg@thalheim.io>2017-10-08 11:46:55 +0100
commit8079e52bc158b11db1dfadefbd0f48da3a10ecd4 (patch)
treed8045d39f48b75398bd1873cabba82ad3e6a5850 /pkgs/applications/editors/zile
parent9b4f74e38fa6fbccc8e3d7843d8035c1fd2a072c (diff)
downloadnixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar.gz
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar.bz2
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar.lz
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar.xz
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.tar.zst
nixpkgs-8079e52bc158b11db1dfadefbd0f48da3a10ecd4.zip
zile: 2.4.13 -> 2.4.14
fixes #30209
Diffstat (limited to 'pkgs/applications/editors/zile')
-rw-r--r--pkgs/applications/editors/zile/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix
index 9274eb6889d..0f79ca33c72 100644
--- a/pkgs/applications/editors/zile/default.nix
+++ b/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
@@ -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";