fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, readline, gettext, ncurses }:
2
3stdenv.mkDerivation rec {
4 name = "gnu-apl-${version}";
5 version = "1.5";
6
7 src = fetchurl {
8 url = "mirror://gnu/apl/apl-${version}.tar.gz";
9 sha256 = "0h4diq3wfbdwxp5nm0z4b0p1zq13lwip0y7v28r9v0mbbk8xsfh1";
10 };
11
12 buildInputs = [ readline gettext ncurses ];
13
14 postInstall = ''
15 cp -r support-files/ $out/share/doc/
16 find $out/share/doc/support-files -name 'Makefile*' -delete
17 '';
18
19 meta = with stdenv.lib; {
20 description = "Free interpreter for the APL programming language";
21 homepage = http://www.gnu.org/software/apl/;
22 license = licenses.gpl3Plus;
23 maintainers = [ maintainers.kovirobi ];
24 platforms = stdenv.lib.platforms.linux;
25 inherit version;
26
27 longDescription = ''
28 GNU APL is a free interpreter for the programming language APL, with an
29 (almost) complete implementation of ISO standard 13751 aka. Programming
30 Language APL, Extended. GNU APL was written and is being maintained by
31 Jürgen Sauermann.
32 '';
33 };
34}