-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Expand file tree
/
Copy pathgenerated-packages.nix
More file actions
6309 lines (5763 loc) · 186 KB
/
generated-packages.nix
File metadata and controls
6309 lines (5763 loc) · 186 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
pkgs/development/lua-modules/generated-packages.nix is an auto-generated file -- DO NOT EDIT!
Regenerate it with: nix run nixpkgs#luarocks-packages-updater
You can customize the generated packages in pkgs/development/lua-modules/overrides.nix
*/
{
stdenv,
lib,
fetchurl,
fetchgit,
callPackage,
...
}:
final: prev: {
alt-getopt = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "alt-getopt";
version = "0.8.0-2";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/alt-getopt-0.8.0-2.rockspec";
sha256 = "1x1wb351n8c9aghgrlwkjg4crriwby18drzrz3280mw9cildg11v";
}).outPath;
src = fetchFromGitHub {
owner = "cheusov";
repo = "lua-alt-getopt";
tag = "0.8.0";
hash = "sha256-OxtMNB8++cVQ/gQjntLUt3WYopGhYb1VbIUAZEzJB88=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/cheusov/lua-alt-getopt";
maintainers = with lib.maintainers; [ arobyn ];
license.fullName = "MIT/X11";
description = "Process application arguments the same way as getopt_long";
longDescription = ''
alt-getopt is a module for Lua programming language for processing
application's arguments the same way BSD/GNU getopt_long(3) functions do.
The main goal is compatibility with SUS "Utility Syntax Guidelines"
guidelines 3-13.
'';
};
}
) { };
ansicolors = callPackage (
{
buildLuarocksPackage,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "ansicolors";
version = "1.0.2-3";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/ansicolors-1.0.2-3.rockspec";
sha256 = "19y962xdx5ldl3596ywdl7n825dffz9al6j6rx6pbgmhb7pi8s5v";
}).outPath;
src = fetchurl {
url = "https://github.com/kikito/ansicolors.lua/archive/v1.0.2.tar.gz";
sha256 = "0r4xi57njldmar9pn77l0vr5701rpmilrm51spv45lz0q9js8xps";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/kikito/ansicolors.lua";
maintainers = with lib.maintainers; [ Freed-Wu ];
license.fullName = "MIT <http://opensource.org/licenses/MIT>";
description = "Library for color Manipulation.";
longDescription = ''
Ansicolors is a simple Lua function for printing to the console in color.
'';
};
}
) { };
argparse = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaAtLeast,
luaOlder,
}:
buildLuarocksPackage {
pname = "argparse";
version = "0.7.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/argparse-0.7.1-1.rockspec";
sha256 = "116iaczq6glzzin6qqa2zn7i22hdyzzsq6mzjiqnz6x1qmi0hig8";
}).outPath;
src = fetchzip {
url = "https://github.com/luarocks/argparse/archive/0.7.1.zip";
sha256 = "0idg79d0dfis4qhbkbjlmddq87np75hb2vj41i6prjpvqacvg5v1";
};
disabled = luaOlder "5.1" || luaAtLeast "5.5";
meta = {
homepage = "https://github.com/luarocks/argparse";
license.fullName = "MIT";
description = "A feature-rich command-line argument parser";
longDescription = "Argparse supports positional arguments, options, flags, optional arguments, subcommands and more. Argparse automatically generates usage, help, and error messages, and can generate shell completion scripts.";
};
}
) { };
basexx = callPackage (
{
buildLuarocksPackage,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "basexx";
version = "0.4.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/basexx-0.4.1-1.rockspec";
sha256 = "0kmydxm2wywl18cgj303apsx7hnfd68a9hx9yhq10fj7yfcxzv5f";
}).outPath;
src = fetchurl {
url = "https://github.com/aiq/basexx/archive/v0.4.1.tar.gz";
sha256 = "1rnz6xixxqwy0q6y2hi14rfid4w47h69gfi0rnlq24fz8q2b0qpz";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/aiq/basexx";
license.fullName = "MIT";
description = "A base2, base16, base32, base64 and base85 library for Lua";
longDescription = "A Lua library which provides base2(bitfield), base16(hex), base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding.";
};
}
) { };
bcrypt = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "bcrypt";
version = "2.3-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/bcrypt-2.3-1.rockspec";
sha256 = "1zjy7sflyd50jvp603hmw0sg3rw5xyray0spzv5x5ky9hxivcdrf";
}).outPath;
src = fetchFromGitHub {
owner = "mikejsavage";
repo = "lua-bcrypt";
tag = "v2.3-1";
hash = "sha256-wd9AbzfD3j9fyTq3toscitPsTEE49YoeSstwfO+3QGo=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "http://github.com/mikejsavage/lua-bcrypt";
maintainers = with lib.maintainers; [ ulysseszhan ];
license.fullName = "ISC";
description = "A Lua wrapper for bcrypt";
};
}
) { };
binaryheap = callPackage (
{
buildLuarocksPackage,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "binaryheap";
version = "0.4-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/binaryheap-0.4-1.rockspec";
sha256 = "1ah37lhskmrb26by5ygs7jblx7qnf6mphgw8kwhw0yacvmkcbql4";
}).outPath;
src = fetchurl {
url = "https://github.com/Tieske/binaryheap.lua/archive/version_0v4.tar.gz";
sha256 = "0f5l4nb5s7dycbkgh3rrl7pf0npcf9k6m2gr2bsn09fjyb3bdc8h";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/Tieske/binaryheap.lua";
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT/X11";
description = "Binary heap implementation in pure Lua";
longDescription = ''
Binary heaps are an efficient sorting algorithm. This module
implements a plain binary heap (without reverse lookup) and a
'unique' binary heap (with unique payloads and reverse lookup).
'';
};
}
) { };
bit32 = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaAtLeast,
luaOlder,
}:
buildLuarocksPackage {
pname = "bit32";
version = "5.3.5.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/bit32-5.3.5.1-1.rockspec";
sha256 = "11mg0hmmil92hkwamm91ghih6ys9pqsakx0z9jgnqxymnl887j51";
}).outPath;
src = fetchzip {
url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.zip";
sha256 = "1caxn228gx48g6kymp9w7kczgxcg0v0cd5ixsx8viybzkd60dcn4";
};
disabled = luaOlder "5.1" || luaAtLeast "5.5";
meta = {
homepage = "http://www.lua.org/manual/5.2/manual.html#6.7";
maintainers = with lib.maintainers; [ lblasc ];
license.fullName = "MIT";
description = "Lua 5.2 bit manipulation library";
longDescription = ''
bit32 is the native Lua 5.2 bit manipulation library, in the version
from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3 and 5.4.
'';
};
}
) { };
busted = callPackage (
{
buildLuarocksPackage,
dkjson,
fetchFromGitHub,
fetchurl,
lua-term,
luaOlder,
lua_cliargs,
luassert,
luasystem,
mediator_lua,
penlight,
say,
}:
buildLuarocksPackage {
pname = "busted";
version = "2.3.0-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/busted-2.3.0-1.rockspec";
sha256 = "1df41k03r0fy8l62dqywqjlxwmjhifk2krqq675w1cra28z8hb14";
}).outPath;
src = fetchFromGitHub {
owner = "lunarmodules";
repo = "busted";
tag = "v2.3.0";
hash = "sha256-ZSfnbsDiaIo/abVpwb/LV5Ktp5wFSZQNO0OdbnjqVSs=";
};
disabled = luaOlder "5.1";
propagatedBuildInputs = [
dkjson
lua-term
lua_cliargs
luassert
luasystem
mediator_lua
penlight
say
];
meta = {
homepage = "https://lunarmodules.github.io/busted/";
license.fullName = "MIT <http://opensource.org/licenses/MIT>";
description = "Elegant Lua unit testing";
longDescription = ''
An elegant, extensible, testing framework.
Ships with a large amount of useful asserts,
plus the ability to write your own. Output
in pretty or plain terminal format, JSON,
or TAP for CI integration. Great for TDD
and unit, integration, and functional tests.
'';
};
}
) { };
busted-htest = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
}:
buildLuarocksPackage {
pname = "busted-htest";
version = "1.0.0-2";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/busted-htest-1.0.0-2.rockspec";
sha256 = "10d2pbh2rfy4ygp40h8br4w5j1z5syq5pn6knd4bbnacmswnmcdl";
}).outPath;
src = fetchFromGitHub {
owner = "hishamhm";
repo = "busted-htest";
tag = "1.0.0";
hash = "sha256-tGAQUSeDt+OV/TBAJo/JFdyeBRRZaIQEJG+SKcCaQhs=";
};
meta = {
homepage = "https://github.com/hishamhm/busted-htest";
maintainers = with lib.maintainers; [ mrcjkb ];
license.fullName = "MIT";
description = "A pretty output handler for Busted";
longDescription = ''
This is an alternative output handler for Busted,
a unit testing framework for Lua.
It is based on the gtest output handler that
is bundled with Busted.
'';
};
}
) { };
cassowary = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
penlight,
}:
buildLuarocksPackage {
pname = "cassowary";
version = "2.3.2-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/cassowary-2.3.2-1.rockspec";
sha256 = "0c6sflm8zpgbcdj47s3rd34h69h3nqcciaaqd1wdx5m0lwc3mii0";
}).outPath;
src = fetchFromGitHub {
owner = "sile-typesetter";
repo = "cassowary.lua";
tag = "v2.3.2";
hash = "sha256-wIVuf1L3g2BCM+zW4Nt1IyU6xaP4yYuzxHjVDxsgdNM=";
};
disabled = luaOlder "5.1";
propagatedBuildInputs = [ penlight ];
meta = {
homepage = "https://github.com/sile-typesetter/cassowary.lua";
maintainers = with lib.maintainers; [ alerque ];
license.fullName = "Apache 2";
description = "The cassowary constraint solver";
longDescription = ''
This is a Lua port of the Cassowary constraint solving toolkit.
It allows you to use Lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those
inequalities.'';
};
}
) { };
cldr = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
penlight,
}:
buildLuarocksPackage {
pname = "cldr";
version = "0.3.0-0";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/cldr-0.3.0-0.rockspec";
sha256 = "1fnr8k713w21v7hc64s4w5lgcgnbphq3gm69pisc2s4wq2fkija1";
}).outPath;
src = fetchFromGitHub {
owner = "alerque";
repo = "cldr-lua";
tag = "v0.3.0";
hash = "sha256-5LY0YxHACtreP38biDZD97bkPuuT7an/Z1VBXEJYjkI=";
};
disabled = luaOlder "5.1";
propagatedBuildInputs = [ penlight ];
meta = {
homepage = "https://github.com/alerque/cldr-lua";
maintainers = with lib.maintainers; [ alerque ];
license.fullName = "MIT/ICU";
description = "Lua interface to Unicode CLDR data";
longDescription = "Unicode CLDR (Common Locale Data Repository) data and Lua interface.";
};
}
) { };
commons-nvim = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaOlder,
}:
buildLuarocksPackage {
pname = "commons.nvim";
version = "27.0.0-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/commons.nvim-27.0.0-1.rockspec";
sha256 = "0gz1943nrlpi7pq4izip6fb0pkfk13h5322qhynx27m82nm129mq";
}).outPath;
src = fetchzip {
url = "https://github.com/linrongbin16/commons.nvim/archive/ac18006fe9e47cf6e53c79e333465d5a75455357.zip";
sha256 = "10qlgly499lyhvmhj5lqv4jqzyrlx6h7h7gjbyrgzpjqyjr99m1l";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://linrongbin16.github.io/commons.nvim/";
maintainers = with lib.maintainers; [ mrcjkb ];
license.fullName = "MIT";
description = "The commons lua library for Neovim plugin project.";
};
}
) { };
compat53 = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaAtLeast,
luaOlder,
}:
buildLuarocksPackage {
pname = "compat53";
version = "0.14.4-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/compat53-0.14.4-1.rockspec";
sha256 = "01ahfb6g7ibxrlvypvrsry4pwzfj978afjfa9c5w1s7ahjf95d40";
}).outPath;
src = fetchzip {
url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.14.4.zip";
sha256 = "16mvf6qq290m8pla3fq3r6d6fmbbysjy8b5rxi40hchs4ngrn847";
};
disabled = luaOlder "5.1" || luaAtLeast "5.5";
meta = {
homepage = "https://github.com/lunarmodules/lua-compat-5.3";
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT";
description = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1";
longDescription = ''
This is a small module that aims to make it easier to write Lua
code in a Lua-5.3-style that runs on Lua 5.1+.
It does *not* make Lua 5.2 (or even 5.1) entirely compatible
with Lua 5.3, but it brings the API closer to that of Lua 5.3.
'';
};
}
) { };
cosmo = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
lpeg,
}:
buildLuarocksPackage {
pname = "cosmo";
version = "16.06.04-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/cosmo-16.06.04-1.rockspec";
sha256 = "0ipv1hrlhvaz1myz6qxabq7b7kb3bz456cya3r292487a3g9h9pb";
}).outPath;
src = fetchFromGitHub {
owner = "mascarenhas";
repo = "cosmo";
tag = "v16.06.04";
hash = "sha256-mJE5GkDnfZ3qAQyyyKj+aXOtlITeYs8lerGJSTzU/Tk=";
};
propagatedBuildInputs = [ lpeg ];
meta = {
homepage = "http://cosmo.luaforge.net";
license.fullName = "MIT/X11";
description = "Safe templates for Lua";
longDescription = ''
Cosmo is a "safe templates" engine. It allows you to fill nested templates,
providing many of the advantages of Turing-complete template engines,
without without the downside of allowing arbitrary code in the templates.
'';
};
}
) { };
coxpcall = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
}:
buildLuarocksPackage {
pname = "coxpcall";
version = "1.17.0-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/coxpcall-1.17.0-1.rockspec";
sha256 = "0mf0nggg4ajahy5y1q5zh2zx9rmgzw06572bxx6k8b736b8j7gca";
}).outPath;
src = fetchFromGitHub {
owner = "keplerproject";
repo = "coxpcall";
tag = "v1_17_0";
hash = "sha256-EW8pGI9jiGutNVNmyiCP5sIVYZe2rJQc03OrKXIOeMw=";
};
meta = {
homepage = "http://keplerproject.github.io/coxpcall";
license.fullName = "MIT/X11";
description = "Coroutine safe xpcall and pcall";
longDescription = ''
Encapsulates the protected calls with a coroutine based loop, so errors can
be handled without the usual Lua 5.x pcall/xpcall issues with coroutines
yielding inside the call to pcall or xpcall.
'';
};
}
) { };
cqueues = callPackage (
{
buildLuarocksPackage,
fetchurl,
lua,
}:
buildLuarocksPackage {
pname = "cqueues";
version = "20200726.52-0";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/cqueues-20200726.52-0.rockspec";
sha256 = "0w2kq9w0wda56k02rjmvmzccz6bc3mn70s9v7npjadh85i5zlhhp";
}).outPath;
src = fetchurl {
url = "https://github.com/wahern/cqueues/archive/rel-20200726.tar.gz";
sha256 = "0lhd02ag3r1sxr2hx847rdjkddm04l1vf5234v5cz9bd4kfjw4cy";
};
disabled = lua.luaversion != "5.2";
meta = {
homepage = "http://25thandclement.com/~william/projects/cqueues.html";
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT/X11";
description = "Continuation Queues: Embeddable asynchronous networking, threading, and notification framework for Lua on Unix.";
};
}
) { };
cyan = callPackage (
{
argparse,
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luafilesystem,
luasystem,
tl,
}:
buildLuarocksPackage {
pname = "cyan";
version = "0.4.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/cyan-0.4.1-1.rockspec";
sha256 = "0m0br7fvczkaqx6zqj7ykmivw7fnizvi34cqp2mvzxn30hsa4hyw";
}).outPath;
src = fetchFromGitHub {
owner = "teal-language";
repo = "cyan";
tag = "v0.4.1";
hash = "sha256-jvBmOC1SMnuwgwtK6sPCDma+S5RyhItc6YjzMPULzSw=";
};
propagatedBuildInputs = [
argparse
luafilesystem
luasystem
tl
];
meta = {
homepage = "https://github.com/teal-language/cyan";
license.fullName = "MIT";
description = "A build system for the Teal language";
longDescription = "A build system for the Teal language along with an api for external tooling to work with Teal";
};
}
) { };
datafile = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "datafile";
version = "0.11-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/datafile-0.11-1.rockspec";
sha256 = "09i0yqakzc342f2qqa0yxkdyz55y9s5v036x3xjwpfjry8yywc6q";
}).outPath;
src = fetchFromGitHub {
owner = "hishamhm";
repo = "datafile";
tag = "v0.11";
hash = "sha256-aHdxFJ2IB9v9UMK7vqk7tUA0rLmfvRd0nzhc9JO8AlQ=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "http://github.com/hishamhm/datafile";
license.fullName = "MIT/X11";
description = "A library for handling paths when loading data files";
longDescription = ''
datafile is a library for avoiding hardcoded paths
when loading resource files in Lua modules.
'';
};
}
) { };
digestif = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
lpeg,
luaOlder,
luafilesystem,
}:
buildLuarocksPackage {
pname = "digestif";
version = "0.6-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/digestif-0.6-1.rockspec";
sha256 = "0hp7r97b6ivywaxb02cbnm23gjz71mak5ag6m3hi7f3mjqxxxh8k";
}).outPath;
src = fetchFromGitHub {
owner = "astoff";
repo = "digestif";
tag = "v0.6";
hash = "sha256-sGwKt9suRVNrbRJlhNMHzc5r4sK/fvUc7smxmxmrn8Y=";
};
disabled = luaOlder "5.3";
propagatedBuildInputs = [
lpeg
luafilesystem
];
meta = {
homepage = "https://github.com/astoff/digestif/";
license.fullName = "GPLv3+ and other free licenses";
description = "A code analyzer for TeX";
longDescription = ''
A code analyzer for TeX documents, including LaTeX and BibTeX. It
comes with a Language Server Protocol implementation, so it can
run as a plug-in to many different text editors.
'';
};
}
) { };
dkjson = callPackage (
{
buildLuarocksPackage,
fetchurl,
luaAtLeast,
luaOlder,
}:
buildLuarocksPackage {
pname = "dkjson";
version = "2.8-2";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/dkjson-2.8-2.rockspec";
sha256 = "0hr4vfmf64kvmqbnr1vx4p6gl3mmiq1hg5jd60rqwplsiaib2r67";
}).outPath;
src = fetchurl {
url = "https://dkolf.de/dkjson-lua/dkjson-2.8.tar.gz";
sha256 = "0chmlcv8498n313x19aampwvz2s1pp4zpcvvxdhwihcixcxwvs14";
};
disabled = luaOlder "5.1" || luaAtLeast "5.6";
meta = {
homepage = "https://dkolf.de/dkjson-lua/";
license.fullName = "MIT/X11";
description = "David Kolf's JSON module for Lua";
longDescription = ''
dkjson is a module for encoding and decoding JSON data. It supports UTF-8.
JSON (JavaScript Object Notation) is a format for serializing data based
on the syntax for JavaScript data structures.
dkjson is written in Lua without any dependencies, but
when LPeg is available dkjson can use it to speed up decoding.
'';
};
}
) { };
enet = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "enet";
version = "1.2-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/enet-1.2-1.rockspec";
sha256 = "0jf0qxf3lsrmc1dww7b7i6srqp2cy8caqv9f1rbva7f6rnppxzra";
}).outPath;
src = fetchFromGitHub {
owner = "leafo";
repo = "lua-enet";
tag = "v1.2";
hash = "sha256-GomfJAPbR+y469LuaNPrkab0Wd3xAsAhT4uqbDo8BUA=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "http://leafo.net/lua-enet";
maintainers = with lib.maintainers; [ ulysseszhan ];
license.fullName = "MIT";
description = "A library for doing network communication in Lua";
longDescription = ''
Binding to ENet, network communication layer on top of UDP.
'';
};
}
) { };
etlua = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "etlua";
version = "1.3.0-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/etlua-1.3.0-1.rockspec";
sha256 = "1g98ibp7n2p4js39din2balncjnxxdbaq6msw92z072s2cccx9cf";
}).outPath;
src = fetchFromGitHub {
owner = "leafo";
repo = "etlua";
tag = "v1.3.0";
hash = "sha256-CVCNeivP6tefUMseoZjiO5wMYBEPNWMy2+0KnmEIuT0=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/leafo/etlua";
maintainers = with lib.maintainers; [ ulysseszhan ];
license.fullName = "MIT";
description = "Embedded templates for Lua";
longDescription = ''
Allows you to render ERB style templates but with Lua. Supports <% %>, <%=
%> and <%- %> tags (with optional newline slurping) for embedding code.
'';
};
}
) { };
fennel = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "fennel";
version = "1.6.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/fennel-1.6.1-1.rockspec";
sha256 = "1r6sn77f321k7i4ch4n02k0l1q0dlpdgifchpxzknwknir1bvmnk";
}).outPath;
src = fetchFromGitHub {
owner = "bakpakin";
repo = "Fennel";
tag = "1.6.1";
hash = "sha256-MLXLkRKlxqvEOogM5I4uHxnlRLjK8Pbeq9b1+kAgqFg=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://fennel-lang.org";
maintainers = with lib.maintainers; [ misterio77 ];
license.fullName = "MIT";
description = "A lisp that compiles to Lua";
longDescription = "Get your parens on--write macros and homoiconic code on the Lua runtime!";
};
}
) { };
fidget-nvim = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaOlder,
}:
buildLuarocksPackage {
pname = "fidget.nvim";
version = "1.6.0-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/fidget.nvim-1.6.0-1.rockspec";
sha256 = "1jra7xv2ifsy5p3zwbiv70ynligjh8wx48ykmbi2cagd2vz9arwz";
}).outPath;
src = fetchzip {
url = "https://github.com/j-hui/fidget.nvim/archive/v1.6.0.zip";
sha256 = "120q3dzq142xda1bzw8chf02k86dw21n8qjznlaxxpqlpk9sl6hr";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/j-hui/fidget.nvim";
maintainers = with lib.maintainers; [ mrcjkb ];
license.fullName = "MIT";
description = "Extensible UI for Neovim notifications and LSP progress messages.";
longDescription = ''
Fidget is an unintrusive window in the corner of your editor that manages its own lifetime.
Its goals are:
- to provide a UI for Neovim's $/progress handler
- to provide a configurable vim.notify() backend
- to support basic ASCII animations (Fidget spinners!) to indicate signs of life
- to be easy to configure, sane to maintain, and fun to hack on
There's only so much information one can stash into the status line.
Besides, who doesn't love a little bit of terminal eye candy, as a treat?'';
};
}
) { };
fifo = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
}:
buildLuarocksPackage {
pname = "fifo";
version = "0.2-0";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/fifo-0.2-0.rockspec";
sha256 = "0vr9apmai2cyra2n573nr3dyk929gzcs4nm1096jdxcixmvh2ymq";
}).outPath;
src = fetchzip {
url = "https://github.com/daurnimator/fifo.lua/archive/0.2.zip";
sha256 = "1800k7h5hxsvm05bjdr65djjml678lwb0661cll78z1ys2037nzn";
};
meta = {
homepage = "https://github.com/daurnimator/fifo.lua";
license.fullName = "MIT/X11";
description = "A lua library/'class' that implements a FIFO";
};
}
) { };
fluent = callPackage (
{
buildLuarocksPackage,
cldr,
fetchFromGitHub,
fetchurl,
luaOlder,
luaepnf,
penlight,
}:
buildLuarocksPackage {
pname = "fluent";
version = "0.2.0-0";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/fluent-0.2.0-0.rockspec";
sha256 = "1x3nk8xdf923rvdijr0jx8v6w3wxxfch7ri3kxca0pw80b5bc2fa";
}).outPath;
src = fetchFromGitHub {
owner = "alerque";
repo = "fluent-lua";
tag = "v0.2.0";
hash = "sha256-uDJWhQ/fDD9ZbYOgPk1FDlU3A3DAZw3Ujx92BglFWoo=";
};
disabled = luaOlder "5.1";
propagatedBuildInputs = [
cldr
luaepnf
penlight
];
meta = {
homepage = "https://github.com/alerque/fluent-lua";
maintainers = with lib.maintainers; [ alerque ];
license.fullName = "MIT";
description = "Lua implementation of Project Fluent";
longDescription = ''
A Lua port of Project Fluent, a localization paradigm designed to unleash
the entire expressive power of natural language translations.'';
};
}
) { };
funnyfiles-nvim = callPackage (
{
buildLuarocksPackage,
fetchurl,
fetchzip,
luaOlder,
}:
buildLuarocksPackage {
pname = "funnyfiles.nvim";
version = "1.0.1-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/funnyfiles.nvim-1.0.1-1.rockspec";
sha256 = "1r3cgx8wvc1c4syk167m94ws513g0cdmmxnymf3zyidlszdwamy5";
}).outPath;
src = fetchzip {
url = "https://github.com/aikooo7/funnyfiles.nvim/archive/v1.0.1.zip";
sha256 = "00p026r05gldbf18mmv8da9ap09di8dhy0rrd586pr2s2s36nzpd";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/aikooo7/funnyfiles.nvim";
maintainers = with lib.maintainers; [ mrcjkb ];
license.fullName = "MIT";
description = "This plugin is a way of creating/deleting files/folders without needing to open a file explorer.";
};
}
) { };