Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
flex,
|
|
bison,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "graplang";
|
|
version = "1.46";
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "https://www.lunabase.org/~faber/Vault/software/grap/grap-${finalAttrs.version}.tar.gz";
|
|
hash = "sha512-7n+jLANU/x+wGrpjwYAnf45fQ5M91SwraiCbvUKe6XhWtilhGoT2yTlLkPlTihETTkizLyssW5gj5gbwNHaooA==";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flex
|
|
bison
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Language for typesetting graphs";
|
|
longDescription = ''
|
|
Grap is an Expressive language for describing graphs and incorporating
|
|
them in typeset documents. It is implemented as a preprocessor to
|
|
Kernigan's pic language for describing languages, so any system that can
|
|
use pic can use grap. For sure, TeX and groff can use it.
|
|
'';
|
|
homepage = "https://www.lunabase.org/~faber/Vault/software/grap/";
|
|
changelog = "https://github.com/snorerot13/grap/blob/master/CHANGES";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ afh ];
|
|
mainProgram = "grap";
|
|
};
|
|
})
|