about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAustin Butler <austinabutler@gmail.com>2020-12-07 20:30:21 -0800
committerAustin Butler <austinabutler@gmail.com>2020-12-07 20:30:21 -0800
commit6a94d50d46c4f5a49f0896cec3cf96a1a9950397 (patch)
tree19db674313e2e3ecdefabad1cffeaa388ad08315
parent732cc5c147089db05781352d31e848a821b4536d (diff)
zile: 2.4.14 -> 2.6.0.90
-rw-r--r--pkgs/applications/editors/zile/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix
index c7c57a9e3ef83..5181c2c67678d 100644
--- a/pkgs/applications/editors/zile/default.nix
+++ b/pkgs/applications/editors/zile/default.nix
@@ -1,15 +1,15 @@
-{ fetchurl, stdenv, pkgconfig, ncurses, boehmgc, perl, help2man }:
+{ fetchurl, stdenv, glib, libgee, pkg-config, ncurses, boehmgc, perl, help2man, vala }:
 
 stdenv.mkDerivation rec {
-  name = "zile-2.4.14";
+  name = "zile-2.6.0.90";
 
   src = fetchurl {
     url = "mirror://gnu/zile/${name}.tar.gz";
-    sha256 = "0x3byaddms8l3g7igx6njycqsq98wgapysdb5c7lhcnajlkp8y3s";
+    sha256 = "1bhdwnasmqhy0hi3fqmpzr8xkw5zlqjpmf1cj42h4cg3fnamp6r3";
   };
 
-  buildInputs = [ ncurses boehmgc ];
-  nativeBuildInputs = [ perl pkgconfig ]
+  buildInputs = [ glib libgee ncurses boehmgc vala ];
+  nativeBuildInputs = [ perl pkg-config ]
     # `help2man' wants to run Zile, which won't work when the
     # newly-produced binary can't be run at build-time.
     ++ stdenv.lib.optional