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

26 lines
581 B
Nix
Raw Permalink Normal View History

2016-09-27 06:11:09 +00:00
{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package {
name = "lightyear";
2018-03-16 11:40:17 +00:00
version = "2017-09-10";
2018-07-02 03:18:21 +00:00
idrisDeps = [ effects ];
2016-09-27 06:11:09 +00:00
src = fetchFromGitHub {
owner = "ziman";
repo = "lightyear";
rev = "f737e25a09c1fe7c5fff063c53bd7458be232cc8";
sha256 = "05x66abhpbdm6yr0afbwfk6w04ysdk78gylj5alhgwhy4jqakv29";
2016-09-27 06:11:09 +00:00
};
meta = {
description = "Parser combinators for Idris";
homepage = "https://github.com/ziman/lightyear";
2016-09-27 06:11:09 +00:00
license = lib.licenses.bsd2;
2018-03-16 11:40:17 +00:00
maintainers = with lib.maintainers; [ siddharthist brainrape ];
2016-09-27 06:11:09 +00:00
};
}