nixpkgs/pkgs/development/idris-modules/tparsec.nix

28 lines
612 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
2018-03-16 11:40:17 +00:00
, lib
}:
build-idris-package {
name = "tparsec";
version = "2020-02-11";
2018-03-16 11:40:17 +00:00
2018-09-18 08:38:59 +00:00
ipkgName = "TParsec";
idrisDeps = [ contrib ];
2018-09-18 08:38:59 +00:00
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "gallais";
repo = "idris-tparsec";
rev = "943c64dfcb4e1582696f68312fad88145dc3a8e4";
sha256 = "0pyhkafhx2pwim91ada6qrgacvahl9bpv5m486y8fph4qzf4z6mx";
2018-03-16 11:40:17 +00:00
};
meta = {
description = "TParsec - Total Parser Combinators in Idris";
homepage = "https://github.com/gallais/idris-tparsec";
2018-03-16 11:40:17 +00:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.brainrape ];
};
}