2021-01-23 13:15:07 +00:00
|
|
|
{ lib, stdenv, fetchurl, readline, gettext, ncurses }:
|
2015-03-16 21:57:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnu-apl";
|
2019-07-01 17:21:51 +01:00
|
|
|
version = "1.8";
|
2015-03-16 21:57:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/apl/apl-${version}.tar.gz";
|
2019-07-01 17:21:51 +01:00
|
|
|
sha256 = "1jxvv2h3y1am1fw6r5sn3say1n0dj8shmscbybl0qhqdia2lqkql";
|
2015-03-16 21:57:51 +00:00
|
|
|
};
|
|
|
|
|
2015-06-12 04:00:13 +01:00
|
|
|
buildInputs = [ readline gettext ncurses ];
|
2015-03-16 21:57:51 +00:00
|
|
|
|
2019-01-17 11:24:58 +00:00
|
|
|
# Needed with GCC 8
|
2021-01-23 13:15:07 +00:00
|
|
|
NIX_CFLAGS_COMPILE = with lib; toString ((optionals stdenv.cc.isGNU [
|
2019-01-17 11:24:58 +00:00
|
|
|
"-Wno-error=int-in-bool-context"
|
|
|
|
"-Wno-error=class-memaccess"
|
|
|
|
"-Wno-error=restrict"
|
|
|
|
"-Wno-error=format-truncation"
|
2021-05-07 19:57:33 +01:00
|
|
|
# Needed with GCC 10
|
|
|
|
"-Wno-error=maybe-uninitialized"
|
2019-10-30 02:23:29 +00:00
|
|
|
]) ++ optional stdenv.cc.isClang "-Wno-error=null-dereference");
|
2017-11-16 17:44:12 +00:00
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
patchPhase = lib.optionalString stdenv.isDarwin ''
|
2016-12-18 03:29:17 +00:00
|
|
|
substituteInPlace src/LApack.cc --replace "malloc.h" "malloc/malloc.h"
|
|
|
|
'';
|
|
|
|
|
2015-03-16 21:57:51 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -r support-files/ $out/share/doc/
|
|
|
|
find $out/share/doc/support-files -name 'Makefile*' -delete
|
|
|
|
'';
|
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
meta = with lib; {
|
2015-03-30 13:54:22 +01:00
|
|
|
description = "Free interpreter for the APL programming language";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/apl/";
|
2015-03-30 13:54:22 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.kovirobi ];
|
2017-03-20 08:24:35 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-03-30 13:54:22 +01:00
|
|
|
inherit version;
|
2021-06-14 17:34:32 +01:00
|
|
|
mainProgram = "apl";
|
2015-03-16 21:57:51 +00: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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|