9421c5f889
Promoting from my NUR repo. Build w/clang as it fixes test crash for some reason.
32 lines
836 B
Nix
32 lines
836 B
Nix
{ stdenv, fetchurl, bison, flex, libffi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "txr-${version}";
|
|
version = "208";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.kylheku.com/cgit/txr/snapshot/${name}.tar.bz2";
|
|
sha256 = "091yki3a24pscwd0lg2ymy86r223amjnz9c71z4a2kxz5brhl5my";
|
|
};
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
buildInputs = [ libffi ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
checkTarget = "tests";
|
|
|
|
# Remove failing test-- mentions 'usr/bin' so probably related :)
|
|
preCheck = "rm -rf tests/017";
|
|
|
|
# TODO: install 'tl.vim', make avail when txr is installed or via plugin
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Programming language for convenient data munging";
|
|
license = licenses.bsd2;
|
|
homepage = http://nongnu.org/txr;
|
|
maintainers = with stdenv.lib.maintainers; [ dtzWill ];
|
|
};
|
|
}
|