Merge pull request #76772 from dtzWill/update/txr-230

txr: 225 -> 230
This commit is contained in:
Will Dietz 2020-01-01 11:20:13 -06:00 committed by GitHub
commit 71cbc67f3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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