lol
1{ build-idris-package
2, fetchFromGitHub
3, lib
4}:
5build-idris-package {
6 name = "tparsec";
7 version = "2018-06-26";
8
9 src = fetchFromGitHub {
10 owner = "gallais";
11 repo = "idris-tparsec";
12 rev = "ca32d1a83f3de95f8979d48016e79d010f47b3c2";
13 sha256 = "1zjzk8xjmyyx1qwrdwwg7yjzcgj5wkbwpx8a3wpbj5sv4b5s2r30";
14 };
15
16 meta = {
17 description = "TParsec - Total Parser Combinators in Idris";
18 homepage = https://github.com/gallais/idris-tparsec;
19 license = lib.licenses.gpl3;
20 maintainers = [ lib.maintainers.brainrape ];
21 };
22}