2015-03-21 20:28:11 +00:00
|
|
|
{ stdenv, fetchurl, jdk }:
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "picoLisp-${version}";
|
2015-09-27 21:31:08 +01:00
|
|
|
version = "3.1.11";
|
2015-03-21 20:28:11 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.software-lab.de/${name}.tgz";
|
2015-09-27 21:31:08 +01:00
|
|
|
sha256 = "01kgyz0lkz36lxvibv07qd06gwdxvvbain9f9cnya7a12kq3009i";
|
2011-03-28 09:16:15 +01:00
|
|
|
};
|
2015-09-27 21:36:58 +01:00
|
|
|
buildInputs = if stdenv.is64bit then [ jdk ] else [];
|
|
|
|
patchPhase = if stdenv.isArm then ''
|
|
|
|
sed -i s/-m32//g Makefile
|
|
|
|
cat >>Makefile <<EOF
|
|
|
|
ext.o: ext.c
|
|
|
|
\$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
|
|
|
|
ht.o: ht.c
|
|
|
|
\$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
|
|
|
|
EOF
|
|
|
|
''
|
|
|
|
else "";
|
2015-03-21 20:28:11 +00:00
|
|
|
sourceRoot = ''picoLisp/src${optionalString stdenv.is64bit "64"}'';
|
|
|
|
installPhase = ''
|
2011-03-28 09:16:15 +01:00
|
|
|
cd ..
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/share/picolisp" "$out/lib" "$out/bin"
|
2011-03-28 09:16:15 +01:00
|
|
|
cp -r . "$out/share/picolisp/build-dir"
|
|
|
|
ln -s "$out/share/picolisp/build-dir" "$out/lib/picolisp"
|
|
|
|
ln -s "$out/lib/picolisp/bin/picolisp" "$out/bin/picolisp"
|
2015-03-21 20:28:11 +00:00
|
|
|
|
|
|
|
cat >"$out/bin/pil" <<EOF
|
|
|
|
#! /bin/sh
|
|
|
|
$out/bin/picolisp $out/lib/picolisp/lib.l @lib/misc.l @lib/btree.l @lib/db.l @lib/pilog.l
|
|
|
|
EOF
|
|
|
|
chmod +x "$out/bin/pil"
|
|
|
|
|
|
|
|
mkdir -p "$out/share/emacs"
|
|
|
|
ln -s "$out/lib/picolisp/lib/el" "$out/share/emacs/site-lisp"
|
|
|
|
'';
|
|
|
|
|
2011-03-28 09:16:15 +01:00
|
|
|
meta = {
|
2015-03-21 20:28:11 +00:00
|
|
|
description = "A simple Lisp with an integrated database.";
|
|
|
|
homepage = http://picolisp.com/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platform = platforms.all;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2011-03-28 09:16:15 +01:00
|
|
|
};
|
2015-03-21 20:28:11 +00:00
|
|
|
|
2011-03-28 09:16:15 +01:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://www.software-lab.de/down.html";
|
|
|
|
};
|
|
|
|
};
|
2015-03-21 20:28:11 +00:00
|
|
|
}
|