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 = "2019-09-19";
2018-03-16 11:40:17 +00:00
2018-09-18 09:38:59 +01:00
ipkgName = "TParsec";
idrisDeps = [ contrib ];
2018-09-18 09:38:59 +01:00
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "gallais";
repo = "idris-tparsec";
rev = "cbaea6ec7e5b62536666329940f3ffb5b8b59036";
sha256 = "0bzdv90a83irn7ca268acl19mjg9vxjmc4saa4naj4hdmg7srb2v";
2018-03-16 11:40:17 +00:00
};
meta = {
description = "TParsec - Total Parser Combinators in Idris";
homepage = https://github.com/gallais/idris-tparsec;
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.brainrape ];
};
}