mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
75 lines
1.8 KiB
Nix
75 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
curl,
|
|
gmp,
|
|
gsl,
|
|
mpfr,
|
|
ncurses,
|
|
plotutils,
|
|
postgresql,
|
|
pkg-config,
|
|
withPDFDoc ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "algol68g";
|
|
version = "3.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://jmvdveer.home.xs4all.nl/algol68g-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-hKiRMU98sZhGgHhjgtwUNSIv2iPgb4T+dgYw58IGK8Q=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
] ++ lib.optionals withPDFDoc [ "doc" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
mpfr
|
|
ncurses
|
|
gmp
|
|
gsl
|
|
plotutils
|
|
postgresql
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
postInstall =
|
|
let
|
|
pdfdoc = fetchurl {
|
|
url = "https://jmvdveer.home.xs4all.nl/learning-algol-68-genie.pdf";
|
|
hash = "sha256-QCwn1e/lVfTYTeolCFErvfMhvwCgsBnASqq2K+NYmlU=";
|
|
};
|
|
in
|
|
lib.optionalString withPDFDoc ''
|
|
install -m644 ${pdfdoc} ${placeholder "doc"}/share/doc/algol68g/learning-algol-68-genie.pdf
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html";
|
|
description = "Algol 68 Genie compiler-interpreter";
|
|
longDescription = ''
|
|
Algol 68 Genie (a68g) is a recent checkout hybrid compiler-interpreter,
|
|
written from scratch by Marcel van der Veer. It ranks among the most
|
|
complete Algol 68 implementations. It implements for example arbitrary
|
|
precision arithmetic, complex numbers, parallel processing, partial
|
|
parametrisation and formatted transput, as well as support for curses,
|
|
regular expressions and sounds. It can be linked to GNU plotutils, the GNU
|
|
scientific library and PostgreSQL.
|
|
'';
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "a68g";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|