My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/interpreters/j/default.nix

65 lines
1.7 KiB

{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
name = "j-${version}";
version = "701_b";
src = fetchurl {
url = "http://www.jsoftware.com/download/j${version}_source.tar.gz";
sha256 = "1gmjlpxcd647x690c4dxnf8h6ays8ndir6cib70h3zfnkrc34cys";
};
buildInputs = [ readline ];
bits = if stdenv.is64bit then "64" else "32";
doCheck = true;
8 years ago
buildPhase = ''
sed -i bin/jconfig -e '
s@bits=32@bits=${bits}@g;
s@readline=0@readline=1@;
s@LIBREADLINE=""@LIBREADLINE=" -lreadline "@;
s@-W1,soname,libj.so@-Wl,-soname,libj.so@
'
sed -i bin/build_libj -e 's@>& make.txt@ 2>\&1 | tee make.txt@'
8 years ago
sed -i f2.c -e 's/_isnan(\*wv)/_isnan(y)/'
touch *.c *.h
sh -o errexit bin/build_jconsole
8 years ago
[ -e j/bin/jconsole ]
sh -o errexit bin/build_libj
8 years ago
[ -e j/bin/libj.so ]
sh -o errexit bin/build_defs
8 years ago
[ -e defs/hostdefs.ijs ] && [ -e defs/netdefs.ijs ]
sh -o errexit bin/build_tsdll
8 years ago
[ -x libtsdll.so ]
sed -i j/bin/profile.ijs -e "
s@userx=[.] *'.j'@userx=. '/.j'@;
s@bin,'/profilex.ijs'@user,'/profilex.ijs'@ ;
8 years ago
/install=./ainstall=. install,'/share/j'
"
'';
checkPhase = ''
echo 'i. 5' | j/bin/jconsole | fgrep "0 1 2 3 4"
'';
installPhase = ''
mkdir -p "$out"
cp -r j/bin "$out/bin"
rm "$out/bin/profilex_template.ijs"
mkdir -p "$out/share/j"
cp -r docs j/addons j/system "$out/share/j"
'';
meta = with stdenv.lib; {
description = "J programming language, an ASCII-based APL successor";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
homepage = http://jsoftware.com/;
};
}