7 stdenv.mkDerivation rec {
12 url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
13 hash = "sha256-Pue50cvjzZ+19iJxfae7VQbxpto7MPgS4jhLh7zk2lA=";
21 makeinfo doc/marst.texi -o doc/marst.info
25 install -m644 doc/marst.info -Dt $out/share/info/
26 install -m644 doc/marst.pdf -Dt $out/share/doc/${pname}/
30 homepage = "https://www.gnu.org/software/marst/";
31 description = "Algol-60-to-C translator";
33 MARST is an Algol-to-C translator. It automatically translates programs
34 written on the algorithmic language Algol 60 to the C programming
37 The MARST package includes three main components:
39 - the translator, MARST, that translates Algol 60 programs to the C
42 - the library, ALGLIB, that contains precompiled standard Algol 60
43 procedures and other necessary library routines. This library is to be
44 used at linking stage. (In the distribution the name libalgol.a is used
47 - the converter, MACVT, that allows to convert existing Algol 60 programs
48 from some other representations to MARST representation.
50 license = licenses.gpl3Plus;
51 maintainers = with maintainers; [ AndersonTorres ];
52 platforms = platforms.unix;