blob: dc99548f1d3e4c55463fd51b297d7f1e265b5e99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
mkDerivation,
fetchFromGitHub,
standard-library,
}:
mkDerivation {
pname = "agdarsec";
version = "0.5.0-unstable-2025-08-05";
src = fetchFromGitHub {
owner = "gallais";
repo = "agdarsec";
rev = "28c5233e905474f3b02cb97fe410beb60364ba80";
sha256 = "sha256-IMxRqZQ7XtPT2cDkoP5mBAj2ovMf5cHcN4U4V5FMEaQ=";
};
postPatch = ''
sed -Ei 's/standard-library-[0-9.]+/standard-library/' agdarsec.agda-lib
'';
buildInputs = [ standard-library ];
meta = {
homepage = "https://gallais.github.io/agdarsec/";
description = "Total Parser Combinators in Agda";
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ turion ];
};
}
|