commit
9639420437
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchurl, bison, flex, libffi }:
|
{ stdenv, fetchurl, bison, flex, libffi }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "txr-${version}";
|
pname = "txr";
|
||||||
version = "209";
|
version = "216";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.kylheku.com/cgit/txr/snapshot/${name}.tar.bz2";
|
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1g236bk5ygh3car4kki3w6n0pwny8q4awg8p86fh2khj52qz6mdl";
|
sha256 = "07cxdpc9zsqd0c2668g00dqjpd6zc4mfdn74aarr6d2hpzdhh937";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ bison flex ];
|
nativeBuildInputs = [ bison flex ];
|
||||||
@ -20,12 +20,23 @@ stdenv.mkDerivation rec {
|
|||||||
# Remove failing test-- mentions 'usr/bin' so probably related :)
|
# Remove failing test-- mentions 'usr/bin' so probably related :)
|
||||||
preCheck = "rm -rf tests/017";
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Programming language for convenient data munging";
|
description = "Programming language for convenient data munging";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
homepage = http://nongnu.org/txr;
|
homepage = http://nongnu.org/txr;
|
||||||
maintainers = with stdenv.lib.maintainers; [ dtzWill ];
|
maintainers = with stdenv.lib.maintainers; [ dtzWill ];
|
||||||
|
platforms = platforms.linux; # Darwin fails although it should work AFAIK
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user