txr: 230 -> 231

Drop header fixup, release notes indicate this was fixed.
This commit is contained in:
Will Dietz 2020-01-14 16:56:20 -06:00 committed by Alyssa Ross
parent 417efa994e
commit 6daba66152

View File

@ -2,21 +2,16 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "txr"; pname = "txr";
version = "230"; version = "231";
src = fetchurl { src = fetchurl {
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2"; url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
sha256 = "03ab9drdqvkfq240pkrx6197jjvvjizjwfx9psjmm6lixksw0kjx"; sha256 = "0mcglb84zfmrai2bcdg9j0ck8jp8h7ii2rf4m38yjggy0dvii2lc";
}; };
nativeBuildInputs = [ bison flex ]; nativeBuildInputs = [ bison flex ];
buildInputs = [ libffi ]; buildInputs = [ libffi ];
# fix usage of off_t without include
postPatch = ''
sed -i '1i#include <sys/types.h>' sysif.h
'';
enableParallelBuilding = true; enableParallelBuilding = true;
doCheck = true; doCheck = true;