mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
commit
9639420437
@ -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
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user