Merge pull request #61929 from dtzWill/update/txr-216

txr: 209 -> 216
This commit is contained in:
Will Dietz 2019-06-04 04:29:38 -05:00 committed by GitHub
commit 9639420437
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, bison, flex, libffi }:
stdenv.mkDerivation rec {
name = "txr-${version}";
version = "209";
pname = "txr";
version = "216";
src = fetchurl {
url = "http://www.kylheku.com/cgit/txr/snapshot/${name}.tar.bz2";
sha256 = "1g236bk5ygh3car4kki3w6n0pwny8q4awg8p86fh2khj52qz6mdl";
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
sha256 = "07cxdpc9zsqd0c2668g00dqjpd6zc4mfdn74aarr6d2hpzdhh937";
};
nativeBuildInputs = [ bison flex ];
@ -20,12 +20,23 @@ stdenv.mkDerivation rec {
# 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
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
'';
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 ];
platforms = platforms.linux; # Darwin fails although it should work AFAIK
};
}