2021-01-23 14:15:07 +01:00
|
|
|
{ lib, stdenv, fetchurl, readline, gettext, ncurses }:
|
2015-03-16 22:57:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gnu-apl";
|
2019-07-01 18:21:51 +02:00
|
|
|
version = "1.8";
|
2015-03-16 22:57:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/apl/apl-${version}.tar.gz";
|
2019-07-01 18:21:51 +02:00
|
|
|
sha256 = "1jxvv2h3y1am1fw6r5sn3say1n0dj8shmscbybl0qhqdia2lqkql";
|
2015-03-16 22:57:51 +01:00
|
|
|
};
|
|
|
|
|
2015-06-12 05:00:13 +02:00
|
|
|
buildInputs = [ readline gettext ncurses ];
|
2015-03-16 22:57:51 +01:00
|
|
|
|
2023-02-19 20:23:32 +01:00
|
|
|
env.NIX_CFLAGS_COMPILE = with lib; toString ((optionals stdenv.cc.isGNU [
|
2022-04-15 18:53:31 +02:00
|
|
|
# Needed with GCC 8
|
2019-01-17 12:24:58 +01:00
|
|
|
"-Wno-error=int-in-bool-context"
|
|
|
|
"-Wno-error=class-memaccess"
|
|
|
|
"-Wno-error=restrict"
|
|
|
|
"-Wno-error=format-truncation"
|
2021-05-07 20:57:33 +02:00
|
|
|
# Needed with GCC 10
|
|
|
|
"-Wno-error=maybe-uninitialized"
|
2022-04-15 18:53:31 +02:00
|
|
|
# Needed with GCC 11
|
|
|
|
"-Wno-error=misleading-indentation"
|
2022-12-23 17:57:29 +01:00
|
|
|
# Needed with GCC 12
|
|
|
|
"-Wno-error=nonnull"
|
|
|
|
"-Wno-error=stringop-overflow"
|
|
|
|
"-Wno-error=use-after-free"
|
2019-10-30 03:23:29 +01:00
|
|
|
]) ++ optional stdenv.cc.isClang "-Wno-error=null-dereference");
|
2017-11-16 18:44:12 +01:00
|
|
|
|
2021-01-23 14:15:07 +01:00
|
|
|
patchPhase = lib.optionalString stdenv.isDarwin ''
|
2016-12-18 04:29:17 +01:00
|
|
|
substituteInPlace src/LApack.cc --replace "malloc.h" "malloc/malloc.h"
|
|
|
|
'';
|
|
|
|
|
2015-03-16 22:57:51 +01:00
|
|
|
postInstall = ''
|
|
|
|
cp -r support-files/ $out/share/doc/
|
|
|
|
find $out/share/doc/support-files -name 'Makefile*' -delete
|
|
|
|
'';
|
|
|
|
|
2021-01-23 14:15:07 +01:00
|
|
|
meta = with lib; {
|
2022-05-29 00:56:40 +02:00
|
|
|
broken = stdenv.isDarwin;
|
2015-03-30 14:54:22 +02:00
|
|
|
description = "Free interpreter for the APL programming language";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/apl/";
|
2015-03-30 14:54:22 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.kovirobi ];
|
2017-03-20 09:24:35 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2021-06-14 18:34:32 +02:00
|
|
|
mainProgram = "apl";
|
2015-03-16 22:57:51 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU APL is a free interpreter for the programming language APL, with an
|
|
|
|
(almost) complete implementation of ISO standard 13751 aka. Programming
|
|
|
|
Language APL, Extended. GNU APL was written and is being maintained by
|
|
|
|
Jürgen Sauermann.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|