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