about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/agda/agdarsec/default.nix
blob: 34730ae17f4e2b13fc5032d7591a5bb5aa9c7d36 (plain) (blame)
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
{ lib, mkDerivation, fetchFromGitHub
, standard-library }:

mkDerivation rec {
  pname = "agdarsec";
  version = "0.4.1";

  src = fetchFromGitHub {
    owner = "gallais";
    repo = "agdarsec";
    rev = "v${version}";
    sha256 = "02fqkycvicw6m2xsz8p01aq8n3gj2d2gyx8sgj15l46f8434fy0x";
  };

  everythingFile = "./index.agda";

  includePaths = [ "src" "examples" ];

  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;
  };
}