nixpkgs/pkgs/by-name/_4/_4th/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
}:
2020-11-08 04:48:09 +00:00
stdenv.mkDerivation (finalAttrs: {
2020-11-08 04:48:09 +00:00
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/4th-${finalAttrs.version}/4th-${finalAttrs.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
};
outputs = [ "out" "man" ];
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"
"CC:=$(CC)"
"AR:=$(AR)"
2020-11-08 04:48:09 +00:00
];
preInstall = ''
install -d ${placeholder "out"}/bin \
${placeholder "out"}/lib \
${placeholder "out"}/share/doc/4th \
${placeholder "man"}/share/man
2020-11-08 04:48:09 +00:00
'';
installFlags = [
"BINARIES=${placeholder "out"}/bin"
"LIBRARIES=${placeholder "out"}/lib"
"DOCDIR=${placeholder "out"}/share/doc"
"MANDIR=${placeholder "man"}/share/man"
2020-11-08 04:48:09 +00:00
];
meta = {
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 = lib.licenses.lgpl3Plus;
mainProgram = "4th";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
2020-11-08 04:48:09 +00:00
};
})
2022-03-15 20:01:21 +00:00
# TODO: set Makefile according to platform