2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-11-08 04:48:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "4th";
|
2022-07-29 03:51:15 +00:00
|
|
|
version = "3.64.1";
|
2020-11-08 04:48:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://sourceforge.net/projects/forth-4th/files/${pname}-${version}/${pname}-${version}-unix.tar.gz";
|
2022-07-29 03:51:15 +00:00
|
|
|
hash = "sha256-+W6nTNsqrf3Dvr+NbSz3uJdrXVbBI3OHR5v/rs7en+M=";
|
2020-11-08 04:48:09 +00:00
|
|
|
};
|
|
|
|
|
2022-03-15 20:01:21 +00:00
|
|
|
patches = [
|
|
|
|
# Fix install manual; report this patch to upstream
|
|
|
|
./001-install-manual-fixup.diff
|
|
|
|
];
|
|
|
|
|
2020-11-08 04:48:09 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"-C sources"
|
2021-03-03 11:38:43 +00:00
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
2020-11-08 04:48:09 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
install -d ${placeholder "out"}/bin \
|
|
|
|
${placeholder "out"}/lib \
|
|
|
|
${placeholder "out"}/share/doc/${pname} \
|
|
|
|
${placeholder "out"}/share/man
|
|
|
|
'';
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"BINARIES=${placeholder "out"}/bin"
|
|
|
|
"LIBRARIES=${placeholder "out"}/lib"
|
|
|
|
"DOCDIR=${placeholder "out"}/share/doc"
|
|
|
|
"MANDIR=${placeholder "out"}/share/man"
|
|
|
|
];
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-11-08 04:48:09 +00:00
|
|
|
homepage = "https://thebeez.home.xs4all.nl/4tH/index.html";
|
2022-03-15 20:01:21 +00:00
|
|
|
description = "A portable Forth compiler";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = platforms.unix;
|
2020-11-08 04:48:09 +00:00
|
|
|
};
|
|
|
|
}
|
2022-03-15 20:01:21 +00:00
|
|
|
# TODO: set Makefile according to platform
|