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
30 lines
606 B
Nix
30 lines
606 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
standard-library,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "agdarsec";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gallais";
|
|
repo = "agdarsec";
|
|
rev = "v${version}";
|
|
sha256 = "02fqkycvicw6m2xsz8p01aq8n3gj2d2gyx8sgj15l46f8434fy0x";
|
|
};
|
|
|
|
buildInputs = [ standard-library ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gallais.github.io/agdarsec/";
|
|
description = "Total Parser Combinators in Agda";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ turion ];
|
|
broken = true;
|
|
};
|
|
}
|