recutils: 1.5 -> 1.7

This commit is contained in:
Eike Kettner
2016-09-02 22:01:06 +02:00
parent d95a29a01a
commit 498d803cce
2 changed files with 6 additions and 33 deletions
+6 -4
View File
@@ -1,21 +1,23 @@
{ fetchurl, stdenv, gettext, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
name = "recutils-1.5";
name = "recutils-1.7";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
sha256 = "1v2xzwwwhc5j5kmvg4sv6baxjpsfqh8ln7ilv4mgb1408rs7xmky";
sha256 = "0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93";
};
patches = [ ./glibc.patch ];
doCheck = true;
hardeningDisable = [ "format" ];
buildInputs = [ curl emacs ] ++ (stdenv.lib.optionals doCheck [ check bc ]);
postInstall = ''
${emacs}/bin/emacs -Q -batch -f batch-byte-compile $out/share/emacs/site-lisp/*.el #*/
'';
meta = {
description = "Tools and libraries to access human-editable, text-based databases";