Merge pull request #53374 from dtzWill/update/recutils-1.8

recutils: 1.7 -> 1.8
This commit is contained in:
Jörg Thalheim 2019-01-04 11:37:39 +01:00 committed by GitHub
commit b22d962d51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
{ fetchurl, stdenv, emacs, curl, check, bc }:
stdenv.mkDerivation rec {
name = "recutils-1.7";
name = "recutils-1.8";
src = fetchurl {
url = "mirror://gnu/recutils/${name}.tar.gz";
sha256 = "0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93";
sha256 = "14xiln4immfsw8isnvwvq0h23f6z0wilpgsc4qzabnrzb5lsx3nz";
};
hardeningDisable = [ "format" ];
@ -15,11 +15,6 @@ stdenv.mkDerivation rec {
checkInputs = [ check bc ];
doCheck = true;
# one file fails to compile with emacs 26
postInstall = ''
${emacs}/bin/emacs -Q -batch -f batch-byte-compile $out/share/emacs/site-lisp/*.el || true
'';
meta = {
description = "Tools and libraries to access human-editable, text-based databases";