4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, bison, flex, libffi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "txr";
|
|
version = "231";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
|
|
sha256 = "0mcglb84zfmrai2bcdg9j0ck8jp8h7ii2rf4m38yjggy0dvii2lc";
|
|
};
|
|
|
|
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";
|
|
|
|
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 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
|
|
};
|
|
}
|