nixpkgs/pkgs/development/interpreters/j/default.nix

94 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, readline, libedit, bc }:
2015-03-24 12:56:36 +00:00
stdenv.mkDerivation rec {
name = "j-${version}";
version = "807";
2017-11-30 16:14:33 +00:00
jtype = "release";
src = fetchFromGitHub {
owner = "jsoftware";
repo = "jsource";
rev = "j${version}-${jtype}";
sha256 = "1qciw2yg9x996zglvj2461qby038x89xcmfb3qyrh3myn8m1nq2n";
};
2017-11-30 16:14:33 +00:00
buildInputs = [ readline libedit bc ];
2015-03-24 12:56:36 +00:00
bits = if stdenv.is64bit then "64" else "32";
2017-11-30 16:14:33 +00:00
platform =
if (stdenv.isAarch32 || stdenv.isAarch64) then "raspberry" else
2017-11-30 16:14:33 +00:00
if stdenv.isLinux then "linux" else
if stdenv.isDarwin then "darwin" else
"unknown";
doCheck = true;
2016-06-18 12:29:09 +00:00
buildPhase = ''
2017-11-30 16:14:33 +00:00
export SOURCE_DIR=$(pwd)
export HOME=$TMPDIR
export JLIB=$SOURCE_DIR/jlibrary
export jbld=$HOME/bld
export jplatform=${platform}
export jmake=$SOURCE_DIR/make
export jgit=$SOURCE_DIR
export JBIN=$jbld/j${bits}/bin
2017-11-30 16:14:33 +00:00
mkdir -p $JBIN
echo $OUT_DIR
2017-11-30 16:14:33 +00:00
cd make
patchShebangs .
sed -i jvars.sh -e "
s@~/git/jsource@$SOURCE_DIR@;
2017-11-30 16:14:33 +00:00
s@~/jbld@$HOME@;
"
2017-11-30 16:14:33 +00:00
sed -i $JLIB/bin/profile.ijs -e "s@'/usr/share/j/.*'@'$out/share/j'@;"
2016-06-18 12:29:09 +00:00
2017-11-30 16:14:33 +00:00
# For future versions, watch
# https://github.com/jsoftware/jsource/pull/4
cp ./jvars.sh $HOME
2017-11-30 16:14:33 +00:00
echo '
#define jversion "${version}"
#define jplatform "${platform}"
#define jtype "${jtype}" // release,beta,...
#define jlicense "GPL3"
#define jbuilder "nixpkgs" // website or email
2017-11-30 16:14:33 +00:00
' > ../jsrc/jversion.h
./build_jconsole.sh j${bits}
./build_libj.sh j${bits}
2015-03-24 12:56:36 +00:00
'';
checkPhase = ''
2017-11-30 16:14:33 +00:00
echo 'i. 5' | $JBIN/jconsole | fgrep "0 1 2 3 4"
# Now run the real tests
cd $SOURCE_DIR/test
for f in *.ijs
do
echo $f
$JBIN/jconsole < $f > /dev/null || echo FAIL && echo PASS
done
'';
2015-03-24 12:56:36 +00:00
installPhase = ''
mkdir -p "$out"
2017-11-30 16:14:33 +00:00
cp -r $JBIN "$out/bin"
rm $out/bin/*.txt # Remove logs from the bin folder
2015-03-24 12:56:36 +00:00
mkdir -p "$out/share/j"
2017-11-30 16:14:33 +00:00
cp -r $JLIB/{addons,system} "$out/share/j"
cp -r $JLIB/bin "$out"
2015-03-24 12:56:36 +00:00
'';
meta = with stdenv.lib; {
description = "J programming language, an ASCII-based APL successor";
maintainers = with maintainers; [ raskin synthetica ];
platforms = with platforms; linux ++ darwin;
2015-03-24 12:56:36 +00:00
license = licenses.gpl3Plus;
homepage = http://jsoftware.com/;
};
2015-03-24 12:56:36 +00:00
}