2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, bison, flex, libffi }:
|
2019-01-29 12:44:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-23 03:02:48 +01:00
|
|
|
pname = "txr";
|
2020-01-14 22:56:20 +00:00
|
|
|
version = "231";
|
2019-01-29 12:44:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-23 03:02:48 +01:00
|
|
|
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
|
2020-01-14 22:56:20 +00:00
|
|
|
sha256 = "0mcglb84zfmrai2bcdg9j0ck8jp8h7ii2rf4m38yjggy0dvii2lc";
|
2019-01-29 12:44:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
2019-05-23 03:59:53 +01:00
|
|
|
postInstall = ''
|
|
|
|
d=$out/share/vim-plugins/txr
|
|
|
|
mkdir -p $d/{syntax,ftdetect}
|
|
|
|
|
|
|
|
cp {tl,txr}.vim $d/syntax/
|
|
|
|
|
|
|
|
cat > $d/ftdetect/txr.vim <<EOF
|
|
|
|
au BufRead,BufNewFile *.txr set filetype=txr | set lisp
|
|
|
|
au BufRead,BufNewFile *.tl,*.tlo set filetype=tl | set lisp
|
|
|
|
EOF
|
|
|
|
'';
|
2019-01-29 12:44:09 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-29 12:44:09 +00:00
|
|
|
description = "Programming language for convenient data munging";
|
|
|
|
license = licenses.bsd2;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://nongnu.org/txr";
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ dtzWill ];
|
2019-06-04 07:38:47 +01:00
|
|
|
platforms = platforms.linux; # Darwin fails although it should work AFAIK
|
2019-01-29 12:44:09 +00:00
|
|
|
};
|
|
|
|
}
|