3
0
Fork 0
forked from mirrors/nixpkgs

recutils: 1.7 -> 1.8

This commit is contained in:
Will Dietz 2019-01-03 10:17:32 -06:00
parent ba1a181a88
commit 1031d9b4ca

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";