mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28 lines
614 B
Nix
28 lines
614 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, contrib
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
name = "tparsec";
|
|
version = "2020-02-11";
|
|
|
|
ipkgName = "TParsec";
|
|
|
|
idrisDeps = [ contrib ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gallais";
|
|
repo = "idris-tparsec";
|
|
rev = "943c64dfcb4e1582696f68312fad88145dc3a8e4";
|
|
sha256 = "0pyhkafhx2pwim91ada6qrgacvahl9bpv5m486y8fph4qzf4z6mx";
|
|
};
|
|
|
|
meta = {
|
|
description = "TParsec - Total Parser Combinators in Idris";
|
|
homepage = "https://github.com/gallais/idris-tparsec";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|