aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/hardware.scm
blob: 3d8fa833a29d5c460b5e8d44ae64acfb77781158 (about) (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2021, 2023 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2021 Léo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Denis Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2022 Marcel Kupiec <formbi@protonmail.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Spencer Skylar Chan <schan12@umd.edu>
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages hardware)
  #:use-module (gnu packages)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages avahi)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages bootloaders)
  #:use-module (gnu packages cdrom)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages check)
  #:use-module (gnu packages cmake)
  #:use-module (gnu packages cpp)
  #:use-module (gnu packages crypto)
  #:use-module (gnu packages cups)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages debian)
  #:use-module (gnu packages disk)
  #:use-module (gnu packages documentation)
  #:use-module (gnu packages flex)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages gcc)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages haskell-xyz)
  #:use-module (gnu packages high-availability)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages lxqt)
  #:use-module (gnu packages mtools)
  #:use-module (gnu packages package-management)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages networking)
  #:use-module (gnu packages openldap)
  #:use-module (gnu packages onc-rpc)
  #:use-module (gnu packages pciutils)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages polkit)
  #:use-module (gnu packages protobuf)
  #:use-module (gnu packages pulseaudio)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-crypto)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages scanner)
  #:use-module (gnu packages security-token)
  #:use-module (gnu packages readline)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages video)
  #:use-module (gnu packages virtualization)
  #:use-module (gnu packages vulkan)
  #:use-module (gnu packages web)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages xorg)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system glib-or-gtk)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system meson)
  #:use-module (guix build-system perl)
  #:use-module (guix build-system pyproject)
  #:use-module (guix build-system python)
  #:use-module (guix download)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix svn-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (srfi srfi-1))

;; This is a module for packages related to physical hardware that don't (yet)
;; have a more specific home like gps.scm, security-token.scm, &c.

(define-public envytools
  (let ((commit "9014a51b1436461c7b3b005bdae72bf4912f4e72")
        (revision "1"))
    (package
      (name "envytools")
      (version (git-version "0.1" revision commit))
      (home-page "https://github.com/envytools/envytools")
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url home-page)
                      (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "1lqh73yxd5jgv7b770m37zimzhyn4f3053jybkixkhvm93zka8vd"))))
      (build-system cmake-build-system)
      (native-inputs (list bison flex pkg-config))
      (inputs (list libxml2 python))
      (synopsis "Reverse-engineering tools for Nvidia's proprietary GPU drivers")
      (description
       "This package provides tools for exploring Nvidia's proprietary GPU
drivers, including an assembler and a disassembler for several GPU instruction
sets, and tools to deal with register databases.")
      (license license:expat))))

(define-public hw-probe
  (package
    (name "hw-probe")
    (version "1.6.5")
    (source
     (origin
       (method git-fetch)
       (uri
        (git-reference
         (url "https://github.com/linuxhw/hw-probe")
         (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1sbp0scdi54zwgvb1s3ki3cw8xnxaxzm5cicq2nn3a2b6n1d4ljs"))))
    (build-system perl-build-system)
    (arguments
     (list
      #:tests? #f                       ;no test suite
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch-source
            (lambda* (#:key inputs outputs #:allow-other-keys)
              ;; Correct install prefix.
              (substitute* "Makefile"
                (("/usr") #$output))

              (define preserve
                ;; Either not available in Guix or better left untouched.
                '("$HWInfoCmd" "$CurlCmd" "$NvidiaSmi_Path" ;perl variables
                  "vblank_mode=0" "DRI_PRIME=1" ;environment variables
                  "sha512"                      ;fall-back to sha512sum
                  ;; hp-probe comes from the full 'hplib' package, which would
                  ;; pull Qt and increase the size of the closure by 600 MiB.
                  "hp-probe"

                  ;; Android.
                  "apk" "getprop"

                  ;; BSD-related.
                  "atactl" "acpiconf"
                  "bsdhwmon" "camcontrol"
                  "devinfo" "diskinfo" "disklabel"
                  "freebsd-version" "ghostbsd-version"
                  "hwstat" "kldstat" "mfiutil" "modstat" "mport"
                  "ofwdump" "opnsense-version"
                  "pcictl" "pcidump" "pciconf" "pkg" "pkg_info" "pkgin"
                  "start-hello" "sysinfo" "usbconfig" "usbdevs"

                  ;; Package managers.
                  "eopkg" "pacman" "swupd"

                  ;; Not packaged in Guix (TODO).
                  "apm"                                      ;apmd
                  "drm_info"                                 ;drm_info
                  "megactl"                                  ;megactl
                  "lspnp"                                    ;pnputils
                  "lsb_release"                              ;lsb-release
                  "lsinitrd"                                 ;dracut
                  "optirun"                                  ;bumblebee
                  "usbctl"                                   ;usbctl
                  "monitor-get-edid"                         ;monitor-edid
                  "journalctl" "systemctl" "systemd-analyze" ;systemd
                  "superiotool"                              ;superiotool
                  "x86info"                                  ;x86info

                  ;; Other.
                  "arcconf"               ;proprietary
                  "config"                ;unknown origin (Linux-related)
                  "dkms"                  ;unknown origin (Linux-related)
                  "amdconfig" "fglrxinfo" ;proprietary/obsolete
                  "geom"                  ;unknown origin
                  "hciconfig" "hcitool"   ;deprecated from bluez
                  "nm-tool"))           ;replaced by nmcli in network-manager

              (substitute* "hw-probe.pl"
                (("(check|find|run)Cmd\\(\"([^\" ]+)" _ prefix command)
                 (string-append
                  prefix "Cmd(\""
                  (if (member command preserve)
                      command
                      (or (false-if-exception
                           (search-input-file
                            inputs (string-append "bin/" command)))
                          (search-input-file
                           inputs (string-append "sbin/" command))))))
                (("(my \\$HWInfoCmd = \")hwinfo" _ head)
                 (string-append head (search-input-file inputs "sbin/hwinfo")))
                (("(my \\$CurlCmd = \")curl" _ head)
                 (string-append head (search-input-file inputs "bin/curl")))
                (("(\\$LsblkCmd = \")lsblk" _ head)
                 (string-append head (search-input-file inputs "bin/lsblk")))
                (("(\\$SmartctlCmd = \")smartctl" _ head)
                 (string-append head (search-input-file inputs "sbin/smartctl")))
                (("(my \\$FindmntCmd = \")findmnt" _ head)
                 (string-append head (search-input-file inputs "bin/findmnt")))
                (("(\\$DDCUtilCmd = \")ddcutil" _ head)
                 (string-append head (search-input-file inputs "bin/ddcutil")))
                (("(my \\$VaInfoCmd = \")vainfo" _ head)
                 (string-append head (search-input-file inputs "bin/vainfo")))
                (("(\\$CheckHddCmd = \")hdparm" _ head)
                 (string-append head (search-input-file inputs "sbin/hdparm")))
                (("(\\$USE_DIGEST_ALT = \")sha512sum" _ head)
                 (string-append head (search-input-file inputs "bin/sha512sum"))))))
          (delete 'configure)
          (add-after 'install 'wrap
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (define hw-probe (search-input-file outputs "bin/hw-probe"))
              ;; 'NeedProgs' core utilities are specially checked for
              ;; availability.  It's easier to wrap them in PATH than patching
              ;; their references.
              ;; TODO: package edid-decode and add "bin/edid-decode" below:
              (define need-progs (list "sbin/dmidecode" "sbin/smartctl"
                                       "bin/lspci" "bin/lsusb"))
              (wrap-script hw-probe
                (list "PERL5LIB" 'prefix (list (getenv "PERL5LIB")))
                (list "PATH" 'prefix
                      (map (lambda (command)
                             (dirname (search-input-file inputs command)))
                           need-progs))))))))
    (inputs
     (list acpi
           acpica
           alsa-utils
           avahi
           bash-minimal
           coreutils
           cpuid
           cpupower
           curl
           ddcutil
           dmidecode
           dpkg
           edac-utils
           edid-decode
           efibootmgr
           efivar
           ethtool
           eudev
           findutils
           gpart
           grep
           guile-3.0                    ;for wrap-script
           hddtemp
           hdparm
           i2c-tools
           inxi
           iproute
           iw
           libva-utils
           lm-sensors
           mcelog
           memtester
           mesa-utils
           modem-manager
           module-init-tools
           neofetch
           net-tools
           network-manager
           numactl
           nvme-cli
           opensc
           openssl
           p7zip
           pciutils
           perl-data-dumper
           perl-digest-sha
           perl-libwww
           procps
           psmisc                       ;for pstree
           rpm
           sane-backends
           smartmontools
           sysstat
           upower
           usbutils
           util-linux
           wireless-tools
           vdpauinfo
           vulkan-tools
           xdpyinfo
           xinput
           xrandr
           xvinfo))
    (propagated-inputs (list hwinfo))
    (home-page "https://linux-hardware.org")
    (synopsis "Hardware Probe")
    (description "Hardware Probe is a tool to probe for hardware, check its
operability and find drivers.")
    (license (list license:lgpl2.1+ license:bsd-4)))) ;dual-licensed

(define-public hwinfo
  (package
    (name "hwinfo")
    (version "23.2")
    (home-page "https://github.com/openSUSE/hwinfo")
    (source
     (origin
       (method git-fetch)
       (uri
        (git-reference
         (url home-page)
         (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0d9nhhi64d3i9x1bh3ksj0h5z2p4pwa0z88bc0jra9s39nf6q230"))
       (modules
        '((guix build utils)))
       (snippet
        #~(begin
            ;; Remove git2log program file.
            (delete-file "git2log")
            ;; Remove variables that depend on git2log.
            (substitute* "Makefile"
              (("GIT2LOG.*\\:=.*$") "")
              (("GITDEPS.*\\:=.*$") "")
              (("BRANCH.*\\:=.*$") ""))
            ;; Create version file.
            (call-with-output-file "VERSION"
              (lambda (port) (format port #$version)))))))
    (build-system gnu-build-system)
    (outputs '("out" "lib" "doc"))
    (arguments
     (list
      #:tests? #f                       ; no test-suite available
      #:make-flags
      #~(list (string-append "CC=" #$(cc-for-target))
              (string-append "LIBDIR=" #$output:lib "/lib")
              (string-append "VERSION=" #$version))
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch
            (lambda _
              (let ((include (string-append #$output:lib "/include"))
                    (lib (string-append #$output:lib "/lib"))
                    (sbin (string-append #$output "/sbin"))
                    (share (string-append #$output "/share"))
                    (doc (string-append #$output:doc "/share/doc")))
                ;; Generate HTML documentation in the "doc" output.
                (mkdir-p doc)
                (substitute* "doc/libhd.doxy"
                  (("OUTPUT_DIRECTORY.*=.*libhd")
                   (string-append "OUTPUT_DIRECTORY = " doc "/libhd")))
                ;; Correct values of the version and install directories.
                (substitute* "Makefile"
                  (("/usr/include") include)
                  (("/(usr|var)/(lib|lib64)") lib)
                  (("/usr/sbin") sbin)
                  (("/usr/share") share)
                  (("\\$\\(DESTDIR\\)/sbin ") ""))
                ;; Add the "lib" output to the run-path.
                (substitute* "Makefile.common"
                  (("-Lsrc")
                   (string-append "-Lsrc " "-Wl,-rpath=" lib)))
                ;; Correct program name of the lexical analyzer.
                (substitute* "src/isdn/cdb/Makefile"
                  (("lex isdn_cdb.lex") "flex isdn_cdb.lex"))
                ;; Patch pkg-config file to point to the "lib" output.
                (substitute* "hwinfo.pc.in"
                  (("/usr") #$output:lib)))))
          (delete 'configure)
          (replace 'build
            (lambda* (#:key make-flags #:allow-other-keys)
              (apply invoke "make" "shared" make-flags)
              (apply invoke "make" "doc" make-flags)))
          (add-after 'install 'install-man-pages
            (lambda _
              (for-each
               (lambda (file)
                 (install-file file (string-append #$output "/share/man/man"
                                                   (string-take-right file 1))))
               (find-files "doc" "\\.[0-9]$")))))))
    (native-inputs
     (list doxygen flex perl pkg-config))
    (inputs
     (list libx86emu `(,util-linux "lib")))
    (synopsis "Hardware information tool")
    (description "HwInfo is used to probe for the hardware present in the system.
It can be used to generate a system overview log which can be later used for
support.")
    (license license:gpl2+)))

(define-public ckb-next
  (let ((commit "967f44018a9d46efa7203fad38518e9381eba0f3")
        (revision "0"))
    (package
      (name "ckb-next")
      (version (git-version "0.4.4" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "https://github.com/ckb-next/ckb-next")
                      (commit commit)))
                (sha256
                 (base32
                  "0bfpah0zgmyhbi6payymr3p98nfnwqr2xqxgkyzvccz72z246316"))
                (file-name (git-file-name name version))))
      (build-system cmake-build-system)
      (arguments
       `(#:modules ((guix build cmake-build-system) (guix build qt-utils)
                    (guix build utils))
         #:imported-modules (,@%cmake-build-system-modules
                             (guix build qt-utils))
         #:tests? #f
         #:phases
         (modify-phases %standard-phases
           (add-before 'build 'patch-lib-udev
             (lambda* (#:key inputs outputs #:allow-other-keys)
               (substitute* "src/daemon/cmake_install.cmake"
                 (("/lib/udev")
                  (string-append (assoc-ref outputs "out")
                                 "/lib/udev")))))
           (add-after 'install 'wrap-qt
             (lambda* (#:key inputs outputs #:allow-other-keys)
               (let ((out (assoc-ref outputs "out")))
                 (wrap-qt-program "ckb-next"
                                  #:output out
                                  #:inputs inputs)))))))
      (native-inputs (list qttools-5 pkg-config))
      (inputs (list qtbase-5
                    zlib
                    libdbusmenu-qt
                    quazip
                    pulseaudio
                    libxcb
                    xcb-util-wm
                    qtx11extras
                    eudev
                    bash-minimal))
      (home-page "https://github.com/ckb-next/ckb-next")
      (synopsis "Driver for Corsair keyboards and mice")
      (description
       "ckb-next is a driver for Corsair keyboards and mice.  It aims to bring
the features of Corsair's proprietary software to Linux-based operating
systems.  It already supports much of the same functionality, including full
RGB animations.")
      (license license:gpl2))))

(define-public ddcutil
  (package
    (name "ddcutil")
    (version "1.4.2")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://www.ddcutil.com/tarballs/"
                           "ddcutil-" version ".tar.gz"))
       (sha256
        (base32 "015l13j7fp9fmlc5d7m6nfjbzjbp8vc0g5py35ljw7li2xk16v60"))))
    (build-system gnu-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     (list eudev
           glib
           kmod
           i2c-tools
           libdrm                       ;enhanced diagnostics
           libusb                       ;support USB monitors
           libx11                       ;enhanced diagnostics
           libxrandr
           zlib))
    (home-page "https://www.ddcutil.com/")
    (synopsis "Control external monitor settings")
    (description
     "ddcutil can query and modify most external monitors' settings, such as
brightness, colour levels, and input sources.  Generally speaking, any setting
that can be changed by pressing buttons on the monitor can be modified by
ddcutil.

ddcutil communicates directly with monitors implementing the Monitor Control
Command Set (@dfn{MCCS}).  It usually does so through the the Display Data
Channel Command Interface (@dfn{DDC/CI}) protocol on the I2C bus, but can also
communicate over USB as per the USB Monitor Control Class Specification.

One particular use case is in colour profile management.  Monitor calibration
is relative to the monitor colour settings currently in effect, e.g. red gain.
ddcutil allows colour-related settings to be saved at the time a monitor is
calibrated, and restored when the calibration is applied.

This package includes udev rules that can be used by adding this package to
the @code{rules} field of the @code{udev-configuration} record.  It gives
read/write access to i2c devices to users in the @samp{i2c} group.")
    (license (list license:bsd-3        ; FindDDCUtil.cmake
                   license:gpl2+))))    ; everything else

(define-public ddcui
  (package
    (name "ddcui")
    (version "0.3.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/rockowitz/ddcui")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0gypfmwxhjmgyfwk29k8hfbgr0698kbcq2yj4izxv1i59zm63irz"))))
    (build-system cmake-build-system)
    (arguments
     (list #:tests? #f))                    ; No test suite
    (native-inputs
     (list pkg-config qttools-5))
    (inputs
     (list ddcutil glib qtbase-5))
    (home-page "https://www.ddcutil.com/")
    (synopsis "Graphical user interface for ddcutil")
    (description "ddcui is a graphical user interface for ddcutil, implemented
using Qt.  It provide a dynamic way to inspect and configure external monitors
through the Display Data Channel Command Interface (@dfn{DDC/CI}) protocol.")
    (license (list license:gpl2+))))

(define-public edid-decode
  (let ((commit "74b64180d67bb009d8d9ea1b6f18ad41aaa16396") ; 2020-04-22
        (revision "1"))
    (package
      (name "edid-decode")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (file-name (git-file-name name version))
         (uri (git-reference
               (url "git://linuxtv.org/edid-decode.git")
               (commit commit)))
         (sha256
          (base32 "0nirp5bza08zj5d8bjgcm0p869hdg3qg3mwa7999pjdrzmn7s2ah"))))
      (build-system gnu-build-system)
      (arguments
       `(#:tests? #f                     ; No test suite
         #:make-flags
         (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
               "bindir=/bin" "mandir=/share/man")
         #:phases
         (modify-phases %standard-phases
           (add-after 'unpack 'fix-cross-compilation
             (lambda* (#:key native-inputs target #:allow-other-keys)
               (when target
                 (substitute* "Makefile"
                   (("\\$\\(CXX\\)")
                    (string-append target "-g++"))))
               #t))
           (delete 'configure))))
      (home-page "https://git.linuxtv.org/edid-decode.git/")
      (synopsis "Decode @dfn{EDID} data in human-readable format")
      (description "edid-decode decodes @dfn{EDID} monitor description data in
human-readable format and checks if it conforms to the standards.")
      (license license:expat))))

(define-public h-client
  (let ((commit "e6c78b16e034ccf78ae9cb4c29268c2f57a30bfc")
        (revision "1"))
    (package
      (name "h-client")
      (version (git-version "0.0a0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://git.savannah.gnu.org/git/h-client.git/")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0hm86d51kj5r3yxq4c23aa57cs8igz3wrkbjn20z4frx75rpf46m"))))
      (build-system python-build-system)
      (arguments
       (list
        #:imported-modules `(,@%python-build-system-modules
                             ,@%glib-or-gtk-build-system-modules)
        #:modules '(((guix build glib-or-gtk-build-system) #:prefix glib:)
                    (guix build python-build-system)
                    (guix build utils))
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file
              (assoc-ref glib:%standard-phases
                         'generate-gdk-pixbuf-loaders-cache-file))
            (add-after 'install 'glib-or-gtk-compile-schemas
              (assoc-ref glib:%standard-phases 'glib-or-gtk-compile-schemas))
            (add-after 'install 'glib-or-gtk-wrap
              (assoc-ref glib:%standard-phases 'glib-or-gtk-wrap))
            (add-after 'glib-or-gtk-wrap 'wrap-more
              (lambda* (#:key inputs outputs #:allow-other-keys)
                (wrap-script (search-input-file outputs "bin/h-client")
                  ;; Wrap GI_TYPELIB_PATH to avoid the error "ValueError:
                  ;; Namespace GdkPixbuf not available".
                  `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))
                  `("PATH" = (,(dirname (search-input-file
                                         inputs "bin/lspci"))
                              ,(dirname (search-input-file
                                         inputs "bin/lsusb"))))))))))
      (inputs
       (list gdk-pixbuf
             gobject-introspection      ;for GI_TYPELIB_PATH
             guile-3.0
             gtk+
             pciutils
             python-pycurl
             python-pygobject
             usbutils))
      (synopsis "Graphical client for the h-node hardware database project")
      (description
       "The h-node project (https://www.h-node.org) aims to build a database of
hardware that works with fully free operating systems.  h-client is a GTK+
graphical client that is able to retrieves information on the hardware inside
the computer it's running on, and on peripherals connected to it, and helps
you submit that information to the h-node project along with whether the
hardware works with a fully free operating system or not.")
      (home-page "https://savannah.nongnu.org/projects/h-source/")
      (license license:gpl3+))))

(define-public headsetcontrol
  (package
    (name "headsetcontrol")
    (version "2.6.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/Sapd/HeadsetControl")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1pkgi87wjyris53frw3qmjdqvkzyyl55ikjgn8cidnbr6i3rqls9"))))
    (build-system cmake-build-system)
    (inputs
     (list hidapi))
    (home-page "https://github.com/Sapd/HeadsetControl")
    (synopsis "Sidetone and Battery status for USB headsets")
    (description
     "Headsetcontrol is a tool to control certain aspects of USB-connected
headsets.  Currently, support is provided for adjusting sidetone, getting
battery state, controlling LEDs, and setting the inactive time.")
    (license license:gpl3+)))

(define-public hueplusplus
  (package
    (name "hueplusplus")
    (version "1.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/enwi/hueplusplus")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1jy8m2a0h0kf0aw8jbniz069q9j7cx67b1zlv2vz1ymq921qk0pm"))
       (patches
        (search-patches "hueplusplus-mbedtls.patch"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f)) ;; Tests require Google's gtest and gmock
    (inputs
     (list mbedtls-apache))
    (synopsis "C++ library to control Philips Hue lights")
    (description "Hueplusplus is a library for controlling Philips Hue lights.
Features:

@itemize
@item find bridges with SSDP or set an ip manually
@item all common light functions (brightness, color, temperature)
@item extended @code{alert()} functions, which alert in a specific
color (good for notifications)
@item supports sensors, rules, groups, scenes and schedules
@item streaming with entertainment mode
@item documented with doxygen
@end itemize")
    (home-page "https://github.com/enwi/hueplusplus")
    (license license:lgpl3+)))

(define-public i7z
  (let ((revision "0")
        (commit "1a41ff13db747e962456ddbb5ccb2b7fc43ca0cb"))
    (package
      (name "i7z")
      (version (git-version "0.28" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/afontenot/i7z")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0jxm63a8y1mfl1sa4mzzfs3bgnym6achj1yc0jglmp05xal16lm1"))
         (patches
          (search-patches "i7z-gcc-10.patch"))
         (modules '((guix build utils)))
         (snippet
          '(begin
             (for-each delete-file-recursively
                       (list "src/GUI"
                             "src/perfmon-i7z"
                             "scripts"))))))
      (build-system gnu-build-system)
      (arguments
       `(#:make-flags
         (list (string-append "prefix=" (assoc-ref %outputs "out"))
               (string-append "CC=" ,(cc-for-target)))
         #:tests? #f                    ; no test suite
         #:phases
         (modify-phases %standard-phases
           (delete 'configure))))       ; no configure script
      (inputs
       (list ncurses))
      (home-page "https://github.com/afontenot/i7z")
      (synopsis "Thermal and C-state reporting on older Intel Core CPUs")
      (description
       "The @command{i7z} utility accurately measures the current frequency
and temperature of older Intel Core (i3, i5, and i7) processors including the
Nehalem, Sandy Bridge, and Ivy Bridge generations.  Reliable support for newer
CPUs is not guaranteed, as this package has not seen significant development
since 2013.

If your processor is supported, you'll get detailed reports on Turbo Boost and
clock multipliers, core voltage, and time spent in different C-states.  This
information can be viewed in real time and/or logged to a file.")
      (supported-systems (list "x86_64-linux"))
      (license license:gpl2))))

(define-public libsmbios
  (package
    (name "libsmbios")
    (version "2.4.3")
    (source
     (origin
       (method git-fetch)
       (uri
        (git-reference
         (url (string-append "https://github.com/dell/" name))
         (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0krwwydyvb9224r884y1mlmzyxhlfrcqw73vi1j8787rl0gl5a2i"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("autoconf" ,autoconf)
       ("automake" ,automake)
       ("gettext" ,gettext-minimal)
       ("libtool" ,libtool)
       ("pkg-config" ,pkg-config)
       ("perl" ,perl)
       ("python" ,python)))
    (inputs
     (list libxml2))
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (replace 'bootstrap
           (lambda _ (invoke "autoreconf" "-vfi"))))))
    (synopsis "Library for interacting with Dell SMBIOS tables")
    (description
     "libsmbios provides a library to interface with the SMBIOS tables.  It
also provides extensions for proprietary methods of interfacing with Dell
specific SMBIOS tables.")
    (home-page "https://github.com/dell/libsmbios")
    (license
     (list license:osl2.1 license:gpl2+ license:bsd-3 license:boost1.0))))

(define-public liquidctl
  (package
    (name "liquidctl")
    (version "1.13.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/liquidctl/liquidctl")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0hpxkrfxm9c4v5ld7bh6qs9fmq9imz8s5i9l0l78l47bcm12nkrd"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (add-before 'check 'set-runtime-dir
                 (lambda _
                   (setenv "XDG_RUNTIME_DIR" "/tmp"))))))
    (native-inputs (list python-pytest))
    (propagated-inputs
     (list python-colorlog
           python-crcmod
           python-docopt
           python-hidapi
           python-pillow
           python-pyusb
           python-smbus))
    (home-page "https://github.com/liquidctl/liquidctl")
    (synopsis "Drivers and tools for liquid cooling equipment")
    (description "Liquidctl is a package with tools, drivers and a Python
library to work with liquid cooling equipment such as @acronym{AIO, All-In-One}
coolers, fan controllers and other devices.")
    (license license:gpl3+)))

;; Distinct from memtest86, which is obsolete.
(define-public memtest86+
  (package
    (name "memtest86+")
    (version "6.20")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/memtest86plus/memtest86plus")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1wsrdgpxi2nrcazihi1ghkn681iqkpwd8wnp533avcfg16n0jd17"))
       (patches
        (search-patches "memtest86+-build-reproducibly.patch"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:tests? #f                       ; no way to test this
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch-broken-Makefiles
            (lambda _
              (substitute* (list "build32/Makefile"
                                 "build64/Makefile")
                (("/sbin/(mkdosfs)" _ command)
                 command))))
          (delete 'configure)           ; no configure script
          (add-before 'build 'enter-build-directory
            (lambda _
              (chdir #$(if (target-x86-32?)
                           "build32"
                           "build64"))))
          (replace 'build
            (lambda* (#:key inputs make-flags #:allow-other-keys)
              (apply invoke
                     "make" "all" "grub-iso" ; more options than memtest.iso
                     (string-append "GRUB_FONT_DIR="
                                    (search-input-directory inputs
                                                            "share/grub"))
                     (string-append "GRUB_LIB_DIR="
                                    (search-input-directory inputs
                                                            "lib/grub"))
                     make-flags)))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
                     (lib (string-append out "/lib/memtest86+"))
                     (doc (string-append out "/share/doc/memtest86+-"
                                         #$version)))
                (for-each
                 (lambda (file)
                   (install-file file lib))
                 (list "grub-memtest.iso"
                       "memtest.bin"
                       "memtest.efi"))
                (chdir "..")
                (install-file "README.md" doc)))))))
    (native-inputs
     (list dosfstools grub-hybrid mtools xorriso))
    (supported-systems (list "i686-linux" "x86_64-linux"))
    (home-page "https://www.memtest.org/")
    (synopsis "Thorough real-mode memory tester")
    (description
     "Memtest86+ is a thorough, stand-alone memory test for x86 systems.  It
repeatedly writes different patterns to all memory locations, reads them back
again, and verifies whether the result is the same as what was written.  This
can help debug even intermittent and non-deterministic errors.

It runs independently of any operating system, at computer boot-up, so that it
can scan as much of your RAM as possible for hardware defects.")
    (license license:gpl2)))

(define-public memtester
  (package
    (name "memtester")
    (version "4.6.0")
    (source
     (origin
       (method url-fetch)
       ;; Even the latest release is available under 'old-versions/'.
       (uri (list
             (string-append "https://pyropus.ca/software/memtester/old-versions/"
                            "memtester-" version ".tar.gz")
             ;; XXX ‘pyropus.ca’ redirects to ‘pyropus.ca.’.  Valid, but wreaks
             ;; havoc with Guile's Web stack & TLS verification.
             ;; Remove this random mirror when that changes.
             (string-append "https://ftp.dimensiondata.com/mirrors/"
                            "ftp.gentoo.org/distfiles/3e/"
                            "memtester-" version ".tar.gz")))
       (sha256
        (base32 "0bmv7n7gj02pda8mwif08xk63xc20r65q1pr099fz30cx2vlxzn9"))))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       (list ,(string-append "CC=" (cc-for-target)))
       #:phases
       (modify-phases %standard-phases
         (replace 'configure
           ;; This is a home-brewed configuration system where the cc/ld command
           ;; lines are stored in one-line files.
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out")))
               (substitute* (list "conf-cc" "conf-ld")
                 (("^cc") "gcc"))
               (substitute* "Makefile"
                 (("(INSTALLPATH.*=).*" _ assignment)
                  (string-append assignment out)))
               #t)))
         (replace 'check
           ;; There is no test suite. Test some RAM for a single iteration.
           (lambda _
             (invoke "./memtester" "64K" "1"))))))
    (home-page "http://pyropus.ca/software/memtester/")
    (synopsis "User-space memory subsystem tester")
    (description
     "Memtester stress-tests the memory subsystem of your operating system and
computer.  It repeatedly writes different patterns to all memory locations,
reads them back again, and verifies whether the result is the same as what was
written.  This can help debug even intermittent and non-deterministic errors.

Memtester runs entirely in user space.  This means that you don't need to reboot
to test your memory, but also that it's not possible to test all of the RAM
installed in the system.

It can also be told to test memory starting at a particular physical address.")
    (license license:gpl2)))

(define-public msr-tools
  (package
    (name "msr-tools")
    (version "1.3")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://01.org/sites/default/files/downloads/"
                           name "/" name "-" version ".zip"))
       (sha256
        (base32 "07hxmddg0l31kjfmaq84ni142lbbvgq6391r8bd79wpm819pnigr"))))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       (list (string-append "sbindir=" (assoc-ref %outputs "out") "/sbin"))
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)            ; no configure script
         (add-before 'install 'create-output-directory
           (lambda* (#:key outputs #:allow-other-keys)
             ;; 'make install' assumes that sbindir exists.
             (let* ((out  (assoc-ref outputs "out"))
                    (sbin (string-append out "/sbin")))
               (mkdir-p sbin)
               #t))))
       #:tests? #f))                    ; no test suite
    (native-inputs
     (list unzip))
    ;; These registers and the CPUID instruction only exist on (most) x86 chips.
    (supported-systems (list "i686-linux" "x86_64-linux"))
    (home-page "https://01.org/msr-tools/")
    (synopsis "Read and write Model-Specific Registers (@dfn{MSR})")
    (description
     "The MSR Tools project provides console utilities to directly access the
Model-Specific Registers (@dfn{MSR}s) and CPU ID of Intel-compatible processors:

@itemize
@item @command{cpuid}: show identification and feature information of any CPU
@item @command{rdmsr}: read MSRs from any CPU or all CPUs
@item @command{wrmsr}: write to MSRs on any CPU or all CPUs
@end itemize

These tools can be used to query and modify certain low-level CPU parameters,
such as the Turbo Boost ratio and Thermal Design Power (@dfn{TDP}) limits.

MSR addresses differ (greatly) between processors, and any such modification can
be dangerous and may void your CPU or system board's warranty.")
    (license license:gpl2)))     ; cpuid.c is gpl2, {rd,wr}msr.c are gpl2+

(define-public openhmd
  (package
    (name "openhmd")
    (version "0.3.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/OpenHMD/OpenHMD")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1hkpdl4zgycag5k8njvqpx01apxmm8m8pvhlsxgxpqiqy9a38ccg"))))
    (build-system meson-build-system)
    (arguments
     `(#:tests? #f)) ; no test target although there is a test folder
    (native-inputs
     (list pkg-config))
    (inputs
     (list hidapi))
    (home-page "http://www.openhmd.net/")
    (synopsis "API and drivers for immersive technology")
    (description "OpenHMD aims to provide an API and drivers for immersive
technology, such as head mounted displays with built in head tracking.")
    (license license:boost1.0)))

(define-public openrgb
  (package
    (name "openrgb")
    (version "0.9")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.com/CalcProgrammer1/OpenRGB")
             (commit (string-append "release_" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0rdh87w4j47dr0vakva94fhcbdc67d9aad0p3najg9zf8zhf64jw"))
       (patches
        (search-patches "openrgb-unbundle-hueplusplus.patch"))
       (modules '((guix build utils)))
       (snippet
        '(begin
           ;; Delete many of the bundled libraries.
           (for-each delete-file-recursively
                     (list "dependencies/hidapi-win"
                           "dependencies/hueplusplus-1.0.0"
                           "dependencies/json"
                           "dependencies/libusb-1.0.22"
                           "dependencies/macUSPCIO"
                           "dependencies/mbedtls-2.24.0"
                           "dependencies/NVFC"
                           "dependencies/openrazer-win32"
                           "dependencies/winring0"
                           ;; Some bundled appimages
                           "scripts/tools"))))))
    (build-system cmake-build-system)
    (arguments
     (list
       #:tests? #f ; doesn't have tests
       #:make-flags
       #~(list (string-append "INSTALL_ROOT=" #$output ))
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'unbundle
             (lambda* (#:key inputs #:allow-other-keys)
               (substitute* "OpenRGB.pro"
                 (("dependencies/hueplusplus-1.0.0/include/hueplusplus")
                  (string-append #$(this-package-input "hueplusplus")
                                 "/include/hueplusplus"))
                 (("dependencies/json")
                  (string-append #$(this-package-input "nlohmann-json")
                                 "/include/nlohmann")))))
           ;; Call qmake instead of configure to create a Makefile.
           (replace 'configure
             (lambda _ (invoke "qmake" "PREFIX=/" "OpenRGB.pro"))))))
    (inputs
     (list hidapi
           hueplusplus
           nlohmann-json
           libusb
           mbedtls-apache
           qtbase-5))
    (native-inputs
     (list pkg-config
           qttools-5))
    (synopsis "RGB lighting control")
    (description
     "OpenRGB is lighting control that doesn't depend on manufacturer software.
ASUS, ASRock, Corsair, G.Skill, Gigabyte, HyperX, MSI, Razer, ThermalTake, and more
supported.

Features:

@itemize
@item Set colors and select effect modes for a wide variety of RGB hardware
@item Save and load profiles
@item Control lighting from third party software using the OpenRGB SDK
@item Command line interface
@item Connect multiple instances of OpenRGB to synchronize lighting across multiple PCs
@item Can operate standalone or in a client/headless server configuration
@item View device information
@item No official/manufacturer software required
@item Graphical view of device LEDs makes creating custom patterns easy
@end itemize")
    (home-page "https://openrgb.org/")
    (license license:gpl2))) ; Included libccmmk is lgpl3+, CRC is bsd-3

(define-public wavemon
  (package
    (name "wavemon")
    (version "0.9.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/uoaerg/wavemon")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh"))))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       (list "CC=gcc"
             ;; Makefile.in (ab)uses $(datadir) as $(docdir). Set it to Guix's
             ;; standard --docdir since it's only used as such.
             (string-append "datadir=" (assoc-ref %outputs "out")
                            "/share/doc/" ,name "-" ,version))
       #:tests? #f))                    ; no tests
    (native-inputs
     (list pkg-config))
    (inputs
     (list libcap libnl ncurses))
    (home-page "https://github.com/uoaerg/wavemon")
    (synopsis "Wireless network device monitor")
    (description
     "Wavemon is a wireless device monitor with an interactive ncurses terminal
interface.  It can display and plot signal and noise levels in real time.  It
also reports packet statistics, device configuration, network parameters, and
access points and other wireless clients of your wireless network hardware.

Wavemon should work (with varying levels of detail and features) with any device
supported by the Linux kernel.")
    ;; Source file headers still say GPL2+, but the authorial intent
    ;; (from COPYING and the F9 'about' screen) is clearly GPL3+.
    (license license:gpl3+)))

(define-public rkdeveloptool
  (let ((commit "6e92ebcf8b1812da02663494a68972f956e490d3")
        (revision "0"))
    (package
      (name "rkdeveloptool")
      (version (git-version "1.3" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/rockchip-linux/rkdeveloptool")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0zwrkqfxd671iy69v3q0844gfdpm1yk51i9qh2rqc969bd8glxga"))
         (snippet
          #~(begin
              ;; https://github.com/rockchip-linux/rkdeveloptool/pull/57
              (use-modules (guix build utils))
              (substitute* "main.cpp"
                (("snprintf\\(buffer, sizeof\\(buffer\\), \"\\%s\", chip)")
                 "memccpy(buffer, chip, '\\0', sizeof(buffer))"))))))
      (build-system gnu-build-system)
      (native-inputs
       (list autoconf automake pkg-config))
      (inputs
       (list libusb))
      (home-page "https://github.com/rockchip-linux/rkdeveloptool")
      (synopsis "Read from and write to RockChicp devices over USB")
      (description
       "Rkdeveloptool can read from and write to RockChip devices over USB, such
as the Pinebook Pro.")
      (license license:gpl2+))))

(define-public usbguard
  (package
    (name "usbguard")
    (version "1.1.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/USBGuard/usbguard")
                    (commit (string-append "usbguard-" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32 "10qqjk7hsycc6hk51abwcld7i48038zqi1jzli59cfvc76ikrxj5"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch-bootstrap-script
            (lambda _
              ;; Don't attempt to fetch git submodules.
              (substitute* "autogen.sh"
                (("^git submodule.*")
                 ""))))
          (add-after 'bootstrap 'patch-build-scripts
            (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "configure"
                (("/usr/include/catch")
                 (dirname (search-input-file inputs "include/catch.hpp"))))
              ;; Do not create log directory.
              (substitute* "Makefile.in" ((".*/log/usbguard.*") ""))
              ;; Disable LDAP tests: they use 'sudo'.
              (substitute* "src/Tests/Makefile.in"
                (("\\$\\(am__append_2\\)") ""))))
          (add-after 'install 'delete-static-library
            (lambda args
              ;; It can't be directly disabled since it's needed for the tests.
              (delete-file (string-append #$output
                                          "/lib/libusbguard.a"))))
          (add-after 'install 'install-zsh-completion
            (lambda args
              (let ((site-functions
                     (string-append #$output "/share/zsh/site-functions")))
                (mkdir-p site-functions)
                (copy-file "scripts/usbguard-zsh-completion"
                           (string-append site-functions "/_usbguard"))))))
      #:make-flags
      #~(list (string-append "BASH_COMPLETION_DIR="
                             #$output
                             "/etc/bash_completion.d"))
      #:configure-flags
      #~(list
         "--localstatedir=/var"
         "--enable-systemd=no"
         "--with-ldap"
         "--with-dbus"
         "--with-polkit")))
    (inputs
     (list audit
           catch-framework
           dbus-glib
           openldap
           libcap-ng
           libseccomp
           libsodium
           pegtl
           polkit
           protobuf
           libqb))
    (native-inputs
     (list asciidoc
           autoconf
           automake
           libtool
           bash-completion
           `(,glib "bin")
           umockdev
           libxml2
           libxslt
           pkg-config))
    (home-page "https://usbguard.github.io")
    (synopsis "Helps to protect your computer against rogue USB devices (a.k.a. BadUSB)")
    (description "USBGuard is a software framework for implementing USB device
authorization policies (what kind of USB devices are authorized) as well as
method of use policies (how a USB device may interact with the system).
Simply put, it is a USB device whitelisting tool.")
    (license license:gpl2)))

(define-public screentest
  (package
    (name "screentest")
    (version "2.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/TobiX/screentest")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0gv3xj9sbk1wsyijfw9xjnvy8pg7j4arjnma2r2kfi18qy32wd30"))))
    (build-system gnu-build-system)
    (inputs
     (list glib gtk+-2))
    (native-inputs
     (list autoconf
           intltool
           libtool
           `(,glib "bin")
           automake
           pkg-config))
    (synopsis "Simple screen testing tool")
    (description "This is a program for testing the quality of CRT/LCD
screens.  It displays various patterns and allows you to estimate the quality
of your CRT/LCD monitor.")
    (home-page "https://github.com/TobiX/screentest")
    (license license:gpl2)))

(define-public tpm2-tss
  (package
    (name "tpm2-tss")
    (version "3.0.3")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/tpm2-software/tpm2-tss"
                           "/releases/download/" version "/tpm2-tss-" version
                           ".tar.gz"))
       (sha256
        (base32 "05xynpwq851fp8f5fy7ac0blvz8mr5m5cbqj3gslgbwv63kjnfbq"))))
    (build-system gnu-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     (list curl json-c openssl))
    (home-page "https://tpm2-software.github.io/")
    (synopsis "OSS Implementation of the TCG TPM2 Software Stack (TSS2)")
    (description
     "This package provides the @acronym{TCG, Trusted Computing Group}
@acronym{TSS2, TPM2 Software Stack}.  The stack contains libtss2-fapi,
libtss2-esys, libtss2-sys, libtss2-mu, libtss2-tcti-device, libtss2-tcti-swtpm
and libtss2-tcti-mssim.")
    (license license:bsd-2)))

(define-public tpm2-tools
  (package
    (name "tpm2-tools")
    (version "5.5")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/tpm2-software/tpm2-tools/"
                           "releases/download/" version "/"
                           "tpm2-tools-" version ".tar.gz"))
       (sha256
        (base32 "08y16q92dh7frsyw0zlm3q9gsfqyls0li248s2pgsysk633lknqz"))))
    (build-system gnu-build-system)
    (native-inputs
     (list autoconf
           automake
           curl
           libtool
           gnu-gettext
           openssl
           pandoc
           pkg-config
           tpm2-tss))
    (home-page "https://github.com/tpm2-software/tpm2-tools")
    (synopsis "Tools for the Trusted Platform Module (TPM 2.0)")
    (description
     "This package provides user tools for the Trusted Computing Group's (TCG)
TPM2 Software Stack (TSS).  These programs help with common tasks such as key
management, attestation, encryption, and signing.")
    (license license:bsd-3)))

(define-public libcpuid
  ;; We need to remove blobs from the source, first we have to isolate the blob
  ;; source in build system.
  ;; See https://github.com/anrieff/libcpuid/pull/159.
  (let ((commit "2e61160983f32ba840b2246d3c3850c44626ab0d")
        (revision "1"))
    (package
      (name "libcpuid")
      (version (git-version "0.5.1" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/anrieff/libcpuid")
               (commit commit)))
         (sha256
          (base32 "1mphvkiqq6z33sq6i490fq27sbyylacwrf8bg7ccvpcjms208sww"))
         (modules '((guix build utils)))
         (snippet
          ;; Now remove blobs.
          #~(begin
              (delete-file "libcpuid/msrdriver.c")
              (delete-file-recursively "contrib/MSR Driver")))
         (file-name (git-file-name name version))))
      (build-system cmake-build-system)
      (arguments
       (list
        #:configure-flags #~(list "-DLIBCPUID_TESTS=ON")
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'unpack 'absolutize
              (lambda* (#:key inputs #:allow-other-keys)
                ;; Linux specific
                (when #$(target-linux?)
                  (substitute* "libcpuid/rdmsr.c"
                    (("modprobe") (which "modprobe")))))))))
      (inputs
       (if (target-linux?)
           (list kmod)
           '()))
      (native-inputs (list python-3))   ;required by tests
      (supported-systems
       (filter (lambda (t) (or (target-x86-64? t) (target-x86-32? t)))
               %supported-systems))
      (home-page "https://libcpuid.sourceforge.net/")
      (synopsis "Small library for x86 CPU detection and feature extraction")
      (description "Libcpuid is a small C library to get vendor, model, branding
string, code name and other information from x86 CPU. This library is not to be
confused with the @code{cpuid} command line utility from package @code{cpuid}.")
      (license license:bsd-2))))

(define-public liblxi
  (package
    (name "liblxi")
    (version "1.20")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/lxi-tools/liblxi")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1cc95ggs64jqq9lk5c8fm4nk6fdnv1x7lr3k4znamj0vv6w22bcd"))))
    (build-system meson-build-system)
    (native-inputs
     (list cmake pkg-config))
    (inputs
     (list avahi libtirpc libxml2))
    (home-page "https://lxi-tools.github.io/")
    (synopsis "@acronym{LXI, LAN eXtensions for Instrumentation} library")
    (description
     "This library offers a simple API for communicating with instruments
compatible with the @acronym{LXI, LAN eXtensions for Instrumentation} standard
that defines communication protocols for instrumentation and data acquisition
systems using Ethernet.  Applications can use liblxi to discover instruments on
your network, send SCPI commands, and receive responses.")
    (license license:bsd-3)))

(define-public lxi-tools
  (package
    (name "lxi-tools")
    (version "2.5")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/lxi-tools/lxi-tools")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1xc99xhca386az73rpsrf3z0j7y0hrv0xcwj1dr2ahr7lhnjznqp"))))
    (build-system meson-build-system)
    (arguments
     (list
      #:glib-or-gtk? #true
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'skip-gtk-update-icon-cache
            (lambda _
              (substitute* "build-aux/meson/postinstall.py"
                (("gtk-update-icon-cache") (which "true"))
                (("update-desktop-database") (which "true"))))))))
    (native-inputs
     (list bash-completion
           cmake
           (list glib "bin")
           pkg-config
           python
           readline))
    (inputs
     (list glib
           gtk
           gtksourceview
           json-glib
           libadwaita
           liblxi
           lua))
    (home-page "https://lxi-tools.github.io/")
    (synopsis "LAN eXtensions for Instrumentation tools")
    (description
     "This package provides tools for LAN eXtensions for Instrumentation based
on the LXI Consortium standard which defines the communication protocols for
modern instrumentation and data acquision systems using Ethernet.")
    (license license:bsd-3)))

(define-public usbrelay
  (package
    (name "usbrelay")
    (version "1.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/darrylb123/usbrelay")
                    (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0fr3wglr2c6myg4k6ai2p5z38prclcnk2ngik15sq16fnp6qg750"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:phases #~(modify-phases %standard-phases
                   (delete 'configure)) ;no configure script
      #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
                           (string-append "PREFIX=" #$output)
                           (string-append "LDFLAGS=-Wl,-rpath="
                                          (string-append #$output "/lib"))
                           "LDCONFIG=true"
                           "USBMAJOR=$(USBLIBVER)")
      #:tests? #f))                     ;no test suite
    (inputs (list hidapi))
    (home-page "https://github.com/darrylb123/usbrelay")
    (synopsis "Control USB relay modules")
    (description
     "This is a Linux driver based on hidapi for a variety of inexpensive
HID compatible USB relay modules available with different number of
output relays.")
    (license license:gpl2+)))
(home-page "https://hackage.haskell.org/package/data-default-class") (synopsis "Types with default values") (description "This package defines a class for types with default values.") (license license:bsd-3))) (define-public ghc-data-default-instances-base (package (name "ghc-data-default-instances-base") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-default-instances-base" version)) (sha256 (base32 "0ym1sw3ssdzzifxxhh76qlv8kkmb2iclc158incv1dklyr9y8kw4")))) (build-system haskell-build-system) (properties '((upstream-name . "data-default-instances-base"))) (inputs (list ghc-data-default-class)) (home-page "https://hackage.haskell.org/package/data-default-instances-base") (synopsis "Default instances for types in base") (description "This package provides default instances for types from the base package.") (license license:bsd-3))) (define-public ghc-data-default-instances-containers (package (name "ghc-data-default-instances-containers") (version "0.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-default-instances-containers" version)) (sha256 (base32 "06h8xka031w752a7cjlzghvr8adqbl95xj9z5zc1b62w02phfpm5")))) (build-system haskell-build-system) (properties '((upstream-name . "data-default-instances-containers"))) (inputs (list ghc-data-default-class)) (home-page "https://hackage.haskell.org/package/data-default-instances-containers") (synopsis "Default instances for types in containers") (description "Provides default instances for types from the containers package.") (license license:bsd-3))) (define-public ghc-data-default-instances-dlist (package (name "ghc-data-default-instances-dlist") (version "0.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-default-instances-dlist" version)) (sha256 (base32 "0narkdqiprhgayjiawrr4390h4rq4pl2pb6mvixbv2phrc8kfs3x")))) (build-system haskell-build-system) (properties '((upstream-name . "data-default-instances-dlist"))) (inputs (list ghc-data-default-class ghc-dlist)) (home-page "https://hackage.haskell.org/package/data-default-instances-dlist") (synopsis "Default instances for types in dlist") (description "Provides default instances for types from the dlist package.") (license license:bsd-3))) (define-public ghc-data-default-instances-old-locale (package (name "ghc-data-default-instances-old-locale") (version "0.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-default-instances-old-locale" version)) (sha256 (base32 "00h81i5phib741yj517p8mbnc48myvfj8axzsw44k34m48lv1lv0")))) (build-system haskell-build-system) (properties '((upstream-name . "data-default-instances-old-locale"))) (inputs (list ghc-data-default-class ghc-old-locale)) (home-page "https://hackage.haskell.org/package/data-default-instances-old-locale") (synopsis "Default instances for types in old-locale") (description "Provides Default instances for types from the old-locale package.") (license license:bsd-3))) (define-public ghc-data-fix (package (name "ghc-data-fix") (version "0.3.2") (source (origin (method url-fetch) (uri (hackage-uri "data-fix" version)) (sha256 (base32 "1k0rcbb6dzv0ggdxqa2bh4jr829y0bczjrg98mrk5733q0xjs5rs")))) (build-system haskell-build-system) (properties '((upstream-name . "data-fix"))) (inputs (list ghc-hashable)) (arguments `(#:cabal-revision ("3" "0z77i9y86wlc13396akl8qxq39rwpkhhcs5fadzk47bwn7v1gsmx"))) (home-page "https://github.com/spell-music/data-fix") (synopsis "Fixpoint data types") (description "Fixpoint types and recursion schemes. If you define your AST as fixpoint type, you get fold and unfold operations for free. Thanks for contribution to: Matej Kollar, Herbert Valerio Riedel") (license license:bsd-3))) (define-public ghc-data-hash (package (name "ghc-data-hash") (version "0.2.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-hash" version)) (sha256 (base32 "1ghbqvc48gf9p8wiy71hdpaj7by3b9cw6wgwi3qqz8iw054xs5wi")))) (build-system haskell-build-system) (properties '((upstream-name . "data-hash"))) (inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2)) (home-page "https://hackage.haskell.org/package/data-hash") (synopsis "Combinators for building fast hashing functions") (description "This package provides combinators for building fast hashing functions. It includes hashing functions for all basic Haskell98 types.") (license license:bsd-3))) (define-public ghc-data-ordlist (package (name "ghc-data-ordlist") (version "0.4.7.0") (source (origin (method url-fetch) (uri (hackage-uri "data-ordlist" version)) (sha256 (base32 "03a9ix1fcx08viwv2jg5ndw1qbkydyyrmjvqr9wasmcik9x1wv3g")))) (build-system haskell-build-system) (properties '((upstream-name . "data-ordlist"))) (home-page "https://hackage.haskell.org/package/data-ordlist") (synopsis "Set and bag operations on ordered lists") (description "This module provides set and multiset operations on ordered lists.") (license license:bsd-3))) (define-public ghc-dbus (package (name "ghc-dbus") (version "1.2.29") (source (origin (method url-fetch) (uri (hackage-uri "dbus" version)) (sha256 (base32 "0c2c2lfckhzgf9n5hf2w39ryyb2q0wxsymrxr54y4j95353wdsn2")))) (build-system haskell-build-system) (properties '((upstream-name . "dbus"))) (inputs (list ghc-cereal ghc-conduit ghc-lens ghc-network ghc-random ghc-split ghc-th-lift ghc-vector ghc-xml-conduit ghc-xml-types)) (native-inputs (list ghc-extra ghc-quickcheck ghc-resourcet ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ;; dbus-daemon spawned by testsuite. dbus)) (arguments (list #:tests? #f)) ; Network tests fail to connect. (home-page "https://github.com/rblaze/haskell-dbus#readme") (synopsis "Client library for the D-Bus IPC system") (description "D-Bus is a simple, message-based protocol for inter-process communication, which allows applications to interact with other parts of the machine and the user's session using remote procedure calls. D-Bus is a essential part of the modern Linux desktop, where it replaces earlier protocols such as CORBA and DCOP. This library is an implementation of the D-Bus protocol in Haskell. It can be used to add D-Bus support to Haskell applications, without the awkward interfaces common to foreign bindings.") (license license:asl2.0))) (define-public ghc-decimal (package (name "ghc-decimal") (version "0.5.2") (source (origin (method url-fetch) (uri (hackage-uri "Decimal" version)) (sha256 (base32 "19w7i9f0lbiyzwa0v3bm95233vi7f1688f0xms6cnjsf88h04ym3")))) (build-system haskell-build-system) (properties '((upstream-name . "Decimal"))) (native-inputs (list ghc-hunit ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2 ghc-test-framework-hunit)) (home-page "https://github.com/PaulJohnson/Haskell-Decimal") (synopsis "Decimal numbers with variable precision") (description "A decimal number has an integer mantissa and a negative exponent. The exponent can be interpreted as the number of decimal places in the value.") (license license:bsd-3))) (define-public ghc-deepseq-generics (package (name "ghc-deepseq-generics") (version "0.2.0.0") (source (origin (method url-fetch) (uri (hackage-uri "deepseq-generics" version)) (sha256 (base32 "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh")))) (build-system haskell-build-system) (properties '((upstream-name . "deepseq-generics"))) (arguments `(#:cabal-revision ("8" "0dcv4kf2g4xyacjpci9kql1gm706lkzhcyz9ks9jkbdvyvs8lf90"))) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit)) (home-page "https://github.com/hvr/deepseq-generics") (synopsis "Generic RNF implementation") (description "This package provides a @code{GHC.Generics}-based @code{Control.DeepSeq.Generics.genericRnf} function which can be used for providing an @code{rnf} implementation.") (license license:bsd-3))) (define-public ghc-dense-linear-algebra (package (name "ghc-dense-linear-algebra") (version "0.1.0.0") (source (origin (method url-fetch) (uri (hackage-uri "dense-linear-algebra" version)) (sha256 (base32 "1m7jjxahqxj7ilic3r9806mwp5rnnsmn8vvipkmk40xl65wplxzp")))) (build-system haskell-build-system) (properties '((upstream-name . "dense-linear-algebra"))) (inputs (list ghc-math-functions ghc-primitive ghc-vector ghc-vector-algorithms ghc-vector-th-unbox ghc-vector-binary-instances)) (native-inputs (list ghc-hspec ghc-quickcheck)) (home-page "https://hackage.haskell.org/package/dense-linear-algebra") (synopsis "Simple and incomplete implementation of linear algebra") (description "This library is simply a collection of linear-algebra related modules split from the statistics library.") (license license:bsd-2))) (define-public ghc-diagrams-core (package (name "ghc-diagrams-core") (version "1.5.1") (source (origin (method url-fetch) (uri (hackage-uri "diagrams-core" version)) (sha256 (base32 "08bmb2r4gf7arc0wasxla6w1qpgrgrhcs24bb7sv2qgiyb6c22j6")))) (build-system haskell-build-system) (properties '((upstream-name . "diagrams-core"))) (inputs (list ghc-unordered-containers ghc-semigroups ghc-monoid-extras ghc-dual-tree ghc-lens ghc-linear ghc-adjunctions ghc-distributive ghc-profunctors)) (home-page "https://diagrams.github.io") (synopsis "Core libraries for diagrams embedded domain-specific language") (description "This package provides the core modules underlying diagrams, an embedded domain-specific language for compositional, declarative drawing.") (license license:bsd-3))) (define-public ghc-diagrams-lib (package (name "ghc-diagrams-lib") (version "1.4.5.2") (source (origin (method url-fetch) (uri (hackage-uri "diagrams-lib" version)) (sha256 (base32 "1vx51g9znb4a9bf20pjd9zr98wmh39avk2i06217p0iidcw8whz6")))) (build-system haskell-build-system) (properties '((upstream-name . "diagrams-lib"))) (inputs (list ghc-semigroups ghc-monoid-extras ghc-dual-tree ghc-diagrams-core ghc-diagrams-solve ghc-active ghc-colour ghc-data-default-class ghc-fingertree ghc-intervals ghc-lens ghc-tagged ghc-optparse-applicative ghc-juicypixels ghc-hashable ghc-linear ghc-adjunctions ghc-distributive ghc-fsnotify ghc-unordered-containers ghc-profunctors ghc-cereal)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck ghc-numeric-extras)) (arguments `(#:cabal-revision ("1" "14lxvlxdzkrhdgblgglr5k0rwak0yl4gzawqkfla04mkg6hkh5bb"))) (home-page "http://diagrams.github.io") (synopsis "Embedded domain-specific language for declarative graphics") (description "Diagrams is a flexible, extensible embedded domain-specific language (EDSL) for creating graphics of many types. Graphics can be created in arbitrary vector spaces and rendered with multiple backends. This package provides a standard library of primitives and operations for creating diagrams.") (license license:bsd-3))) (define-public ghc-diagrams-solve (package (name "ghc-diagrams-solve") (version "0.1.3") (source (origin (method url-fetch) (uri (hackage-uri "diagrams-solve" version)) (sha256 (base32 "09qqwcvbvd3a0j5fnp40dbzw0i3py9c7kgizj2aawajwbyjvpd17")))) (build-system haskell-build-system) (properties '((upstream-name . "diagrams-solve"))) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("1" "0dp61igq17l7hvhs3167skdi1vmlm773qrrmsqmj08951l4cgv0h"))) (home-page "https://archives.haskell.org/projects.haskell.org/diagrams/") (synopsis "Pure Haskell solver routines used by diagrams") (description "This library provides Pure Haskell solver routines for use by the @url{https://archives.haskell.org/projects.haskell.org/diagrams/, diagrams framework}. It currently includes routines for finding real roots of low-degree (@math{n < 5}) polynomials, and solving tridiagonal and cyclic tridiagonal linear systems.") (license license:bsd-3))) (define-public ghc-diagrams-svg (package (name "ghc-diagrams-svg") (version "1.4.3.1") (source (origin (method url-fetch) (uri (hackage-uri "diagrams-svg" version)) (sha256 (base32 "002lgmq78c6rsvds9bgm6m4w8j6qpg260mc52hf97wj6m050l237")))) (build-system haskell-build-system) (properties '((upstream-name . "diagrams-svg"))) (inputs (list ghc-base64-bytestring ghc-colour ghc-diagrams-core ghc-diagrams-lib ghc-monoid-extras ghc-svg-builder ghc-juicypixels ghc-split ghc-lens ghc-hashable ghc-optparse-applicative ghc-semigroups)) (arguments `(#:cabal-revision ("4" "026mkj9fz64rdrap25mp8cwdrzwj90h35qg9kkn078fac93aaq10"))) (home-page "https://diagrams.github.io/") (synopsis "Scalable Vector Grpahics backend for the diagrams framework") (description "This package provides a modular backend for rendering diagrams created with the diagrams embedded domain-specific language (EDSL) to Scalable Vector Graphics (SVG) files.") (license license:bsd-3))) (define-public ghc-dictionary-sharing (package (name "ghc-dictionary-sharing") (version "0.1.0.0") (source (origin (method url-fetch) (uri (hackage-uri "dictionary-sharing" version)) (sha256 (base32 "00aspv943qdqhlk39mbk00kb1dsa5r0caj8sslrn81fnsn252fwc")))) (build-system haskell-build-system) (properties '((upstream-name . "dictionary-sharing"))) (arguments `(#:cabal-revision ("3" "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"))) (home-page "https://hackage.haskell.org/package/dictionary-sharing") (synopsis "Sharing/memoization of class members") (description "This library provides tools for ensuring that class members are shared.") (license license:bsd-3))) (define-public ghc-diff (package (name "ghc-diff") (version "0.4.1") (source (origin (method url-fetch) (uri (hackage-uri "Diff" version)) (sha256 (base32 "0w166w5jksiqad7xf2ldjl2ykap0xf08byrl92qwp6r1qym4lppx")))) (build-system haskell-build-system) (properties '((upstream-name . "Diff"))) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2)) (home-page "https://hackage.haskell.org/package/Diff") (synopsis "O(ND) diff algorithm in Haskell") (description "This package provides an implementation of the standard diff algorithm, and utilities for pretty printing.") (license license:bsd-3))) (define-public ghc-disk-free-space (package (name "ghc-disk-free-space") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "disk-free-space" version)) (sha256 (base32 "07rqj8k1vh3cykq9yidpjxhgh1f7vgmjs6y1nv5kq2217ff4yypi")))) (build-system haskell-build-system) (properties '((upstream-name . "disk-free-space"))) (home-page "https://github.com/redneb/disk-free-space") (synopsis "Retrieve information about disk space usage") (description "A cross-platform library for retrieving information about disk space usage.") (license license:bsd-3))) (define-public ghc-distributive (package (name "ghc-distributive") (version "0.6.2.1") (source (origin (method url-fetch) (uri (hackage-uri "distributive" version)) (sha256 (base32 "14bb66qyfn43bj688igfvnfjw7iycjf4n2k38sm8rxbqw2916dfp")))) (build-system haskell-build-system) (properties '((upstream-name . "distributive"))) (inputs (list ghc-tagged ghc-base-orphans ghc-transformers-compat ghc-semigroups ghc-generic-deriving)) (native-inputs (list ghc-doctest ghc-hspec hspec-discover)) (home-page "https://github.com/ekmett/distributive/") (synopsis "Distributive functors for Haskell") (description "This package provides distributive functors for Haskell. Dual to @code{Traversable}.") (license license:bsd-3))) (define-public ghc-dlist (package (name "ghc-dlist") (version "1.0") (source (origin (method url-fetch) (uri (hackage-uri "dlist" version)) (sha256 (base32 "0581a60xw4gw7pmqlmg5w2hr4hm9yjgx4c2z6v63y5xv51rn6g8p")))) (build-system haskell-build-system) (properties '((upstream-name . "dlist"))) (inputs (list ghc-quickcheck)) (home-page "https://github.com/spl/dlist") (synopsis "Difference lists") (description "Difference lists are a list-like type supporting O(1) append. This is particularly useful for efficient logging and pretty printing (e.g. with the Writer monad), where list append quickly becomes too expensive.") (license license:bsd-3))) (define-public ghc-doctemplates (package (name "ghc-doctemplates") (version "0.10.0.2") (source (origin (method url-fetch) (uri (hackage-uri "doctemplates" version)) (sha256 (base32 "0as0sc4x4ch5z233dqlb8xqg97xbfbzw2dqsz9rfq8rw10v9yx57")))) (build-system haskell-build-system) (properties '((upstream-name . "doctemplates"))) (inputs (list ghc-safe ghc-text-conversions ghc-aeson ghc-hsyaml ghc-doclayout ghc-vector ghc-scientific)) (native-inputs (list ghc-glob ghc-tasty ghc-tasty-golden ghc-tasty-hunit ghc-temporary)) (arguments `(#:cabal-revision ("1" "17r6ig72bzqd59p11sjaf9y27pm4yig1a1s1igs57s88cy47qz05"))) (home-page "https://github.com/jgm/doctemplates#readme") (synopsis "Pandoc-style document templates") (description "This package provides a simple text templating system used by pandoc.") (license license:bsd-3))) (define-public ghc-doctest (package (name "ghc-doctest") (version "0.20.1") (source (origin (method url-fetch) (uri (hackage-uri "doctest" version)) (sha256 (base32 "00jbpqvcqxx1nmf41li947d9d3ifwchzzp37mlag68hgnza6z9a4")))) (build-system haskell-build-system) (properties '((upstream-name . "doctest"))) (inputs (list ghc-base-compat ghc-code-page ghc-paths ghc-syb)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-hspec ghc-hspec-core ghc-mockery ghc-setenv ghc-silently ghc-stringbuilder hspec-discover)) (home-page "https://github.com/sol/doctest#readme") (synopsis "Test interactive Haskell examples") (description "The doctest program checks examples in source code comments. It is modeled after doctest for Python, see @uref{https://docs.python.org/library/doctest.html, the Doctest website}.") (license license:expat))) (define-public ghc-dotgen (package (name "ghc-dotgen") (version "0.4.3") (source (origin (method url-fetch) (uri (hackage-uri "dotgen" version)) (sha256 (base32 "1jcn5m9342jrdq7jln2v9msf9978ngrx0pq9rrjh8izhvbvph76s")))) (build-system haskell-build-system) (properties '((upstream-name . "dotgen"))) (home-page "https://github.com/ku-fpg/dotgen") (synopsis "Simple interface for building .dot graph files") (description "This package provides a simple interface for building .dot graph files, for input into the dot and graphviz tools. It includes a monadic interface for building graphs.") (license license:bsd-3))) (define-public ghc-double-conversion (package (name "ghc-double-conversion") (version "2.0.4.2") (source (origin (method url-fetch) (uri (hackage-uri "double-conversion" version)) (sha256 (base32 "0r7c1801gzdm5x1flmpx8ajxygbc9dl7sgdj0xn3bpm71wgvrf4s")))) (build-system haskell-build-system) (properties '((upstream-name . "double-conversion"))) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (arguments `(#:cabal-revision ("2" "1mpnx4m2pg5crfz9k8wamh5mgsha0np3ynnllrmglmwh54gvfjj3"))) (home-page "https://github.com/haskell/double-conversion") (synopsis "Fast conversion between double precision floating point and text") (description "This package provides a library that performs fast, accurate conversion between double precision floating point and text.") (license license:bsd-3))) (define-public ghc-dual-tree (package (name "ghc-dual-tree") (version "0.2.3.1") (source (origin (method url-fetch) (uri (hackage-uri "dual-tree" version)) (sha256 (base32 "19nm34d166fhlkk7npx0iq9kbx7300a82bg75q1sx98jqfa4nffh")))) (build-system haskell-build-system) (properties '((upstream-name . "dual-tree"))) (inputs (list ghc-semigroups ghc-monoid-extras)) (native-inputs (list ghc-quickcheck ghc-testing-feat)) (home-page "https://hackage.haskell.org/package/dual-tree") (synopsis "Rose trees with cached and accumulating monoidal annotations") (description "Rose (@math{n}-ary) trees with both upwards- (i.e. cached) and downwards-traveling (i.e. accumulating) monoidal annotations. This is used as the core data structure underlying the @url{https://archives.haskell.org/projects.haskell.org/diagrams/, diagrams framework}, but potentially has other applications as well.") (license license:bsd-3))) (define-public ghc-easy-file (package (name "ghc-easy-file") (version "0.2.5") (source (origin (method url-fetch) (uri (hackage-uri "easy-file" version)) (sha256 (base32 "1fzj9x9br57rcik3dvwxqb5mqy524g6xg2d670l6dcrv9f8s03zf")))) (build-system haskell-build-system) (properties '((upstream-name . "easy-file"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/kazu-yamamoto/easy-file") (synopsis "File handling library for Haskell") (description "This library provides file handling utilities for Haskell.") (license license:bsd-3))) (define-public ghc-easyplot (package (name "ghc-easyplot") (version "1.0") (source (origin (method url-fetch) (uri (hackage-uri "easyplot" version)) (sha256 (base32 "18kndgvdj2apjpfga6fp7m16y1gx8zrwp3c5vfj03sx4v6jvciqk")))) (build-system haskell-build-system) (properties '((upstream-name . "easyplot"))) (propagated-inputs (list gnuplot)) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-setup-suffix (lambda _ (rename-file "Setup.lhs" "Setup.hs") #t))))) (home-page "https://hub.darcs.net/scravy/easyplot") (synopsis "Haskell plotting library based on gnuplot") (description "This package provides a plotting library for Haskell, using gnuplot for rendering.") (license license:expat))) (define-public ghc-echo (package (name "ghc-echo") (version "0.1.4") (source (origin (method url-fetch) (uri (hackage-uri "echo" version)) (sha256 (base32 "0hqfdd4kvpp59cjjv790bkf72yqr9xjfqlbjcrdsc9a8j3r1pzn9")))) (build-system haskell-build-system) (properties '((upstream-name . "echo"))) (arguments `(#:cabal-revision ("1" "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"))) (home-page "https://github.com/RyanGlScott/echo") (synopsis "Echo terminal input portably") (description "The @code{base} library exposes the @code{hGetEcho} and @code{hSetEcho} functions for querying and setting echo status, but unfortunately, neither function works with MinTTY consoles on Windows. This library provides an alternative interface which works with both MinTTY and other consoles.") (license license:bsd-3))) (define-public ghc-edit-distance (package (name "ghc-edit-distance") (version "0.2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "edit-distance" version)) (sha256 (base32 "0jkca97zyv23yyilp3jydcrzxqhyk27swhzh82llvban5zp8b21y")))) (build-system haskell-build-system) (properties '((upstream-name . "edit-distance"))) (arguments `(#:tests? #f ; TODO: Needs quickcheck<2.10 #:cabal-revision ("1" "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"))) (inputs (list ghc-random ghc-test-framework ghc-quickcheck ghc-test-framework-quickcheck2)) (home-page "https://github.com/phadej/edit-distance") (synopsis "Levenshtein and restricted Damerau-Levenshtein edit distances") (description "This package provides optimized functions to determine the edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms.") (license license:bsd-3))) (define-public ghc-edit-distance-vector (package (name "ghc-edit-distance-vector") (version "1.0.0.4") (source (origin (method url-fetch) (uri (hackage-uri "edit-distance-vector" version)) (sha256 (base32 "07qgc8dyi9kkzkd3xcd78wdlljy0xwhz65b4r2qg2piidpcdvpxp")))) (build-system haskell-build-system) (properties '((upstream-name . "edit-distance-vector"))) (inputs (list ghc-vector)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances)) (home-page "https://github.com/thsutton/edit-distance-vector") (synopsis "Calculate edit distances and edit scripts between vectors") (description "This package provides implementation of the Wagner-Fischer dynamic programming algorithm to find the optimal edit script and cost between two sequences. The implementation in this package is specialised to sequences represented with @code{Data.Vector} but is otherwise agnostic to: @itemize @item The type of values in the vectors; @item The type representing edit operations; and @item The type representing the cost of operations. @end itemize") (license license:bsd-3)) ) (define-public ghc-either (package (name "ghc-either") (version "5.0.2") (source (origin (method url-fetch) (uri (hackage-uri "either" version)) (sha256 (base32 "1gl748ia68bldbqb2fl7vjv44g0y8ivn659fjmy1qyypgyb5p95z")))) (build-system haskell-build-system) (properties '((upstream-name . "either"))) (inputs (list ghc-bifunctors ghc-profunctors ghc-semigroupoids)) (native-inputs (list ghc-test-framework ghc-test-framework-quickcheck2 ghc-quickcheck)) (home-page "https://github.com/ekmett/either/") (synopsis "Provides an either monad transformer for Haskell") (description "This Haskell package provides an either monad transformer.") (license license:bsd-3))) (define-public ghc-email-validate (package (name "ghc-email-validate") (version "2.3.2.18") (source (origin (method url-fetch) (uri (hackage-uri "email-validate" version)) (sha256 (base32 "11bi5y5qmri62nl34nl5pv4zs59bjpjknw560yw5ds62gsi2sjcp")))) (build-system haskell-build-system) (properties '((upstream-name . "email-validate"))) (inputs (list ghc-attoparsec)) (native-inputs (list ghc-hspec ghc-quickcheck ghc-doctest)) (home-page "https://github.com/Porges/email-validate-hs") (synopsis "Email address validator for Haskell") (description "This Haskell package provides a validator that can validate an email address string against RFC 5322.") (license license:bsd-3))) (define-public ghc-enclosed-exceptions (package (name "ghc-enclosed-exceptions") (version "1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "enclosed-exceptions" version)) (sha256 (base32 "1fghjj7nkiddrf03ks8brjpr5x25yi9fs7xg6adbi4mc2gqr6vdg")))) (build-system haskell-build-system) (properties '((upstream-name . "enclosed-exceptions"))) ;; FIXME: one of the tests blocks forever: ;; "thread blocked indefinitely in an MVar operation" (arguments '(#:tests? #f)) (inputs (list ghc-lifted-base ghc-monad-control ghc-async ghc-transformers-base)) (native-inputs (list ghc-hspec ghc-quickcheck)) (home-page "https://github.com/jcristovao/enclosed-exceptions") (synopsis "Catch all exceptions from within an enclosed computation") (description "This library implements a technique to catch all exceptions raised within an enclosed computation, while remaining responsive to (external) asynchronous exceptions.") (license license:expat))) (define-public ghc-equivalence (package (name "ghc-equivalence") (version "0.4.1") (source (origin (method url-fetch) (uri (hackage-uri "equivalence" version)) (sha256 (base32 "13q0lklm58n0l7bx0d4k1cw1i2il8hpdjp76lb79ix8lv7cxd2jr")))) (build-system haskell-build-system) (properties '((upstream-name . "equivalence"))) (inputs (list ghc-stmonadtrans ghc-transformers-compat ghc-fail)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/pa-ba/equivalence") (synopsis "Maintaining an equivalence relation implemented as union-find") (description "This is an implementation of Tarjan's Union-Find algorithm (Robert E.@: Tarjan. \"Efficiency of a Good But Not Linear Set Union Algorithm\",JACM 22(2), 1975) in order to maintain an equivalence relation. This implementation is a port of the @code{union-find} package using the @code{ST} monad transformer (instead of the IO monad).") (license license:bsd-3))) (define-public ghc-erf (package (name "ghc-erf") (version "2.0.0.0") (source (origin (method url-fetch) (uri (hackage-uri "erf" version)) (sha256 (base32 "0dxk2r32ajmmc05vaxcp0yw6vgv4lkbmh8jcshncn98xgsfbgw14")))) (build-system haskell-build-system) (properties '((upstream-name . "erf"))) (home-page "https://hackage.haskell.org/package/erf") (synopsis "The error function, erf, and related functions for Haskell") (description "This Haskell library provides a type class for the error function, erf, and related functions. Instances for Float and Double.") (license license:bsd-3))) (define-public ghc-errorcall-eq-instance (package (name "ghc-errorcall-eq-instance") (version "0.3.0") (source (origin (method url-fetch) (uri (hackage-uri "errorcall-eq-instance" version)) (sha256 (base32 "0hqw82m8bbrxy5vgdwb83bhzdx070ibqrm9rshyja7cb808ahijm")))) (build-system haskell-build-system) (properties '((upstream-name . "errorcall-eq-instance"))) (inputs (list ghc-base-orphans)) (native-inputs (list ghc-quickcheck ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/errorcall-eq-instance") (synopsis "Orphan Eq instance for ErrorCall") (description "Prior to @code{base-4.7.0.0} there was no @code{Eq} instance for @code{ErrorCall}. This package provides an orphan instance.") (license license:expat))) (define-public ghc-errors (package (name "ghc-errors") (version "2.3.0") (source (origin (method url-fetch) (uri (hackage-uri "errors" version)) (sha256 (base32 "0x8znwn31qcx6kqx99wp7bc86kckfb39ncz3zxvj1s07kxlfawk7")))) (build-system haskell-build-system) (properties '((upstream-name . "errors"))) (inputs (list ghc-exceptions ghc-transformers-compat ghc-unexceptionalio ghc-safe)) (arguments `(#:cabal-revision ("4" "0sji6ny86f4j9ch1cyf2p1mcr5b2ighvw4bb9rssvypxb6k2r68f"))) (home-page "https://github.com/gabriel439/haskell-errors-library") (synopsis "Error handling library for Haskell") (description "This library encourages an error-handling style that directly uses the type system, rather than out-of-band exceptions.") (license license:bsd-3))) (define-public ghc-esqueleto (package (name "ghc-esqueleto") (version "3.5.10.0") (source (origin (method url-fetch) (uri (hackage-uri "esqueleto" version)) (sha256 (base32 "0nbb6l4q22y8rwcjsrwqri3ndjn4rslpnglj3nkh00rixdm9jhsr")))) (build-system haskell-build-system) (properties '((upstream-name . "esqueleto"))) (inputs (list ghc-aeson ghc-attoparsec ghc-blaze-html ghc-conduit ghc-monad-logger ghc-persistent ghc-resourcet ghc-tagged ghc-unliftio ghc-unordered-containers)) (native-inputs (list ghc-hspec ghc-hspec-core ghc-mysql ghc-mysql-simple ghc-persistent-mysql ghc-persistent-postgresql ghc-persistent-sqlite ghc-postgresql-simple ghc-quickcheck)) (arguments (list #:tests? #f)) ; Needs a running MySQLd. (home-page "https://github.com/bitemyapp/esqueleto") (synopsis "Type-safe embedded domain specific language for SQL queries") (description "This library provides a type-safe embedded domain specific language (EDSL) for SQL queries that works with SQL backends as provided by @code{ghc-persistent}. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend.") (license license:bsd-3))) (define-public ghc-exactprint (package (name "ghc-exactprint") (version "1.5.0") (source (origin (method url-fetch) (uri (hackage-uri "ghc-exactprint" version)) (sha256 (base32 "07m4cg47knrrvpyimnbc0nq9176vkzwwa64b2iqfj6azn6q2hagp")))) (build-system haskell-build-system) (properties '((upstream-name . "ghc-exactprint"))) (inputs (list ghc-ordered-containers ghc-data-default ghc-paths ghc-syb ghc-free ghc-fail)) (native-inputs (list ghc-hunit ghc-diff ghc-silently ghc-filemanip)) (arguments `(#:cabal-revision ("1" "1v6my8bnhjhw7k3v2q9iwjpz9lj5g6ilvlzdq6svcabxahmzbr2c"))) (home-page "https://hackage.haskell.org/package/ghc-exactprint") (synopsis "ExactPrint for GHC") (description "Using the API Annotations available from GHC 7.10.2, this library provides a means to round-trip any code that can be compiled by GHC, currently excluding @file{.lhs} files.") (license license:bsd-3))) (define-public ghc-exceptions (package (name "ghc-exceptions") (version "0.10.4") (source (origin (method url-fetch) (uri (hackage-uri "exceptions" version)) (sha256 (base32 "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd")))) (build-system haskell-build-system) (properties '((upstream-name . "exceptions"))) (arguments `(#:cabal-revision ("2" "1154g0dqil2xf4wc1v6gndzhnbf5saf2dzf77c6lcjxssx360m6j"))) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (inputs (list ghc-transformers-compat)) (home-page "https://github.com/ekmett/exceptions/") (synopsis "Extensible optionally-pure exceptions") (description "This library provides extensible optionally-pure exceptions for Haskell.") (license license:bsd-3))) (define-public ghc-executable-path (package (name "ghc-executable-path") (version "0.0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "executable-path" version)) (sha256 (base32 "0vxwmnsvx13cawcyhbyljkds0l1vr996ijldycx7nj0asjv45iww")))) (build-system haskell-build-system) (properties '((upstream-name . "executable-path"))) (home-page "https://hackage.haskell.org/package/executable-path") (synopsis "Find out the full path of the executable") (description "The documentation of @code{System.Environment.getProgName} says that \"However, this is hard-to-impossible to implement on some non-Unix OSes, so instead, for maximum portability, we just return the leafname of the program as invoked.\" This library tries to provide the missing path.") (license license:public-domain))) (define-public ghc-extensible-exceptions (package (name "ghc-extensible-exceptions") (version "0.1.1.4") (source (origin (method url-fetch) (uri (hackage-uri "extensible-exceptions" version)) (sha256 (base32 "1273nqws9ij1rp1bsq5jc7k2jxpqa0svawdbim05lf302y0firbc")))) (build-system haskell-build-system) (properties '((upstream-name . "extensible-exceptions"))) (home-page "https://hackage.haskell.org/package/extensible-exceptions") (synopsis "Extensible exceptions for Haskell") (description "This package provides extensible exceptions for both new and old versions of GHC (i.e., < 6.10).") (license license:bsd-3))) (define-public ghc-extra (package (name "ghc-extra") (version "1.7.13") (source (origin (method url-fetch) (uri (hackage-uri "extra" version)) (sha256 (base32 "0rvvbix6dh6nwg0c2vdfvnkmkgzjrrwpnbz0magn9r3c66qcbsmx")))) (build-system haskell-build-system) (properties '((upstream-name . "extra"))) (inputs (list ghc-clock)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances)) (home-page "https://github.com/ndmitchell/extra#readme") (synopsis "Extra Haskell functions") (description "This library provides extra functions for the standard Haskell libraries. Most functions are simple additions, filling out missing functionality. A few functions are available in later versions of GHC, but this package makes them available back to GHC 7.2.") (license license:bsd-3))) (define-public ghc-fail (package (name "ghc-fail") (version "4.9.0.0") (source (origin (method url-fetch) (uri (hackage-uri "fail" version)) (sha256 (base32 "18nlj6xvnggy61gwbyrpmvbdkq928wv0wx2zcsljb52kbhddnp3d")))) (build-system haskell-build-system) (properties '((upstream-name . "fail"))) (arguments `(#:haddock? #f)) ; Package contains no documentation. (home-page "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail") (synopsis "Forward-compatible MonadFail class") (description "This package contains the @code{Control.Monad.Fail} module providing the @uref{https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail, MonadFail} class that became available in @uref{https://hackage.haskell.org/package/base-4.9.0.0, base-4.9.0.0} for older @code{base} package versions. This package turns into an empty package when used with GHC versions which already provide the @code{Control.Monad.Fail} module.") (license license:bsd-3))) (define-public ghc-fast-logger (package (name "ghc-fast-logger") (version "3.1.2") (source (origin (method url-fetch) (uri (hackage-uri "fast-logger" version)) (sha256 (base32 "1l0h4ddb17xm6qkjhn5gqyfz18szyqcq9wqq92fc24sp2zbd7rv5")))) (build-system haskell-build-system) (properties '((upstream-name . "fast-logger"))) (inputs (list ghc-auto-update ghc-easy-file ghc-unix-time ghc-unix-compat ghc-bytestring-builder)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/kazu-yamamoto/logger") (synopsis "Fast logging system") (description "This library provides a fast logging system for Haskell.") (license license:bsd-3))) (define-public ghc-fdo-notify (package (name "ghc-fdo-notify") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "fdo-notify" version)) (sha256 (base32 "1n4zk1i7g34w0wk5zy8n4r63xbglxf62h8j78kv5fc2yn95l30vh")))) (build-system haskell-build-system) (properties '((upstream-name . "fdo-notify"))) (inputs (list ghc-dbus)) (home-page "http://bitbucket.org/taejo/fdo-notify/") (synopsis "Desktop Notifications client") (description "This package provides a library for issuing notifications using @code{FreeDesktop.org's} Desktop Notifications protcol. This protocol is supported by services such as Ubuntu's @code{NotifyOSD}.") (license license:bsd-3))) (define-public ghc-feed (package (name "ghc-feed") (version "1.3.2.1") (source (origin (method url-fetch) (uri (hackage-uri "feed" version)) (sha256 (base32 "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8")))) (build-system haskell-build-system) (properties '((upstream-name . "feed"))) (inputs (list ghc-base-compat ghc-old-locale ghc-old-time ghc-safe ghc-time-locale-compat ghc-utf8-string ghc-xml-types ghc-xml-conduit)) (native-inputs (list ghc-hunit ghc-markdown-unlit ghc-syb ghc-test-framework ghc-test-framework-hunit ghc-doctest ghc-doctest-driver-gen)) (arguments (list #:tests? #f)) ; Must be installed before testing. (home-page "https://github.com/haskell-party/feed") (synopsis "Haskell package for handling various syndication formats") (description "This Haskell package includes tools for generating and consuming feeds in both RSS (Really Simple Syndication) and Atom format.") (license license:bsd-3))) (define-public ghc-fgl (package (name "ghc-fgl") (version "5.7.0.3") (outputs '("out" "doc")) (source (origin (method url-fetch) (uri (hackage-uri "fgl" version)) (sha256 (base32 "04k5grp5d381wkc7sxgcl0sd3z3nlm6l6mmh103vhzh6p49vhs99")))) (build-system haskell-build-system) (properties '((upstream-name . "fgl"))) (arguments `(#:cabal-revision ("1" "0d5b88j42a3f50b7kbksszvwvcgr59f8pcg3p6cvzq9f4n7y51s7") #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "fgl.cabal" (("hspec >= 2\\.1 && < 2\\.8") "hspec"))))))) (inputs (list ghc-hspec ghc-quickcheck)) (home-page "https://web.engr.oregonstate.edu/~erwig/fgl/haskell") (synopsis "Martin Erwig's Functional Graph Library") (description "The functional graph library, FGL, is a collection of type and function definitions to address graph problems. The basis of the library is an inductive definition of graphs in the style of algebraic data types that encourages inductive, recursive definitions of graph algorithms.") (license license:bsd-3))) (define-public ghc-fgl-arbitrary (package (name "ghc-fgl-arbitrary") (version "0.2.0.6") (source (origin (method url-fetch) (uri (hackage-uri "fgl-arbitrary" version)) (sha256 (base32 "1mykbd1r43gpsn10ys8q3nr0i4wnhn6wq23hcici18mxxji11wkc")))) (build-system haskell-build-system) (properties '((upstream-name . "fgl-arbitrary"))) (inputs (list ghc-fgl ghc-quickcheck ghc-hspec)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "fgl-arbitrary.cabal" (("hspec >= 2\\.1 && < 2\\.8") "hspec"))))))) (home-page "https://hackage.haskell.org/package/fgl-arbitrary") (synopsis "QuickCheck support for fgl") (description "Provides Arbitrary instances for fgl graphs to avoid adding a QuickCheck dependency for fgl whilst still making the instances available to others. Also available are non-fgl-specific functions for generating graph-like data structures.") (license license:bsd-3))) (define-public ghc-file-embed (package (name "ghc-file-embed") (version "0.0.15.0") (source (origin (method url-fetch) (uri (hackage-uri "file-embed" version)) (sha256 (base32 "1pavxj642phrkq67620g10wqykjfhmm9yj2rm8pja83sadfvhrph")))) (build-system haskell-build-system) (properties '((upstream-name . "file-embed"))) (home-page "https://github.com/snoyberg/file-embed") (synopsis "Use Template Haskell to embed file contents directly") (description "This package allows you to use Template Haskell to read a file or all the files in a directory, and turn them into @code{(path, bytestring)} pairs embedded in your Haskell code.") (license license:bsd-3))) (define-public ghc-filemanip (package (name "ghc-filemanip") (version "0.3.6.3") (source (origin (method url-fetch) (uri (hackage-uri "filemanip" version)) (sha256 (base32 "0ilqr8jv41zxcj5qyicg29m8s30b9v70x6f9h2h2rw5ap8bxldl8")))) (build-system haskell-build-system) (properties '((upstream-name . "filemanip"))) (inputs (list ghc-unix-compat)) (home-page "https://github.com/bos/filemanip") (synopsis "File and directory manipulation for Haskell") (description "This package provides a Haskell library for working with files and directories. It includes code for pattern matching, finding files, modifying file contents, and more.") (license license:bsd-3))) ;; Deprecated. (define-public ghc-filepath-bytestring (package (name "ghc-filepath-bytestring") (version "1.4.2.1.12") (source (origin (method url-fetch) (uri (hackage-uri "filepath-bytestring" version)) (sha256 (base32 "0i8j724fz8h1bcqvlvp3sxmgyrvx2sim74cvzkpc9m05yn9p27sq")))) (build-system haskell-build-system) (properties '((upstream-name . "filepath-bytestring"))) (native-inputs (list ghc-quickcheck)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "filepath-bytestring.cabal" (("filepath >= 1\\.4\\.2 && <= 1\\.4\\.2\\.1") "filepath"))))))) (home-page "https://hackage.haskell.org/package/filepath-bytestring") (synopsis "Library for manipulating RawFilePaths in a cross-platform way") (description "This package provides a drop-in replacement for the standard @code{filepath} library, operating on @code{RawFilePath} values rather than @code{FilePath} values to get the speed benefits of using @code{ByteStrings}.") (license license:bsd-3))) (define-public ghc-findbin (package (name "ghc-findbin") (version "0.0.5") (source (origin (method url-fetch) (uri (hackage-uri "FindBin" version)) (sha256 (base32 "197xvn05yysmibm1p5wzxfa256lvpbknr5d1l2ws6g40w1kpk717")))) (build-system haskell-build-system) (properties '((upstream-name . "FindBin"))) (home-page "https://github.com/audreyt/findbin") (synopsis "Get the absolute path of the running program") (description "This module locates the full directory of the running program, to allow the use of paths relative to it. FindBin supports invocation of Haskell programs via \"ghci\", via \"runhaskell/runghc\", as well as compiled as an executable.") (license license:bsd-3))) (define-public ghc-fingertree (package (name "ghc-fingertree") (version "0.1.5.0") (source (origin (method url-fetch) (uri (hackage-uri "fingertree" version)) (sha256 (base32 "0wdzpli8bpgk8lrsp105zb0y5gn1r2029laclvhz264bza93q9pk")))) (build-system haskell-build-system) (properties '((upstream-name . "fingertree"))) (native-inputs (list ghc-hunit ghc-quickcheck ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://hackage.haskell.org/package/fingertree") (synopsis "Generic finger-tree structure") (description "This library provides finger trees, a general sequence representation with arbitrary annotations, for use as a base for implementations of various collection types. It includes examples, as described in section 4 of Ralf Hinze and Ross Paterson, \"Finger trees: a simple general-purpose data structure\".") (license license:bsd-3))) (define-public ghc-finite-typelits (package (name "ghc-finite-typelits") (version "0.1.6.0") (source (origin (method url-fetch) (uri (hackage-uri "finite-typelits" version)) (sha256 (base32 "0f047dywlxiz3pl3rq6maym9wpwjwl4zjqfwlwnj0yiv7dmlaiih")))) (build-system haskell-build-system) (properties '((upstream-name . "finite-typelits"))) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/mniip/finite-typelits") (synopsis "Finitely many values, indexed by type-level naturals") (description "This package provides a Haskell type inhabited by finitely many values and indexed by type-level naturals.") (license license:bsd-3))) (define-public ghc-fixed (package (name "ghc-fixed") (version "0.3") (source (origin (method url-fetch) (uri (hackage-uri "fixed" version)) (sha256 (base32 "10l2sh179xarb774q92cff2gkb20rsrlilfwp1fk61rzmz9yn64j")))) (build-system haskell-build-system) (properties '((upstream-name . "fixed"))) (home-page "https://github.com/ekmett/fixed") (synopsis "Signed 15.16 precision fixed point arithmetic") (description "This package provides functions for signed 15.16 precision fixed point arithmetic.") (license license:bsd-3))) (define-public ghc-fmlist (package (name "ghc-fmlist") (version "0.9.4") (source (origin (method url-fetch) (uri (hackage-uri "fmlist" version)) (sha256 (base32 "19h95ph7lh7llw6j1v1rssrdi5k7xw8x0iac9rgzss371s2w3g9d")))) (build-system haskell-build-system) (properties '((upstream-name . "fmlist"))) (home-page "https://github.com/sjoerdvisscher/fmlist") (synopsis "FoldMap lists") (description "FoldMap lists are lists represented by their @code{foldMap} function. FoldMap lists have @math{O(1)} cons, snoc and append, just like DLists, but other operations might have favorable performance characteristics as well. These wild claims are still completely unverified though.") (license license:bsd-3))) (define-public ghc-foldl (package (name "ghc-foldl") (version "1.4.14") (source (origin (method url-fetch) (uri (hackage-uri "foldl" version)) (sha256 (base32 "0ihfari2d8czfxfxv5svczpq1cvi3qi55mxphjjqlnabxa76y1cc")))) (build-system haskell-build-system) (properties '((upstream-name . "foldl"))) (inputs (list ghc-random ghc-primitive ghc-vector ghc-unordered-containers ghc-hashable ghc-contravariant ghc-profunctors ghc-semigroupoids ghc-comonad ghc-semigroups)) (native-inputs (list ghc-doctest)) (arguments `(#:cabal-revision ("2" "1a7g9j8ds4zrpdx9qrqzbz3clhz1caky9znb8yzfsc7xcnbbgqpn"))) (home-page "https://hackage.haskell.org/package/foldl") (synopsis "Composable, streaming, and efficient left folds for Haskell") (description "This Haskell library provides strict left folds that stream in constant memory, and you can combine folds using @code{Applicative} style to derive new folds. Derived folds still traverse the container just once and are often as efficient as hand-written folds.") (license license:bsd-3))) (define-public ghc-foundation (package (name "ghc-foundation") (version "0.0.30") (source (origin (method url-fetch) (uri (hackage-uri "foundation" version)) (sha256 (base32 "11hdqd01ggdr7fjw3w00giay06bzz97qqiiq60vi1l1dzz1wrwzn")))) (build-system haskell-build-system) (properties '((upstream-name . "foundation"))) (inputs (list ghc-basement)) (home-page "https://github.com/haskell-foundation/foundation") (synopsis "Alternative prelude with batteries and no dependencies") (description "This package provides a custom prelude with no dependencies apart from the base package. Foundation has the following goals: @enumerate @item provide a base like sets of modules that provide a consistent set of features and bugfixes across multiple versions of GHC (unlike base). @item provide a better and more efficient prelude than base's prelude. @item be self-sufficient: no external dependencies apart from base; @item provide better data-types: packed unicode string by default, arrays; @item Numerical classes that better represent mathematical things (no more all-in-one @code{Num}); @item I/O system with less lazy IO. @end enumerate ") (license license:bsd-3))) (define-public ghc-free (package (name "ghc-free") (version "5.1.10") (source (origin (method url-fetch) (uri (hackage-uri "free" version)) (sha256 (base32 "0whff0r0nvii5l9z9crw7v0rj0wwblwbnfp99515siyxjkzs9phj")))) (build-system haskell-build-system) (properties '((upstream-name . "free"))) (inputs (list ghc-comonad ghc-distributive ghc-indexed-traversable ghc-semigroupoids ghc-th-abstraction ghc-transformers-base ghc-profunctors)) (home-page "https://github.com/ekmett/free/") (synopsis "Unrestricted monads for Haskell") (description "This library provides free monads, which are useful for many tree-like structures and domain specific languages. If @code{f} is a @code{Functor} then the free @code{Monad} on @code{f} is the type of trees whose nodes are labeled with the constructors of @code{f}. The word \"free\" is used in the sense of \"unrestricted\" rather than \"zero-cost\": @code{Free f} makes no constraining assumptions beyond those given by @code{f} and the definition of @code{Monad}.") (license license:bsd-3))) (define-public ghc-fsnotify (package (name "ghc-fsnotify") (version "0.3.0.1") (source (origin (method url-fetch) (uri (hackage-uri "fsnotify" version)) (sha256 (base32 "19bdbz9wb9jvln6yg6qm0hz0w84bypvkxf0wjhgrgd52f9gidlny")))) (build-system haskell-build-system) (properties '((upstream-name . "fsnotify"))) (inputs (list ghc-async ghc-unix-compat ghc-hinotify ghc-tasty ghc-tasty-hunit ghc-random ghc-shelly ghc-temporary)) (home-page "https://github.com/haskell-fswatch/hfsnotify") (synopsis "Cross platform library for file change notification") (description "Cross platform library for file creation, modification, and deletion notification. This library builds upon existing libraries for platform specific Windows, Mac, and Linux file system event notification.") (license license:bsd-3))) (define-public ghc-generic-deriving (package (name "ghc-generic-deriving") (version "1.14.4") (source (origin (method url-fetch) (uri (hackage-uri "generic-deriving" version)) (sha256 (base32 "0p0rv3z6icjw7f05arq6aqs6bx249544l0h2hvzwxm0yr6r8farp")))) (build-system haskell-build-system) (properties '((upstream-name . "generic-deriving"))) (inputs (list ghc-th-abstraction)) ;(native-inputs (list ghc-hspec)) (arguments (list #:tests? #f)) ;; Cannot resolve package cycle. (home-page "https://github.com/dreixel/generic-deriving") (synopsis "Generalise the deriving mechanism to arbitrary classes") (description "This package provides functionality for generalising the deriving mechanism in Haskell to arbitrary classes.") (license license:bsd-3))) (define-public ghc-generic-random (package (name "ghc-generic-random") (version "1.5.0.1") (source (origin (method url-fetch) (uri (hackage-uri "generic-random" version)) (sha256 (base32 "02iczjf2xc4sxfi234nf6irfj5slvf3p5hpaxl8r5nc8hy052d6x")))) (build-system haskell-build-system) (properties `((upstream-name . "generic-random"))) (inputs (list ghc-quickcheck)) (native-inputs (list ghc-inspection-testing ghc-inspection-testing)) (home-page "https://github.com/lysxia/generic-random") (synopsis "Generic random generators for QuickCheck") (description "Derive instances of @code{Arbitrary} for QuickCheck, with various options to customize implementations. Automating the arbitrary boilerplate also ensures that when a type changes to have more or fewer constructors, then the generator either fixes itself to generate that new case (when using the uniform distribution) or causes a compilation error so you remember to fix it (when using an explicit distribution). This package also offers a simple (optional) strategy to ensure termination for recursive types: make @code{Test.QuickCheck.Gen}'s size parameter decrease at every recursive call; when it reaches zero, sample directly from a trivially terminating generator given explicitly (@code{genericArbitraryRec} and @code{withBaseCase}) or implicitly (@code{genericArbitrary'}).") (license license:expat))) (define-public ghc-generics-sop (package (name "ghc-generics-sop") (version "0.5.1.3") (source (origin (method url-fetch) (uri (hackage-uri "generics-sop" version)) (sha256 (base32 "01xgd5b4na6xz2bw117hw37k3iqfk3mabi4aadkzs527rawwg77c")))) (build-system haskell-build-system) (properties '((upstream-name . "generics-sop"))) (inputs (list ghc-sop-core ghc-th-abstraction)) (home-page "https://hackage.haskell.org/package/generics-sop") (synopsis "Generic Programming using True Sums of Products for Haskell") (description "This Haskell package supports the definition of generic functions. Datatypes are viewed in a uniform, structured way: the choice between constructors is represented using an n-ary sum, and the arguments of each constructor are represented using an n-ary product.") (license license:bsd-3))) (define-public ghc-genvalidity (package (name "ghc-genvalidity") (version "1.1.0.0") (source (origin (method url-fetch) (uri (hackage-uri "genvalidity" version)) (sha256 (base32 "08xvbgzhi9f2s3g81zzd8yhrn66mr84m0dvp478nrbck19jdg5sq")))) (build-system haskell-build-system) (properties '((upstream-name . "genvalidity"))) (inputs (list ghc-quickcheck ghc-random ghc-validity)) (native-inputs (list ghc-hspec ghc-hspec-core hspec-discover)) (home-page "https://github.com/NorfairKing/validity#readme") (synopsis "Testing utilities for the @code{validity} library") (description "This package provides testing utilities that are useful in conjunction with the @code{Validity} typeclass.") (license license:expat))) (define-public ghc-genvalidity-property (package (name "ghc-genvalidity-property") (version "1.0.0.0") (source (origin (method url-fetch) (uri (hackage-uri "genvalidity-property" version)) (sha256 (base32 "1nxcdq04rkckrb3v49pjx378n5s828k24x7hix6manyxqmd3hplw")))) (build-system haskell-build-system) (properties '((upstream-name . "genvalidity-property"))) (inputs (list ghc-quickcheck ghc-genvalidity ghc-hspec ghc-pretty-show ghc-validity hspec-discover)) (home-page "https://github.com/NorfairKing/validity#readme") (synopsis "Standard properties for functions on @code{Validity} types") (description "This package supplements the @code{Validity} typeclass with standard properties for functions operating on them.") (license license:expat))) (define-public ghc-getopt-generics (package (name "ghc-getopt-generics") (version "0.13.1.0") (source (origin (method url-fetch) (uri (hackage-uri "getopt-generics" version)) (sha256 (base32 "00xswyi9y49qab2fpkdx7isx40kfa93p3gfransivzgg9m3si37d")))) (build-system haskell-build-system) (properties '((upstream-name . "getopt-generics"))) (inputs (list ghc-base-compat ghc-base-orphans ghc-generics-sop ghc-tagged)) (native-inputs (list ghc-quickcheck ghc-hspec ghc-safe ghc-silently hspec-discover)) (home-page "https://github.com/soenkehahn/getopt-generics#readme") (synopsis "Create command line interfaces with ease") (description "This library provides tools to create command line interfaces with ease.") (license license:bsd-3))) (define-public ghc-gitrev (package (name "ghc-gitrev") (version "1.3.1") (source (origin (method url-fetch) (uri (hackage-uri "gitrev" version)) (sha256 (base32 "0cl3lfm6k1h8fxp2vxa6ihfp4v8igkz9h35iwyq2frzm4kdn96d8")))) (build-system haskell-build-system) (properties '((upstream-name . "gitrev"))) (inputs (list ghc-base-compat)) (home-page "https://github.com/acfoltzer/gitrev") (synopsis "Compile git revision info into Haskell projects") (description "This package provides some handy Template Haskell splices for including the current git hash and branch in the code of your project. This is useful for including in panic messages, @command{--version} output, or diagnostic info for more informative bug reports.") (license license:bsd-3))) (define-public ghc-glob (package (name "ghc-glob") (version "0.10.2") (source (origin (method url-fetch) (uri (hackage-uri "Glob" version)) (sha256 (base32 "1h3kh46qds4nqvixm4myy1kb5slg53f44hfn8aymrlr7hjn75xka")))) (build-system haskell-build-system) (properties '((upstream-name . "Glob"))) (arguments `(#:cabal-revision ("3" "1080rd5073g87rfm5whimb72b75105lqanybrbsfi14gmvndnbfx"))) (inputs (list ghc-dlist ghc-semigroups ghc-transformers-compat)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://iki.fi/matti.niemenmaa/glob/") (synopsis "Haskell library matching glob patterns against file paths") (description "This package provides a Haskell library for @dfn{globbing}: matching patterns against file paths.") (license license:bsd-3))) (define-public ghc-gluraw (package (name "ghc-gluraw") (version "2.0.0.5") (source (origin (method url-fetch) (uri (hackage-uri "GLURaw" version)) (sha256 (base32 "1b3rnva77k9naw5bl573bqgmsq7n9i8rrrvfvhbjcndqgmzhkini")))) (build-system haskell-build-system) (properties '((upstream-name . "GLURaw"))) (inputs (list ghc-openglraw)) (home-page "http://www.haskell.org/haskellwiki/Opengl") (synopsis "Raw Haskell bindings GLU") (description "GLURaw is a raw Haskell binding for the GLU 1.3 OpenGL utility library. It is basically a 1:1 mapping of GLU's C API, intended as a basis for a nicer interface.") (license license:bsd-3))) (define-public ghc-glut (package (name "ghc-glut") (version "2.7.0.16") (source (origin (method url-fetch) (uri (hackage-uri "GLUT" version)) (sha256 (base32 "0vdkfj4wjzigdpzgr5l001y9wkhwgl00mclr26gf93kps14fkymn")))) (build-system haskell-build-system) (properties '((upstream-name . "GLUT"))) (inputs (list ghc-statevar ghc-opengl ghc-openglraw freeglut)) (home-page "https://wiki.haskell.org/Opengl") (synopsis "Haskell bindings for the OpenGL Utility Toolkit") (description "This library provides Haskell bindings for the OpenGL Utility Toolkit, a window system-independent toolkit for writing OpenGL programs.") (license license:bsd-3))) (define-public ghc-gnuplot (package (name "ghc-gnuplot") (version "0.5.7") (source (origin (method url-fetch) (uri (hackage-uri "gnuplot" version)) (sha256 (base32 "1glahh3si5bpazsklnpwxx4h4ivgb4wyngc032797zq1496fhhm3")))) (build-system haskell-build-system) (properties '((upstream-name . "gnuplot"))) (inputs (list ghc-temporary ghc-utility-ht ghc-data-accessor-transformers ghc-data-accessor ghc-semigroups)) (home-page "http://www.haskell.org/haskellwiki/Gnuplot") (synopsis "2D and 3D plots using gnuplot") (description "This package provides a Haskell module for creating 2D and 3D plots using gnuplot.") (license license:bsd-3))) (define-public ghc-graphviz (package (name "ghc-graphviz") (version "2999.20.1.0") (source (origin (method url-fetch) (uri (hackage-uri "graphviz" version)) (sha256 (base32 "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s")))) (build-system haskell-build-system) (properties '((upstream-name . "graphviz"))) (inputs (list ghc-colour ghc-dlist ghc-fgl ghc-polyparse ghc-temporary ghc-wl-pprint-text)) (native-inputs (list ghc-hspec graphviz ghc-fgl-arbitrary ghc-quickcheck hspec-discover)) (arguments `(#:cabal-revision ("2" "110yp1h2jrswllnx2ks772g10v9h4vqxc07b33wfaksyim9769bp"))) (home-page "https://hackage.haskell.org/package/graphviz") (synopsis "Bindings to Graphviz for graph visualisation") (description "This library provides bindings for the Dot language used by the @uref{https://graphviz.org/, Graphviz} suite of programs for visualising graphs, as well as functions to call those programs. Main features of the graphviz library include: @enumerate @item Almost complete coverage of all Graphviz attributes and syntax @item Support for specifying clusters @item The ability to use a custom node type @item Functions for running a Graphviz layout tool with all specified output types @item Generate and parse Dot code with two options: strict and liberal @item Functions to convert FGL graphs and other graph-like data structures @item Round-trip support for passing an FGL graph through Graphviz to augment node and edge labels with positional information, etc. @end enumerate\n") (license license:bsd-3))) (define-public ghc-groups (package (name "ghc-groups") (version "0.5.3") (source (origin (method url-fetch) (uri (hackage-uri "groups" version)) (sha256 (base32 "0f5c8dg9b74glfw2sdvdcl9c8igs6knz1bayk4gvvzvypsl547nf")))) (build-system haskell-build-system) (properties '((upstream-name . "groups"))) (home-page "https://hackage.haskell.org/package/groups") (synopsis "Haskell 98 groups") (description "This package provides Haskell 98 groups. A group is a monoid with invertibility.") (license license:bsd-3))) (define-public ghc-gtk2hs-buildtools (package (name "ghc-gtk2hs-buildtools") (version "0.13.10.0") (source (origin (method url-fetch) (uri (hackage-uri "gtk2hs-buildtools" version)) (sha256 (base32 "0ww53n596h39smwf1k0wfk5k0s56n8mkapa8b0q9v9d9bpllgfyw")))) (build-system haskell-build-system) (properties '((upstream-name . "gtk2hs-buildtools"))) (inputs (list ghc-random ghc-hashtables)) (native-inputs (list ghc-alex ghc-happy)) (arguments `(#:cabal-revision ("1" "16ckrhii6pbd64mgrm4s4x7vzd800w8g6x18rvij2cfm784yz6by"))) (home-page "https://projects.haskell.org/gtk2hs/") (synopsis "Tools to build the Gtk2Hs suite of user interface libraries") (description "This package provides a set of helper programs necessary to build the Gtk2Hs suite of libraries. These tools include a modified c2hs binding tool that is used to generate FFI declarations, a tool to build a type hierarchy that mirrors the C type hierarchy of GObjects found in glib, and a generator for signal declarations that are used to call back from C to Haskell. These tools are not needed to actually run Gtk2Hs programs.") (license license:gpl2))) (define-public ghc-hackage-security (package (name "ghc-hackage-security") (version "0.6.2.3") (source (origin (method url-fetch) (uri (hackage-uri "hackage-security" version)) (sha256 (base32 "0rm0avcc1k247qbrajhzi3vz92cgcc4nr3kbhhfmfm8rjxv0bvjj")))) (build-system haskell-build-system) (properties '((upstream-name . "hackage-security"))) (inputs (list ghc-base16-bytestring ghc-base64-bytestring ghc-ed25519 ghc-cryptohash-sha256 ghc-tar ghc-zlib ghc-lukko ghc-cabal-syntax ghc-network-uri ghc-network)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck ghc-aeson ghc-vector ghc-unordered-containers ghc-temporary)) (home-page "https://github.com/haskell/hackage-security") (synopsis "Hackage security library") (description "This Hackage security library provides both server and client utilities for securing @uref{https://hackage.haskell.org/, the Hackage package server}. It is based on @uref{http://theupdateframework.com/, The Update Framework}, a set of recommendations developed by security researchers at various universities in the US as well as developers on the @uref{https://www.torproject.org/, Tor project}.") (license license:bsd-3))) (define-public ghc-haddock (package (name "ghc-haddock") (version "2.26.0") (source (origin (method url-fetch) (uri (hackage-uri "haddock" version)) (sha256 (base32 "0jqp37pbz4zjqc3dm0jkcsdqsh2ql9ygnr06m75bbk330yqchnl3")))) (build-system haskell-build-system) (properties '((upstream-name . "haddock"))) (arguments `(#:tests? #f ; TODO: haddock-test does not build. #:phases (modify-phases %standard-phases (add-before 'check 'add-haddock-to-path (lambda _ (setenv "PATH" (string-append (getcwd) "/dist/build/haddock" ":" (getenv "PATH"))) #t))))) (inputs (list ghc-haddock-api)) ; (native-inputs ; `(("ghc-haddock-test" ,ghc-haddock-test) ; ("ghc-hspec" ,ghc-hspec))) (home-page "https://www.haskell.org/haddock/") (synopsis "Documentation-generation tool for Haskell libraries") (description "Haddock is a documentation-generation tool for Haskell libraries.") (license license:bsd-3))) (define-public ghc-haddock-api (package (name "ghc-haddock-api") (version "2.26.0") (source (origin (method url-fetch) (uri (hackage-uri "haddock-api" version)) (sha256 (base32 "0ris5m61vig5nh5y2ddm98midl3v51vzgfgvsfyhm3nwk5hif6ay")))) (build-system haskell-build-system) (properties '((upstream-name . "haddock-api"))) (inputs (list ghc-paths ghc-haddock-library)) (native-inputs (list ghc-quickcheck ghc-hspec hspec-discover)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "haddock-api.cabal" (("haddock-library \\^>= 1\\.9\\.0") "haddock-library") (("hspec \\^>= 2.8") "hspec"))))))) (home-page "https://www.haskell.org/haddock/") (synopsis "API for documentation-generation tool Haddock") (description "This package provides an API to Haddock, the documentation-generation tool for Haskell libraries.") (license license:bsd-3))) (define-public ghc-haddock-library (package (name "ghc-haddock-library") (version "1.10.0") (source (origin (method url-fetch) (uri (hackage-uri "haddock-library" version)) (sha256 (base32 "15ak06q8yp11xz1hwr0sg2jqi3r78p1n89ik05hicqvxl3awf1pq")))) (build-system haskell-build-system) (properties '((upstream-name . "haddock-library"))) (arguments `(#:cabal-revision ("3" "1fnfcr3gvdjrya0czr3k2sqv4xmmvyv66yni2mckfppra93mcglg") #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "haddock-library.cabal" (("(base-compat|hspec|optparse-applicative|tree-diff)\\s+[^,]+" all dep) dep))))))) (native-inputs (list ghc-base-compat ghc-hspec ghc-optparse-applicative ghc-quickcheck ghc-tree-diff hspec-discover)) (home-page "https://www.haskell.org/haddock/") (synopsis "Library exposing some functionality of Haddock") (description "Haddock is a documentation-generation tool for Haskell libraries. These modules expose some functionality of it without pulling in the GHC dependency. Please note that the API is likely to change so specify upper bounds in your project if you can't release often. For interacting with Haddock itself, see the ‘haddock’ package.") (license license:bsd-3))) ;; This package is needed for testing 'ghc-haddock'. It is no longer ;; published to Hackage, but it is maintained in the Haddock Git ;; repository. (define ghc-haddock-test (package (name "ghc-haddock-test") (version "2.22.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/haskell/haddock") (commit (string-append "haddock-" version "-release")))) (file-name (git-file-name name version)) (sha256 (base32 "1ywxmqqan10gs0ppybdmdgsmvkzkpw7yirj2rw4qylg3x49a9zca")))) (build-system haskell-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'change-directory (lambda _ (chdir "haddock-test")))))) (inputs `(("ghc-syb" ,ghc-syb) ("ghc-xml" ,ghc-xml))) (home-page "https://www.haskell.org/haddock/") (synopsis "Test utilities for Haddock") (description "This package provides test utilities for Haddock.") (license license:bsd-3) (properties '((hidden? #t))))) (define-public ghc-half (package (name "ghc-half") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "half" version)) (sha256 (base32 "1l8m2spqg0ac50qys2jk5b32v6wxklbbk5ypjp3ga6z14hkw7bz2")))) (build-system haskell-build-system) (properties '((upstream-name . "half"))) (native-inputs (list ghc-test-framework ghc-test-framework-quickcheck2 ghc-quickcheck)) (home-page "https://github.com/ekmett/half") (synopsis "Half-precision floating-point computations") (description "This library provides a half-precision floating-point computation library for Haskell.") (license license:bsd-3))) (define-public ghc-happy (package (name "ghc-happy") (version "1.20.1.1") (source (origin (method url-fetch) (uri (hackage-uri "happy" version)) (sha256 (base32 "06w8g3lfk2ynrfhqznhp1mnp8a5b64lj6qviixpndzf5lv2psklb")))) (build-system haskell-build-system) (properties '((upstream-name . "happy"))) (home-page "https://www.haskell.org/happy/") (synopsis "Parser generator for Haskell") (description "Happy is a parser generator for Haskell. Given a grammar specification in BNF, Happy generates Haskell code to parse the grammar. Happy works in a similar way to the yacc tool for C.") (license license:bsd-2))) (define-public ghc-hashable (package (name "ghc-hashable") (version "1.4.2.0") (source (origin (method url-fetch) (uri (hackage-uri "hashable" version)) (sha256 (base32 "1y73606pcrs7zi6f4f07a5rkhc6620n1bx0adpa6j7xqhbm00h0v")))) (build-system haskell-build-system) (properties '((upstream-name . "hashable"))) (inputs (list ghc-data-array-byte)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-random ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (arguments `(#:cabal-revision ("1" "12nmnmm2kyjalkvmz0l1l895ikc938lwppx8iykxnhamblrr4msq"))) (home-page "https://github.com/haskell-unordered-containers/hashable") (synopsis "Class for types that can be converted to a hash value") (description "This package defines a class, @code{Hashable}, for types that can be converted to a hash value. This class exists for the benefit of hashing-based data structures. The package provides instances for basic types and a way to combine hash values.") (license license:bsd-3))) (define-public ghc-hashable-bootstrap (package (inherit ghc-hashable) (name "ghc-hashable-bootstrap") (arguments `(#:tests? #f ,@(package-arguments ghc-hashable))) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-hashtables (package (name "ghc-hashtables") (version "1.3.1") (source (origin (method url-fetch) (uri (hackage-uri "hashtables" version)) (sha256 (base32 "1hsrihk948xfpy14qrhar50b41kp60i1rx8bkadjg1xb4bml0gbg")))) (build-system haskell-build-system) (properties '((upstream-name . "hashtables"))) (inputs (list ghc-hashable ghc-primitive ghc-vector)) (native-inputs (list ghc-mwc-random ghc-quickcheck ghc-hunit ghc-test-framework ghc-test-framework-quickcheck2 ghc-test-framework-hunit)) (home-page "https://github.com/gregorycollins/hashtables") (synopsis "Haskell Mutable hash tables in the ST monad") (description "This package provides a Haskell library including a couple of different implementations of mutable hash tables in the ST monad, as well as a typeclass abstracting their common operations, and a set of wrappers to use the hash tables in the IO monad.") (license license:bsd-3))) (define-public ghc-haskeline (package (name "ghc-haskeline") (version "0.8.2.1") (source (origin (method url-fetch) (uri (hackage-uri "haskeline" version)) (sha256 (base32 "1zs0rlhd7lzp5g4kp7v5ca7cdwan7w4bx3jh5q2ri950svr2k1x0")))) (build-system haskell-build-system) (properties '((upstream-name . "haskeline"))) (native-inputs (list ghc-hunit which)) (arguments (list #:cabal-revision '("1" "1vmsi909jaykpaqfssnv92lzr1n2gy34s07lsh29p75187ps6gny") #:tests? #f ; Cannot run binary haskeline-examples-Test, which is just ; built, even with PATH and LD_LIBRARY_PATH set. #:phases #~(modify-phases %standard-phases (add-before 'configure 'patch-which (lambda* (#:key inputs #:allow-other-keys) (substitute* "tests/Unit.hs" (("\"which\"") (string-append "\"" (search-input-file inputs "/bin/which") "\"")))))))) (home-page "https://github.com/judah/haskeline") (synopsis "Command-line interface for user input, written in Haskell") (description "Haskeline provides a user interface for line input in command-line programs. This library is similar in purpose to readline, but since it is written in Haskell it is (hopefully) more easily used in other Haskell programs. Haskeline runs both on POSIX-compatible systems and on Windows.") (license license:bsd-3))) (define-public ghc-haskell-lexer (package (name "ghc-haskell-lexer") (version "1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "haskell-lexer" version)) (sha256 (base32 "0jgkv1api3w7i9j5z01h7qdx2i9cp93h54hp9hj1bw9hk9bdmvn8")))) (build-system haskell-build-system) (properties '((upstream-name . "haskell-lexer"))) (home-page "https://github.com/yav/haskell-lexer") (synopsis "Fully compliant Haskell 98 lexer") (description "This package provides a fully compliant Haskell 98 lexer.") (license license:expat))) (define-public ghc-haskell-src (package (name "ghc-haskell-src") (version "1.0.4") (source (origin (method url-fetch) (uri (hackage-uri "haskell-src" version)) (sha256 (base32 "1spkhv83hy5v1lxs44l3w53vk8zj7gnx42c40hrkj4fcz6apdiwb")))) (build-system haskell-build-system) (properties '((upstream-name . "haskell-src"))) (inputs (list ghc-happy ghc-syb)) (arguments `(#:cabal-revision ("1" "0dfjzq0sxxcalqxygp2svx4890qx8b4amad0xldwy1f4xrp3lsnb"))) (home-page "https://hackage.haskell.org/package/haskell-src") (synopsis "Support for manipulating Haskell source code") (description "The @code{haskell-src} package provides support for manipulating Haskell source code. The package provides a lexer, parser and pretty-printer, and a definition of a Haskell abstract syntax tree (AST). Common uses of this package are to parse or generate Haskell 98 code.") (license license:bsd-3))) (define-public ghc-haskell-src-exts (package (name "ghc-haskell-src-exts") (version "1.23.1") (source (origin (method url-fetch) (uri (hackage-uri "haskell-src-exts" version)) (sha256 (base32 "01bcrxs9af4yqpclw43aijmsd1g19qhyzb47blz7vzwz2r3k11b7")))) (build-system haskell-build-system) (properties '((upstream-name . "haskell-src-exts"))) (outputs '("out" "doc")) (inputs (list cpphs ghc-happy ghc-pretty-show)) (native-inputs (list ghc-smallcheck ghc-tasty ghc-tasty-smallcheck ghc-tasty-golden)) (home-page "https://github.com/haskell-suite/haskell-src-exts") (synopsis "Library for manipulating Haskell source") (description "Haskell-Source with Extensions (HSE, haskell-src-exts) is an extension of the standard @code{haskell-src} package, and handles most registered syntactic extensions to Haskell. All extensions implemented in GHC are supported. Apart from these standard extensions, it also handles regular patterns as per the HaRP extension as well as HSX-style embedded XML syntax.") (license license:bsd-3))) (define-public ghc-haskell-src-exts-util (package (name "ghc-haskell-src-exts-util") (version "0.2.5") (source (origin (method url-fetch) (uri (hackage-uri "haskell-src-exts-util" version)) (sha256 (base32 "0fvqi72m74p7q5sbpy8m2chm8a1lgy10mfrcxcz8wrh59vngj0n8")))) (build-system haskell-build-system) (properties '((upstream-name . "haskell-src-exts-util"))) (inputs (list ghc-data-default ghc-haskell-src-exts ghc-semigroups ghc-uniplate)) (home-page "https://github.com/pepeiborra/haskell-src-exts-util") (synopsis "Helper functions for working with haskell-src-exts trees") (description "This package provides helper functions for working with @code{haskell-src-exts} trees.") (license license:bsd-3))) (define-public ghc-haskell-src-meta (package (name "ghc-haskell-src-meta") (version "0.8.12") (source (origin (method url-fetch) (uri (hackage-uri "haskell-src-meta" version)) (sha256 (base32 "12dsv49rzhayp8cvkqkilammq4a6d4nrb2bd2w98ivzzrbkijy02")))) (build-system haskell-build-system) (properties '((upstream-name . "haskell-src-meta"))) (inputs (list ghc-haskell-src-exts ghc-syb ghc-th-orphans)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-hunit)) (home-page "https://hackage.haskell.org/package/haskell-src-meta") (synopsis "Parse source to template-haskell abstract syntax") (description "This package provides tools to parse Haskell sources to the template-haskell abstract syntax.") (license license:bsd-3))) (define-public ghc-hasktags (package (name "ghc-hasktags") (version "0.72.0") (source (origin (method url-fetch) (uri (hackage-uri "hasktags" version)) (sha256 (base32 "09p79w16fgpqi6bwq162769xdrnyb7wnmz56k00nz6dj1a0bbbdd")))) (build-system haskell-build-system) (properties '((upstream-name . "hasktags"))) (arguments `(#:cabal-revision ("2" "0f3v6k3bvsczz0z5i09286c0i74wz782vayzyp5lndqvrx3b4g0x"))) (inputs (list ghc-system-filepath ghc-optparse-applicative)) (native-inputs (list ghc-json ghc-utf8-string ghc-microlens-platform ghc-hunit)) (home-page "https://github.com/MarcWeber/hasktags") (synopsis "Make @code{Ctags} and @code{Etags} files for Haskell programs") (description "This package provides a means of generating tag files for Emacs and Vim.") (license license:bsd-3))) (define-public ghc-hex (package (name "ghc-hex") (version "0.2.0") (source (origin (method url-fetch) (uri (hackage-uri "hex" version)) (sha256 (base32 "1mc66758254d93m7vab7q6lhn7qphzxd6wyc3v6yq1diy0gji4va")))) (build-system haskell-build-system) (properties '((upstream-name . "hex"))) (home-page "https://hackage.haskell.org/package/hex") (synopsis "Convert strings into hexadecimal and back") (description "This package converts between bytestrings and their hexadecimal string representation.") (license license:bsd-3))) (define-public ghc-highlighting-kate (package (name "ghc-highlighting-kate") (version "0.6.4") (source (origin (method url-fetch) (uri (hackage-uri "highlighting-kate" version)) (sha256 (base32 "1bqv00gfmrsf0jjr4qf3lhshvfkyzmhbi3pjb6mafbnsyn2k7f6q")))) (build-system haskell-build-system) (properties '((upstream-name . "highlighting-kate"))) (inputs (list ghc-diff ghc-regex-pcre-builtin)) (native-inputs (list ghc-blaze-html ghc-utf8-string)) (home-page "https://github.com/jgm/highlighting-kate") (synopsis "Syntax highlighting library") (description "Highlighting-kate is a syntax highlighting library with support for nearly one hundred languages. The syntax parsers are automatically generated from @uref{https://kate-editor.org/, Kate syntax descriptions}, so any syntax supported by Kate can be added. An (optional) command-line program is provided, along with a utility for generating new parsers from Kate XML syntax descriptions.") (license license:gpl2+))) (define-public ghc-hindent (package (name "ghc-hindent") (version "5.3.4") (source (origin (method url-fetch) (uri (hackage-uri "hindent" version)) (sha256 (base32 "1pc20iza3v0ljzbx6cycm1j1kbmz8h95xwfq47fd6zfmsrx9w6vn")))) (build-system haskell-build-system) (properties '((upstream-name . "hindent"))) (inputs (list ghc-haskell-src-exts ghc-monad-loops ghc-utf8-string ghc-yaml ghc-unix-compat ghc-path ghc-path-io ghc-optparse-applicative)) (native-inputs (list ghc-hspec ghc-diff)) (home-page "https://github.com/mihaimaruseac/hindent") (synopsis "Extensible Haskell pretty printer") (description "This package provides automatic formatting for Haskell files. Both a library and an executable.") (license license:bsd-3))) (define-public ghc-hinotify (package (name "ghc-hinotify") (version "0.4.1") (source (origin (method url-fetch) (uri (hackage-uri "hinotify" version)) (sha256 (base32 "06pqfikfa61i45g92b65br83kplwmizqkm42yp8d0ddgmq0b21qk")))) (build-system haskell-build-system) (properties '((upstream-name . "hinotify"))) (inputs (list ghc-async)) (home-page "https://github.com/kolmodin/hinotify.git") (synopsis "Haskell binding to inotify") (description "This library provides a wrapper to the Linux kernel's inotify feature, allowing applications to subscribe to notifications when a file is accessed or modified.") (license license:bsd-3))) (define-public ghc-hledger-lib (package (name "ghc-hledger-lib") (version "1.27.1") (source (origin (method url-fetch) (uri (hackage-uri "hledger-lib" version)) (sha256 (base32 "0w2jnpyfc6pp3n5fzdjd78hdh9vv9w98xwd2j6dw98rm6hlapwhb")))) (build-system haskell-build-system) (properties '((upstream-name . "hledger-lib"))) (inputs (list ghc-decimal ghc-glob ghc-aeson ghc-aeson-pretty ghc-ansi-terminal ghc-blaze-markup ghc-breakpoint ghc-call-stack ghc-cassava ghc-cassava-megaparsec ghc-cmdargs ghc-data-default ghc-doclayout ghc-extra ghc-file-embed ghc-hashtables ghc-megaparsec ghc-microlens ghc-microlens-th ghc-parser-combinators ghc-pretty-simple ghc-regex-tdfa ghc-safe ghc-tabular ghc-tasty ghc-tasty-hunit ghc-timeit ghc-uglymemo ghc-unordered-containers ghc-utf8-string)) (native-inputs (list ghc-doctest)) (home-page "http://hledger.org") (synopsis "Reusable library providing the core functionality of hledger") (description "A reusable library containing hledger's core functionality. This is used by most hledger* packages so that they support the same common file formats, command line options, reports etc. hledger is a robust, cross-platform set of tools for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format, with command-line, terminal and web interfaces. It is a Haskell rewrite of Ledger, and one of the leading implementations of Plain Text Accounting.") (license license:gpl3))) (define-public ghc-hmatrix (package (name "ghc-hmatrix") (version "0.20.2") (source (origin (method url-fetch) (uri (hackage-uri "hmatrix" version)) (sha256 (base32 "05462prqkbqpxfbzsgsp8waf0sirg2qz6lzsk7r1ll752n7gqkbg")))) (build-system haskell-build-system) (properties '((upstream-name . "hmatrix"))) (arguments `(#:configure-flags '("--flags=openblas") #:extra-directories ("openblas"))) (inputs (list ghc-random ghc-split ghc-storable-complex ghc-semigroups ghc-vector openblas)) (home-page "https://github.com/albertoruiz/hmatrix") (synopsis "Haskell numeric linear algebra library") (description "The HMatrix package provices a Haskell library for dealing with linear systems, matrix decompositions, and other numerical computations based on BLAS and LAPACK.") (license license:bsd-3))) (define-public ghc-hmatrix-gsl (package (name "ghc-hmatrix-gsl") (version "0.19.0.1") (source (origin (method url-fetch) (uri (hackage-uri "hmatrix-gsl" version)) (sha256 (base32 "0v6dla426x4ywaq59jm89ql1i42n39iw6z0j378xwb676v9kfxhm")))) (build-system haskell-build-system) (properties '((upstream-name . "hmatrix-gsl"))) (arguments `(#:extra-directories ("gsl"))) (inputs (list ghc-hmatrix ghc-vector ghc-random gsl)) (native-inputs (list pkg-config)) (home-page "https://github.com/albertoruiz/hmatrix") (synopsis "Haskell GSL binding") (description "This Haskell library provides a purely functional interface to selected numerical computations, internally implemented using GSL.") (license license:gpl3+))) (define-public ghc-hmatrix-gsl-stats (package (name "ghc-hmatrix-gsl-stats") (version "0.4.1.8") (source (origin (method url-fetch) (uri (hackage-uri "hmatrix-gsl-stats" version)) (sha256 (base32 "1cq049sj3q5r06x7i35hqrkf2jc4p4kfi9zv0jmi2vp7w4644i5q")))) (build-system haskell-build-system) (properties '((upstream-name . "hmatrix-gsl-stats"))) (inputs (list ghc-vector ghc-storable-complex ghc-hmatrix gsl)) (native-inputs (list pkg-config)) (home-page "https://code.haskell.org/hmatrix-gsl-stats") (synopsis "GSL Statistics interface for Haskell") (description "This Haskell library provides a purely functional interface for statistics based on hmatrix and GSL.") (license license:bsd-3))) (define-public ghc-hmatrix-special (package (name "ghc-hmatrix-special") (version "0.19.0.0") (source (origin (method url-fetch) (uri (hackage-uri "hmatrix-special" version)) (sha256 (base32 "1mywr61kr852sbff26n9x95kswx9l4ycbv6s68qsbkh02xzqq7qz")))) (build-system haskell-build-system) (properties '((upstream-name . "hmatrix-special"))) (inputs (list ghc-hmatrix ghc-hmatrix-gsl)) (home-page "https://github.com/albertoruiz/hmatrix") (synopsis "Haskell interface to GSL special functions") (description "This library provides an interface to GSL special functions for Haskell.") (license license:gpl3+))) (define-public ghc-hookup (package (name "ghc-hookup") (version "0.7") (source (origin (method url-fetch) (uri (hackage-uri "hookup" version)) (sha256 (base32 "02prkwj4rj8g330z17bpjh7hpwfdvasaxsk74mcvbi03gjpydrib")))) (build-system haskell-build-system) (arguments `(#:cabal-revision ("1" "1x4hxcb81rczpywcda3s9jbh2gs1sfwvd7wzv3cxxkbd4smlrh1r"))) (inputs (list ghc-async ghc-network ghc-attoparsec ghc-hsopenssl ghc-hsopenssl-x509-system)) (properties '((upstream-name . "hookup"))) (home-page "https://github.com/glguy/irc-core") (synopsis "Abstracts network connections over SOCKS5 and TLS") (description "This package provides an abstraction for communicating with line-oriented network services while abstracting over the use of SOCKS5 and TLS (via OpenSSL)") (license license:isc))) (define-public ghc-hostname (package (name "ghc-hostname") (version "1.0") (source (origin (method url-fetch) (uri (hackage-uri "hostname" version)) (sha256 (base32 "0p6gm4328946qxc295zb6vhwhf07l1fma82vd0siylnsnsqxlhwv")))) (build-system haskell-build-system) (properties '((upstream-name . "hostname"))) (home-page "https://hackage.haskell.org/package/hostname") (synopsis "Hostname in Haskell") (description "Network.HostName is a simple package providing a means to determine the hostname.") (license license:bsd-3))) (define-public ghc-hourglass (package (name "ghc-hourglass") (version "0.2.12") (source (origin (method url-fetch) (uri (hackage-uri "hourglass" version)) (sha256 (base32 "0jnay5j13vpz6i1rkaj3j0d9v8jfpri499xn3l7wd01f81f5ncs4")))) (build-system haskell-build-system) (properties '((upstream-name . "hourglass"))) (arguments (list #:tests? #f)) ; Tests incompatible with newer versions. (inputs (list ghc-old-locale)) ;(native-inputs ; (list ghc-tasty ghc-tasty-quickcheck ghc-tasty-hunit)) (home-page "https://github.com/vincenthz/hs-hourglass") (synopsis "Simple time-related library for Haskell") (description "This is a simple time library providing a simple but powerful and performant API. The backbone of the library are the @code{Timeable} and @code{Time} type classes. Each @code{Timeable} instances can be converted to a type that has a @code{Time} instances, and thus are different representations of current time.") (license license:bsd-3))) (define-public ghc-hpack (package (name "ghc-hpack") (version "0.35.2") (source (origin (method url-fetch) (uri (hackage-uri "hpack" version)) (sha256 (base32 "1v4h5dkbfwx8wlmbaq76av22ald9iyk80k8k7pz808nw30yh3dq3")))) (build-system haskell-build-system) (properties '((upstream-name . "hpack"))) (inputs (list ghc-glob ghc-aeson ghc-bifunctors ghc-cryptonite ghc-http-client ghc-http-client-tls ghc-http-types ghc-infer-license ghc-scientific ghc-unordered-containers ghc-vector ghc-yaml)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-hspec ghc-interpolate ghc-mockery ghc-temporary hspec-discover)) (arguments `(#:cabal-revision ("2" "0vwxfg5ixlr18q8gb1x8vz3grp339cbnhm51hfp7rk6vc0bd61k5"))) (home-page "https://github.com/sol/hpack#readme") (synopsis "Tools for an alternative Haskell package format") (description "Hpack is a format for Haskell packages. It is an alternative to the Cabal package format and follows different design principles. Hpack packages are described in a file named @code{package.yaml}. Both @code{cabal2nix} and @code{stack} support @code{package.yaml} natively. For other build tools the @code{hpack} executable can be used to generate a @code{.cabal} file from @code{package.yaml}.") (license license:expat))) (define-public ghc-hspec-megaparsec (package (name "ghc-hspec-megaparsec") (version "2.2.0") (source (origin (method url-fetch) (uri (hackage-uri "hspec-megaparsec" version)) (sha256 (base32 "0hyf06gzzqd6sqd76crwxycwgx804sd39z7i0c2vmv1qgsxv82gn")))) (build-system haskell-build-system) (properties '((upstream-name . "hspec-megaparsec"))) (inputs (list ghc-hspec-expectations ghc-megaparsec)) (native-inputs (list ghc-hspec)) (home-page "https://github.com/mrkkrp/hspec-megaparsec") (synopsis "Utility functions for testing Megaparsec parsers with Hspec") (description "Provides a small set of helper functions for testing Megaparsec parsers with Hspec.") (license license:bsd-3))) (define-public ghc-hs-bibutils (package (name "ghc-hs-bibutils") (version "6.10.0.0") (source (origin (method url-fetch) (uri (hackage-uri "hs-bibutils" version)) (sha256 (base32 "1wnpy1v5rbii2iwlcc9psnww8pkirv9zl21s64cmbi6q7dv15g3n")))) (build-system haskell-build-system) (properties '((upstream-name . "hs-bibutils"))) (inputs (list ghc-syb)) (home-page "https://hackage.haskell.org/package/hs-bibutils") (synopsis "Haskell bindings to bibutils") (description "This package provides Haskell bindings to @code{bibutils}, a library that interconverts between various bibliography formats using a common MODS-format XML intermediate.") (license license:gpl2+))) (define-public ghc-hs-conllu (package (name "ghc-hs-conllu") (version "0.1.5") (source (origin (method url-fetch) (uri (hackage-uri "hs-conllu" version)) (sha256 (base32 "1azh4g5kdng8v729ldgblkmrdqrc501rgm9wwqx6gkqwwzn8w3r4")))) (build-system haskell-build-system) (inputs (list ghc-megaparsec ghc-void)) (home-page "https://github.com/arademaker/hs-conllu") (synopsis "CoNLL-U validating parser and utils") (description "Utilities to parse, print, diff, and analyse data in CoNLL-U, a format used in linguistics to represent the syntactic annotation of sentences. See @url{https://universaldependencies.org/format.html}") (license license:lgpl3))) (define-public ghc-hslogger (package (name "ghc-hslogger") (version "1.3.1.0") (source (origin (method url-fetch) (uri (hackage-uri "hslogger" version)) (sha256 (base32 "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz")))) (build-system haskell-build-system) (properties '((upstream-name . "hslogger"))) (arguments `(#:cabal-revision ("6" "0xiqjl646kxynsccc2q1q91sch7pfx3274yl2745fsqhpb115df1"))) (inputs (list ghc-network ghc-old-locale)) (native-inputs (list ghc-hunit ghc-network-bsd)) (home-page "https://software.complete.org/hslogger") (synopsis "Logging framework for Haskell, similar to Python's logging module") (description "Hslogger lets each log message have a priority and source be associated with it. The programmer can then define global handlers that route or filter messages based on the priority and source. It also has a syslog handler built in.") (license license:bsd-3))) (define-public ghc-hslua (package (name "ghc-hslua") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua" version)) (sha256 (base32 "1q587cjwb29jsf71hhmra6djr2sycbx2hr0rhwlgvb8ax699vkv3")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua"))) (inputs (list ghc-hslua-aeson ghc-hslua-core ghc-hslua-classes ghc-hslua-marshalling ghc-hslua-objectorientation ghc-hslua-packaging)) (native-inputs (list ghc-lua ghc-lua-arbitrary ghc-quickcheck ghc-quickcheck-instances ghc-tasty-hslua ghc-tasty ghc-tasty-hunit)) (home-page "https://hslua.org/") (synopsis "Lua language interpreter embedding in Haskell") (description "The Scripting.Lua module is a wrapper of the Lua language interpreter as described in @url{https://www.lua.org/}.") (license license:expat))) (define-public ghc-hslua-module-system (package (name "ghc-hslua-module-system") (version "1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "hslua-module-system" version)) (sha256 (base32 "08rajlihgsg843sgvlvh7qx43s5yiqqccvnxa336hw06ppfycyf9")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-module-system"))) (inputs (list ghc-hslua-core ghc-hslua-packaging ghc-hslua-marshalling ghc-temporary)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-lua)) (home-page "https://github.com/hslua/hslua") (synopsis "Lua module wrapper around Haskell's System module") (description "This library provides access to system information and functionality to Lua scripts via Haskell's @code{System} module. Intended usage for this package is to preload it by adding the loader function to @code{package.preload}. Note that the Lua @code{package} library must have already been loaded before the loader can be added.") (license license:expat))) (define-public ghc-hslua-module-text (package (name "ghc-hslua-module-text") (version "1.0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-module-text" version)) (sha256 (base32 "025n8vmaq22bl1x60hpg57ih44g6z71jc1qnlxfsi06hram1wcqc")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-module-text"))) (inputs (list ghc-hslua-core ghc-hslua-packaging ghc-hslua-marshalling)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-lua)) (home-page "https://github.com/hslua/hslua") (synopsis "Lua module for text") (description "This package provides a UTF-8 aware subset of Lua's @code{string} module for Haskell. The functions provided by this module are @code{upper}, @code{lower}, @code{len}, @code{reverse}, and @code{sub}.") (license license:expat))) (define-public ghc-hsyaml (package (name "ghc-hsyaml") (version "0.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "HsYAML" version)) (sha256 (base32 "0a7nbvpl4p8kwbbjfn1dj6s3fif5k8zhbckdvyz1k74pj3yb8ns6")))) (build-system haskell-build-system) (properties '((upstream-name . "HsYAML"))) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("1" "0jmbgrjywcblrd8k6zzv2b5givdz83f479y15v5gs0r93z25xpmv"))) (home-page "https://github.com/haskell-hvr/HsYAML") (synopsis "Pure Haskell YAML 1.2 parser") (description "This library provides a @url{http://yaml.org/spec/1.2/spec.html, YAML 1.2} parser implementation for Haskell. Its features include: @itemize @item Pure Haskell implementation with small dependency footprint and emphasis on strict compliance with the YAML 1.2 specification. @item Direct decoding to native Haskell types via (aeson-inspired) typeclass-based API (see @code{Data.YAML}). @item Support for constructing custom YAML node graph representation (including support for cyclic YAML data structures). @item Support for the standard (untyped) @emph{Failsafe}, (strict) @emph{JSON}, and (flexible) @emph{Core} ``schemas'' providing implicit typing rules as defined in the YAML 1.2 specification (including support for user-defined custom schemas). @item Event-based API resembling LibYAML's Event-based API (see @code{Data.YAML.Event}). @item Low-level API access to lexical token-based scanner (see @code{Data.YAML.Token}). @end itemize") (license license:gpl2+))) (define-public ghc-http-api-data (package (name "ghc-http-api-data") (version "0.4.3") (source (origin (method url-fetch) (uri (hackage-uri "http-api-data" version)) (sha256 (base32 "171bw2a44pg50d3y77gw2y9vmx72laky7hnn5hw6r93pnjmlf9yz")))) (build-system haskell-build-system) (properties '((upstream-name . "http-api-data"))) (inputs (list ghc-attoparsec ghc-attoparsec-iso8601 ghc-base-compat ghc-cookie ghc-hashable ghc-http-types ghc-tagged ghc-time-compat ghc-unordered-containers ghc-uuid-types)) (native-inputs (list ghc-hunit ghc-hspec ghc-quickcheck ghc-quickcheck-instances hspec-discover)) (arguments `(#:cabal-revision ("6" "0q4rhz81r5v0z1mn7x9q0ldbfv1a2cp3dpw8s2j96halsq34l4zl"))) (home-page "https://github.com/fizruk/http-api-data") (synopsis "Convert to/from HTTP API data like URL pieces, headers and query parameters") (description "This Haskell package defines typeclasses used for converting Haskell data types to and from HTTP API data.") (license license:bsd-3))) (define-public ghc-ieee754 (package (name "ghc-ieee754") (version "0.8.0") (source (origin (method url-fetch) (uri (hackage-uri "ieee754" version)) (sha256 (base32 "1lcs521g9lzy9d7337vg4w7q7s8500rfqy7rcifcz6pm6yfgyb8f")))) (build-system haskell-build-system) (properties '((upstream-name . "ieee754"))) (home-page "https://github.com/patperry/hs-ieee754") (synopsis "Utilities for dealing with IEEE floating point numbers") (description "Utilities for dealing with IEEE floating point numbers, ported from the Tango math library; approximate and exact equality comparisons for general types.") (license license:bsd-3))) (define-public ghc-ifelse (package (name "ghc-ifelse") (version "0.85") (source (origin (method url-fetch) (uri (hackage-uri "IfElse" version)) (sha256 (base32 "1kfx1bwfjczj93a8yqz1n8snqiq5655qgzwv1lrycry8wb1vzlwa")))) (build-system haskell-build-system) (properties '((upstream-name . "IfElse"))) (home-page "https://hackage.haskell.org/package/IfElse") (synopsis "Monadic control flow with anaphoric variants") (description "This library provides functions for control flow inside of monads with anaphoric variants on @code{if} and @code{when} and a C-like @code{switch} function.") (license license:bsd-3))) (define-public ghc-indents (package (name "ghc-indents") (version "0.5.0.1") (source (origin (method url-fetch) (uri (hackage-uri "indents" version)) (sha256 (base32 "0dpcwiz0dwn5aqdsc50plfaawh86adhf7jx5dsmhn5q5nz32qn51")))) (build-system haskell-build-system) (properties '((upstream-name . "indents"))) ;; This package needs an older version of tasty. (arguments '(#:tests? #f)) (inputs (list ghc-concatenative)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/jaspervdj/indents") (synopsis "Indentation sensitive parser-combinators for parsec") (description "This library provides functions for use in parsing indentation sensitive contexts. It parses blocks of lines all indented to the same level as well as lines continued at an indented level below.") (license license:bsd-3))) (define-public ghc-infer-license (package (name "ghc-infer-license") (version "0.2.0") (source (origin (method url-fetch) (uri (hackage-uri "infer-license" version)) (sha256 (base32 "0wlfm6bf55kfvm74xar9lmjg5v1103rs9m3grw1rq5bmcmhzxrhj")))) (build-system haskell-build-system) (properties '((upstream-name . "infer-license"))) (inputs (list ghc-text-metrics)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/infer-license") (synopsis "Infer software license from a given license file") (description "This library provides tools to infer a software license from a given license file.") (license license:expat))) (define-public ghc-ini (package (name "ghc-ini") (version "0.4.2") (source (origin (method url-fetch) (uri (hackage-uri "ini" version)) (sha256 (base32 "0dp9c48vli8z6058yajnqg9hyf9swglk8ga4wcwl03aal7n8r7gp")))) (build-system haskell-build-system) (properties '((upstream-name . "ini"))) (inputs (list ghc-attoparsec ghc-unordered-containers)) (native-inputs (list ghc-hspec)) (home-page "https://github.com/andreasabel/ini") (synopsis "Haskell library to easily handle configuration files in the INI format") (description "The @code{ghc-ini} Haskell library lets programmers quickly and easily read and write configuration files in the simple INI format.") (license license:bsd-3))) (define-public ghc-inline-c (package (name "ghc-inline-c") (version "0.9.1.8") (source (origin (method url-fetch) (uri (hackage-uri "inline-c" version)) (sha256 (base32 "1qa1rspwyac0f68g7qll17a0wc2a4qrr9fkfarpymfhm7gxzf947")))) (build-system haskell-build-system) (properties '((upstream-name . "inline-c"))) (inputs (list ghc-ansi-wl-pprint ghc-hashable ghc-parsers ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-hspec ghc-quickcheck ghc-raw-strings-qq ghc-regex-posix ghc-split)) (home-page "https://hackage.haskell.org/package/inline-c") (synopsis "Write Haskell source files including C code inline") (description "inline-c lets you seamlessly call C libraries and embed high-performance inline C code in Haskell modules. Haskell and C can be freely intermixed in the same source file, and data passed to and from code in either language with minimal overhead. No FFI required.") (license license:expat))) (define-public ghc-inline-c-cpp (package (name "ghc-inline-c-cpp") (version "0.5.0.0") (source (origin (method url-fetch) (uri (hackage-uri "inline-c-cpp" version)) (sha256 (base32 "0m14nb9brpnh2cgq8gg6182mdcmn45hf734la68dnhq23sn63lpx")))) (build-system haskell-build-system) (properties '((upstream-name . "inline-c-cpp"))) (inputs (list ghc-inline-c ghc-safe-exceptions)) (native-inputs (list ghc-hspec ghc-vector)) (home-page "https://hackage.haskell.org/package/inline-c-cpp") (synopsis "Lets you embed C++ code into Haskell") (description "This package provides utilities to inline C++ code into Haskell using @code{inline-c}.") (license license:expat))) (define-public ghc-integer-logarithms (package (name "ghc-integer-logarithms") (version "1.0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "integer-logarithms" version)) (sha256 (base32 "0zzapclfabc76g8jzsbsqwdllx2zn0gp4raq076ib6v0mfgry2lv")))) (build-system haskell-build-system) (properties '((upstream-name . "integer-logarithms"))) (native-inputs (list ghc-quickcheck ghc-smallcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-tasty-smallcheck)) (arguments `(#:cabal-revision ("3" "0z81yksgx20d0rva41blsjcp3jsp1qy9sy385fpig0l074fzv6ym") #:phases (modify-phases %standard-phases ;; Needs tasty<1.4 (add-before 'configure 'update-constraints (lambda _ (substitute* "integer-logarithms.cabal" (("(tasty)\\s+[^,]+" all dep) dep))))))) (home-page "https://github.com/Bodigrim/integer-logarithms") (synopsis "Integer logarithms") (description "This package provides the following modules: @code{Math.NumberTheory.Logarithms} and @code{Math.NumberTheory.Powers.Integer} from the @code{arithmoi} package, @code{GHC.Integer.Logarithms.Compat} and @code{Math.NumberTheory.Power.Natural}, as well as some additional functions in migrated modules.") (license license:expat))) (define-public ghc-interpolate (package (name "ghc-interpolate") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "interpolate" version)) (sha256 (base32 "03jrkj9c62w0c2awym8mhpsgpd0jffl50cqwfrm7bbdfhd8dsxi7")))) (build-system haskell-build-system) (properties '((upstream-name . "interpolate"))) (inputs (list ghc-haskell-src-meta)) (native-inputs (list ghc-base-compat ghc-hspec ghc-quickcheck ghc-quickcheck-instances hspec-discover)) (home-page "https://github.com/sol/interpolate") (synopsis "String interpolation library") (description "This package provides a string interpolation library for Haskell.") (license license:expat))) (define-public ghc-intervalmap (package (name "ghc-intervalmap") (version "0.6.2.1") (source (origin (method url-fetch) (uri (hackage-uri "IntervalMap" version)) (sha256 (base32 "17v9q1vnm3pzrr5xhv8xvxqh27facwwfladrr10l57fzibp82265")))) (build-system haskell-build-system) (properties '((upstream-name . "IntervalMap"))) (native-inputs (list ghc-quickcheck ghc-quickcheck ghc-quickcheck ghc-quickcheck)) (home-page "https://www.chr-breitkopf.de/comp/IntervalMap") (synopsis "Containers for intervals, with efficient search") (description "This package provides ordered containers of intervals, with efficient search for all keys containing a point or overlapping an interval. See the example code on the home page for a quick introduction.") (license license:bsd-3))) (define-public ghc-intervals (package (name "ghc-intervals") (version "0.9.2") (source (origin (method url-fetch) (uri (hackage-uri "intervals" version)) (sha256 (base32 "1qibvgys8lw61x9na3iy3dcglyj9qyhcbfc00glnagl7cbk1shlv")))) (build-system haskell-build-system) (properties '((upstream-name . "intervals"))) (inputs (list ghc-distributive)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/ekmett/intervals") (synopsis "Interval arithmetic") (description "This library provides @code{Numeric.Interval.Interval}, which represets a closed, convex set of floating point values.") (license license:bsd-3))) (define-public ghc-invariant (package (name "ghc-invariant") (version "0.6.1") (source (origin (method url-fetch) (uri (hackage-uri "invariant" version)) (sha256 (base32 "1w6ln343d72hx8q4i7h1ca7gfqyb79ghc3q2fxp9qkjmwsnr8wpv")))) (build-system haskell-build-system) (properties '((upstream-name . "invariant"))) (inputs (list ghc-bifunctors ghc-comonad ghc-contravariant ghc-profunctors ghc-statevar ghc-tagged ghc-th-abstraction ghc-transformers-compat ghc-unordered-containers)) (native-inputs (list ghc-hspec ghc-quickcheck hspec-discover)) (home-page "https://github.com/nfrisby/invariant-functors") (synopsis "Haskell98 invariant functors") (description "Haskell98 invariant functors (also known as exponential functors). For more information, see Edward Kmett's article @uref{http://comonad.com/reader/2008/rotten-bananas/, Rotten Bananas}.") (license license:bsd-2))) (define-public ghc-io-streams (package (name "ghc-io-streams") (version "1.5.2.2") (source (origin (method url-fetch) (uri (hackage-uri "io-streams" version)) (sha256 (base32 "1zn4iyd18g9jc1qdgixp6hi56nj7czy4jdz2xca59hcn2q2xarfk")))) (build-system haskell-build-system) (properties '((upstream-name . "io-streams"))) (inputs (list ghc-attoparsec ghc-primitive ghc-vector ghc-zlib-bindings ghc-network)) (native-inputs (list ghc-zlib ghc-hunit ghc-quickcheck ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://hackage.haskell.org/package/io-streams") (synopsis "Simple and composable stream I/O") (description "This library contains simple and easy-to-use primitives for I/O using streams.") (license license:bsd-3))) (define-public ghc-io-streams-haproxy (package (name "ghc-io-streams-haproxy") (version "1.0.1.0") (source (origin (method url-fetch) (uri (hackage-uri "io-streams-haproxy" version)) (sha256 (base32 "1dcn5hd4fiwyq7m01r6fi93vfvygca5s6mz87c78m0zyj29clkmp")))) (build-system haskell-build-system) (properties '((upstream-name . "io-streams-haproxy"))) (arguments `(#:cabal-revision ("6" "024aw98q1x3fb1xq07qki3z446w6lk5gyjl13shy0dbrd5aafh92"))) (inputs (list ghc-attoparsec ghc-io-streams ghc-network)) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit)) (home-page "http://snapframework.com/") (synopsis "HAProxy protocol 1.5 support for io-streams") (description "HAProxy protocol version 1.5 support (see @uref{http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt}) for applications using io-streams. The proxy protocol allows information about a networked peer (like remote address and port) to be propagated through a forwarding proxy that is configured to speak this protocol.") (license license:bsd-3))) (define-public ghc-iproute (package (name "ghc-iproute") (version "1.7.12") (source (origin (method url-fetch) (uri (hackage-uri "iproute" version)) (sha256 (base32 "0qvb4d7nw8f6j4s09cnpn6z1rdwcwknwklfrhsgivg7wg4aisxgi")))) (build-system haskell-build-system) (properties '((upstream-name . "iproute"))) (inputs (list ghc-appar ghc-byteorder ghc-network ghc-semigroups)) (native-inputs (list ghc-doctest ghc-hspec ghc-quickcheck ghc-safe hspec-discover)) (home-page "http://www.mew.org/~kazu/proj/iproute/") (synopsis "IP routing table") (description "IP Routing Table is a tree of IP ranges to search one of them on the longest match base. It is a kind of TRIE with one way branching removed. Both IPv4 and IPv6 are supported.") (license license:bsd-3))) (define-public ghc-ipynb (package (name "ghc-ipynb") (version "0.2") (source (origin (method url-fetch) (uri (hackage-uri "ipynb" version)) (sha256 (base32 "1iwia4sxg40m4d290gys72wabqmkqx24ywsaranwzk2wx5s3sx4s")))) (build-system haskell-build-system) (properties '((upstream-name . "ipynb"))) (inputs (list ghc-unordered-containers ghc-base64-bytestring ghc-aeson ghc-semigroups)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-microlens-aeson ghc-microlens)) (arguments `(#:cabal-revision ("1" "0fl9x5amq0g5dg57dcgc0g4ir0r1fdbx06aldsqdwzdc9zs97v6k"))) (home-page "https://hackage.haskell.org/package/ipynb") (synopsis "Data structure for working with Jupyter notebooks") (description "This library defines a data structure for representing Jupyter notebooks, along with @code{ToJSON} and @code{FromJSON} instances for conversion to and from JSON .ipynb files.") (license license:bsd-3))) (define-public ghc-irc-core (package (name "ghc-irc-core") (version "2.11") (source (origin (method url-fetch) (uri (hackage-uri "irc-core" version)) (sha256 (base32 "13jkfb30kynqd55c2slxjg98lr076rn1ymsxniwp0bssjzizgnfc")))) (build-system haskell-build-system) (native-inputs (list ghc-hunit)) (inputs (list ghc-base64-bytestring ghc-attoparsec ghc-hashable ghc-primitive ghc-vector)) (properties '((upstream-name . "irc-core"))) (home-page "https://github.com/glguy/irc-core") (synopsis "IRC core library for glirc") (description "This is the IRC core library for glirc. The client is available in its own glirc package.") (license license:isc))) (define-public ghc-iwlib (package (name "ghc-iwlib") (version "0.1.0") (source (origin (method url-fetch) (uri (hackage-uri "iwlib" version)) (sha256 (base32 "0khmfwql4vwj55idsxmhjhrbqzfir3g9wm5lmpvnf77mm95cfpdz")))) (build-system haskell-build-system) (properties '((upstream-name . "iwlib"))) (arguments `(#:extra-directories ("wireless-tools"))) (inputs (list wireless-tools)) (home-page "https://github.com/jaor/iwlib") (synopsis "Haskell binding to the iw wireless networking library") (description "IWlib is a thin Haskell binding to the iw C library. It provides information about the current wireless network connections, and adapters on supported systems.") (license license:bsd-3))) (define-public ghc-json (package (name "ghc-json") (version "0.10") (source (origin (method url-fetch) (uri (hackage-uri "json" version)) (sha256 (base32 "1fjnd2r4gl2hfqx158db3cn3rsyin4ch7rf9scb2hcy90cy6l10c")))) (build-system haskell-build-system) (properties '((upstream-name . "json"))) (arguments `(#:cabal-revision ("1" "16fp0y95gaibjravzj1hxdkng1cr8zqjqzd14m48kf4jrq3npz6r"))) (inputs (list ghc-syb)) (home-page "https://hackage.haskell.org/package/json") (synopsis "Serializes Haskell data to and from JSON") (description "This package provides a parser and pretty printer for converting between Haskell values and JSON. @acronym{JavaScript Object Notation, JSON} is a lightweight data-interchange format.") (license license:bsd-3))) (define-public ghc-juicypixels (package (name "ghc-juicypixels") (version "3.3.7") (source (origin (method url-fetch) (uri (hackage-uri "JuicyPixels" version)) (sha256 (base32 "1rrvapzcj0q8sigxq1zq2k4h88i1r2hyca4p7pkqa1b4pk6vhdny")))) (build-system haskell-build-system) (properties '((upstream-name . "JuicyPixels"))) (inputs (list ghc-zlib ghc-vector ghc-primitive)) (home-page "https://github.com/Twinside/Juicy.Pixels") (synopsis "Picture loading and serialization library") (description "This library can load and store images in PNG, Bitmap, JPEG, Radiance, TIFF and GIF formats.") (license license:bsd-3))) (define-public ghc-kan-extensions (package (name "ghc-kan-extensions") (version "5.2.5") (source (origin (method url-fetch) (uri (hackage-uri "kan-extensions" version)) (sha256 (base32 "08mddsk9v75mahp1jqn28vglygmdil1g37drcj3ivbqc0k6dq55r")))) (build-system haskell-build-system) (properties '((upstream-name . "kan-extensions"))) (inputs (list ghc-adjunctions ghc-comonad ghc-contravariant ghc-distributive ghc-invariant ghc-free ghc-profunctors ghc-semigroupoids ghc-tagged ghc-transformers-compat)) (home-page "https://github.com/ekmett/kan-extensions/") (synopsis "Kan extensions library") (description "This library provides Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads for Haskell.") (license license:bsd-3))) (define-public ghc-language-c (package (name "ghc-language-c") (version "0.9.2") (source (origin (method url-fetch) (uri (hackage-uri "language-c" version)) (sha256 (base32 "1cvcxwnbg71xijadr4aqzwxaw29fxj5z2gpnz3lp5pqnv8phscdj")))) (build-system haskell-build-system) (properties '((upstream-name . "language-c"))) (arguments `(#:cabal-revision ("1" "03qfp9mf4yrdw3m6sab3np7wjaigg5p3xiiirxin8ihsnnx4rv5l"))) (native-inputs (list ghc-happy ghc-alex)) (home-page "https://visq.github.io/language-c/") (synopsis "Analysis and generation of C code") (description "Language C is a Haskell library for the analysis and generation of C code. It features a complete, well-tested parser and pretty printer for all of C99 and a large set of GNU extensions.") (license license:bsd-3))) (define-public ghc-language-glsl (package (name "ghc-language-glsl") (version "0.3.0") (source (origin (method url-fetch) (uri (hackage-uri "language-glsl" version)) (sha256 (base32 "0hdg67ainlqpjjghg3qin6fg4p783m0zmjqh4rd5gyizwiplxkp1")))) (build-system haskell-build-system) (properties '((upstream-name . "language-glsl"))) (inputs (list ghc-prettyclass)) (arguments `(#:tests? #f #:cabal-revision ("1" "10ac9pk4jy75k03j1ns4b5136l4kw8krr2d2nw2fdmpm5jzyghc5"))) (home-page "https://hackage.haskell.org/package/language-glsl") (synopsis "GLSL abstract syntax tree, parser, and pretty-printer") (description "This package is a Haskell library for the representation, parsing, and pretty-printing of GLSL 1.50 code.") (license license:bsd-3))) (define-public ghc-language-haskell-extract (package (name "ghc-language-haskell-extract") (version "0.2.4") (source (origin (method url-fetch) (uri (hackage-uri "language-haskell-extract" version)) (patches (search-patches "ghc-language-haskell-extract-ghc-8.10.patch")) (sha256 (base32 "1nxcs7g8a1sp91bzpy4cj6s31k5pvc3gvig04cbrggv5cvjidnhl")))) (build-system haskell-build-system) (properties '((upstream-name . "language-haskell-extract"))) (arguments `(#:cabal-revision ("1" "1chx4g8ngb1hpyh3r9rbl8rkjkm67klms4wmw3p1g2llg47vvqip") #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "language-haskell-extract.cabal" (("(template-haskell)\\s+[^,]+" all dep) dep))))))) (inputs (list ghc-regex-posix ghc-template-haskell)) (home-page "https://github.com/finnsson/template-helper") (synopsis "Haskell module to automatically extract functions from the local code") (description "This package contains helper functions on top of Template Haskell. For example, @code{functionExtractor} extracts all functions after a regexp-pattern, which can be useful if you wish to extract all functions beginning with @code{test} (for a test framework) or all functions beginning with @code{wc} (for a web service).") (license license:bsd-3))) (define-public ghc-language-python (package (name "ghc-language-python") (version "0.5.8") (source (origin (method url-fetch) (uri (hackage-uri "language-python" version)) (sha256 (base32 "1mf3czvnh9582klv0c9g7pcn1wx4qjwpvhv8la6afaifv6y5lki2")))) (build-system haskell-build-system) (arguments `(#:cabal-revision ("2" "024fn653gmxw4ndmqvg1d3lwmxbvrlllc9iw2zw0c3nkcgcv39sg"))) (native-inputs (list ghc-alex ghc-happy)) (inputs (list ghc-monads-tf ghc-utf8-string)) (home-page "http://github.com/bjpop/language-python") (synopsis "Parse and pretty print Python code in Haskell") (description "@code{language-python} is a Haskell library for lexical analysis, parsing and pretty printing Python code. It supports versions 2.x and 3.x of Python.") (license license:bsd-3) (properties '((upstream-name . "language-python"))))) (define-public ghc-lens (package (name "ghc-lens") (version "5.1.1") (source (origin (method url-fetch) (uri (hackage-uri "lens" version)) (sha256 (base32 "08mkm2mjvhmwg9hc4kd4cd6dgmcszs1p2mzp1nmri7lqbpy9jknc")))) (build-system haskell-build-system) (properties '((upstream-name . "lens"))) (inputs (list ghc-assoc ghc-base-orphans ghc-bifunctors ghc-call-stack ghc-comonad ghc-contravariant ghc-distributive ghc-free ghc-hashable ghc-indexed-traversable ghc-indexed-traversable-instances ghc-kan-extensions ghc-parallel ghc-profunctors ghc-reflection ghc-semigroupoids ghc-strict ghc-tagged ghc-th-abstraction ghc-these ghc-transformers-compat ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2 ghc-hunit ghc-test-framework ghc-test-framework-hunit ghc-simple-reflect)) (arguments `(#:cabal-revision ("1" "19z3k7ikpfa96b86yabxghfqpnq9d0ayy4gdlvci3ycvws0s8cy6"))) (home-page "https://github.com/ekmett/lens/") (synopsis "Lenses, Folds and Traversals") (description "This library provides @code{Control.Lens}. The combinators in @code{Control.Lens} provide a highly generic toolbox for composing families of getters, folds, isomorphisms, traversals, setters and lenses and their indexed variants.") (license license:bsd-2))) (define-public ghc-lens-family-core (package (name "ghc-lens-family-core") (version "2.1.2") (source (origin (method url-fetch) (uri (hackage-uri "lens-family-core" version)) (sha256 (base32 "1dkkd33wh2ykgis92dpshjxz6d2d41dvjj4zz6b7mdy8frr9jnhv")))) (build-system haskell-build-system) (properties '((upstream-name . "lens-family-core"))) (home-page "https://hackage.haskell.org/package/lens-family-core") (synopsis "Haskell 98 Lens Families") (description "This package provides first class functional references. In addition to the usual operations of getting, setting and composition, plus integration with the state monad, lens families provide some unique features: @itemize @item Polymorphic updating @item Traversals @item Cast projection functions to read-only lenses @item Cast @code{toList} functions to read-only traversals @item Cast semantic editor combinators to modify-only traversals @end itemize For optimal first-class support use the lens-family package with rank 2/rank N polymorphism. @code{Lens.Family.Clone} allows for first-class support of lenses and traversals for those who require Haskell 98.") (license license:bsd-3))) (define-public ghc-generic-lens-core (package (name "ghc-generic-lens-core") (version "2.2.1.0") (source (origin (method url-fetch) (uri (hackage-uri "generic-lens-core" version)) (sha256 (base32 "08i4c9yb6z84iknrnl9f3f343121j7ilp0a679v81nsjm9xz3rlf")))) (build-system haskell-build-system) (properties '((upstream-name . "generic-lens-core"))) (inputs (list ghc-indexed-profunctors)) (arguments `(#:cabal-revision ("1" "1dbjhd6k7ypqa9f4h9v2xndgb4mjhfli3n1vjm8r8ga0kfndbqfn"))) (home-page "https://github.com/kcsongor/generic-lens") (synopsis "Generically derive traversals, lenses and prisms") (description "This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible. This package is the shared internal logic of the @code{generic-lens} and @code{generic-optics} libraries.") (license license:bsd-3))) (define-public ghc-generic-lens (package (name "ghc-generic-lens") (version "2.2.2.0") (source (origin (method url-fetch) (uri (hackage-uri "generic-lens" version)) (sha256 (base32 "0s4b51s11ssmndmx9m9zbwgv9rb27ajwihsrk10hn582rp4ck3c6")))) (build-system haskell-build-system) (properties '((upstream-name . "generic-lens"))) (inputs (list ghc-generic-lens-core ghc-profunctors)) (native-inputs (list ghc-lens ghc-inspection-testing ghc-hunit ghc-doctest)) (home-page "https://github.com/kcsongor/generic-lens") (synopsis "Generically derive traversals, lenses and prisms") (description "This library uses @code{GHC.Generics} to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible. The library exposes a van Laarhoven interface. For an alternative interface, supporting an opaque optic type, see @code{generic-optics}.") (license license:bsd-3))) (define-public ghc-these-lens (package (name "ghc-these-lens") (version "1.0.1.2") (source (origin (method url-fetch) (uri (hackage-uri "these-lens" version)) (sha256 (base32 "1v3kj7j4bkywbmdbblwqs5gsj5s23d59sb3s27jf3bwdzf9d21p6")))) (build-system haskell-build-system) (properties '((upstream-name . "these-lens"))) (inputs (list ghc-these ghc-lens)) (arguments `(#:cabal-revision ("2" "1mncy6mcwqxy4fwibrsfc3jcx183wfjfvfvbj030y86pfihvbwg3"))) (home-page "https://github.com/haskellari/these") (synopsis "Lenses for These") (description "This package provides Prism and Traversals for @code{These}.") (license license:bsd-3))) (define-public ghc-libffi (package (name "ghc-libffi") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "libffi" version)) (sha256 (base32 "1w9ssmjx521f4lmaynmh1zargl2zmfvvpq2bldsvnwldfdgikbkn")))) (build-system haskell-build-system) (properties '((upstream-name . "libffi"))) (home-page "http://haskell.org/haskellwiki/Library/libffi") (synopsis "Haskell binding to libffi") (description "A binding to libffi, allowing C functions of types only known at runtime to be called from Haskell.") (license license:bsd-3))) (define-public ghc-libmpd (package (name "ghc-libmpd") (version "0.10.0.0") (source (origin (method url-fetch) (uri (hackage-uri "libmpd" version)) (sha256 (base32 "088vlir0n3wps2p5ydgyx51p41nfjcm2v02sszpyjj3c8z7f4qkh")))) (build-system haskell-build-system) (properties '((upstream-name . "libmpd"))) (inputs (list ghc-attoparsec ghc-data-default-class ghc-network ghc-safe-exceptions ghc-utf8-string)) (native-inputs (list ghc-quickcheck ghc-hspec hspec-discover)) (home-page "https://github.com/vimus/libmpd-haskell") (synopsis "Haskell client library for the Music Player Daemon") (description "This package provides a pure Haskell client library for the Music Player Daemon.") (license license:expat))) (define-public ghc-lib-parser (package (name "ghc-lib-parser") (version "9.2.7.20230228") (source (origin (method url-fetch) (uri (hackage-uri "ghc-lib-parser" version)) (sha256 (base32 "1bny37dny7jv37mpynp3zwdlp8993xikc1c4p6h5f2zwjb7nx2ny")))) (build-system haskell-build-system) (properties '((upstream-name . "ghc-lib-parser"))) (inputs (list ghc-alex)) (native-inputs (list ghc-happy)) (home-page "https://github.com/digital-asset/ghc-lib") (synopsis "The GHC API, decoupled from GHC versions") (description "This library implements the GHC API. It is like the compiler-provided @code{ghc} package, but it can be loaded on many compiler versions.") (license license:bsd-3))) (define-public ghc-libxml (package (name "ghc-libxml") (version "0.1.1") (source (origin (method url-fetch) (uri (hackage-uri "libxml" version)) (sha256 (base32 "01zvk86kg726lf2vnlr7dxiz7g3xwi5a4ak9gcfbwyhynkzjmsfi")))) (build-system haskell-build-system) (properties '((upstream-name . "libxml"))) (inputs (list libxml2)) (arguments `(#:configure-flags `(,(string-append "--extra-include-dirs=" (assoc-ref %build-inputs "libxml2") "/include/libxml2")))) (home-page "https://hackage.haskell.org/package/libxml") (synopsis "Haskell bindings to libxml2") (description "This library provides minimal Haskell binding to libxml2.") (license license:bsd-3))) (define-public ghc-libyaml (package (name "ghc-libyaml") (version "0.1.2") (source (origin (method url-fetch) (uri (hackage-uri "libyaml" version)) (sha256 (base32 "1dcpbsjg6n305l07isxmavgp01lbv1qggy16acjyxjlz35pxchlg")) (modules '((guix build utils))) (snippet ;; Delete bundled LibYAML. '(begin (delete-file-recursively "libyaml_src") #t)))) (build-system haskell-build-system) (properties '((upstream-name . "libyaml"))) (arguments `(#:configure-flags `("--flags=system-libyaml") #:extra-directories ("libyaml+static"))) (inputs (list ghc-conduit ghc-resourcet libyaml+static)) (home-page "https://github.com/snoyberg/yaml#readme") (synopsis "Low-level, streaming YAML interface") (description "This package provides a Haskell wrapper over the LibYAML C library.") (license license:bsd-3))) (define-public ghc-lifted-async (package (name "ghc-lifted-async") (version "0.10.2.4") (source (origin (method url-fetch) (uri (hackage-uri "lifted-async" version)) (sha256 (base32 "0pdy7q508n7gvy338xsv9a8fg7saksi8qb9av6j3a37l2pp4vvcv")))) (build-system haskell-build-system) (properties '((upstream-name . "lifted-async"))) (inputs (list ghc-async ghc-lifted-base ghc-transformers-base ghc-monad-control ghc-constraints)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-expected-failure ghc-tasty-hunit ghc-tasty-th ghc-tasty-hunit ghc-tasty-th)) (arguments `(#:cabal-revision ("2" "0bg2qmg6lav4zizki1cvqpvd3wqjhfjff7zz17wg5hzlm5318gky"))) (home-page "https://github.com/maoe/lifted-async") (synopsis "Run lifted IO operations asynchronously and wait for their results") (description "This package provides IO operations from @code{async} package lifted to any instance of @code{MonadBase} or @code{MonadBaseControl}.") (license license:bsd-3))) (define-public ghc-lifted-base (package (name "ghc-lifted-base") (version "0.2.3.12") (source (origin (method url-fetch) (uri (hackage-uri "lifted-base" version)) (sha256 (base32 "1i8p8d3rkdh21bhgjjh32vd7qqjr7jq7p59qds0aw2kmargsjd61")))) (build-system haskell-build-system) (properties '((upstream-name . "lifted-base"))) (arguments `(#:tests? #f)) ; FIXME: Missing testing libraries. (inputs (list ghc-transformers-base ghc-monad-control ghc-transformers-compat ghc-hunit)) (home-page "https://github.com/basvandijk/lifted-base") (synopsis "Lifted IO operations from the base library") (description "Lifted-base exports IO operations from the @code{base} library lifted to any instance of @code{MonadBase} or @code{MonadBaseControl}. Note that not all modules from @code{base} are converted yet. The package includes a copy of the @code{monad-peel} test suite written by Anders Kaseorg.") (license license:bsd-3))) (define-public ghc-linear (package (name "ghc-linear") (version "1.21.10") (source (origin (method url-fetch) (uri (hackage-uri "linear" version)) (sha256 (base32 "1d3s1p4imkifn7dccqci2qiwcg99x22kf250hzh4fh4xghi361xr")))) (build-system haskell-build-system) (properties '((upstream-name . "linear"))) (inputs (list ghc-adjunctions ghc-base-orphans ghc-bytes ghc-cereal ghc-distributive ghc-hashable ghc-indexed-traversable ghc-lens ghc-random ghc-reflection ghc-semigroups ghc-semigroupoids ghc-tagged ghc-transformers-compat ghc-unordered-containers ghc-vector ghc-void)) (native-inputs (list ghc-simple-reflect ghc-test-framework ghc-test-framework-hunit ghc-hunit)) (home-page "https://github.com/ekmett/linear/") (synopsis "Linear algebra library for Haskell") (description "This package provides types and combinators for linear algebra on free vector spaces.") (license license:bsd-3))) (define-public ghc-listlike (package (name "ghc-listlike") (version "4.7.8") (source (origin (method url-fetch) (uri (hackage-uri "ListLike" version)) (sha256 (base32 "1l9pfjy7gh7xqnzflixp37d6lsppmlffzmmq75xn9r8ij3r2jycs")))) (build-system haskell-build-system) (properties '((upstream-name . "ListLike"))) (inputs (list ghc-vector ghc-dlist ghc-fmlist ghc-utf8-string)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-random)) (home-page "https://github.com/ddssff/listlike") (synopsis "Generic support for list-like structures") (description "The ListLike module provides a common interface to the various Haskell types that are list-like. Predefined interfaces include standard Haskell lists, Arrays, ByteStrings, and lazy ByteStrings. Custom types can easily be made ListLike instances as well. ListLike also provides for String-like types, such as String and ByteString, for types that support input and output, and for types that can handle infinite lists.") (license license:bsd-3))) (define-public ghc-logging-facade (package (name "ghc-logging-facade") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "logging-facade" version)) (sha256 (base32 "0rn12j77gn3p84khrmbn5kq6fyj44i3z1hrdm29apikp7csv65ib")))) (build-system haskell-build-system) (properties '((upstream-name . "logging-facade"))) ;(arguments (list #:tests? #f)) (inputs (list ghc-call-stack)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/sol/logging-facade#readme") (synopsis "Simple logging abstraction that allows multiple back-ends") (description "This package provides a simple logging abstraction that allows multiple back-ends.") (license license:expat))) (define-public ghc-logging-facade-bootstrap (package (inherit ghc-logging-facade) (name "ghc-logging-facade-bootstrap") (arguments `(#:tests? #f)) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-logict (package (name "ghc-logict") (version "0.8.0.0") (source (origin (method url-fetch) (uri (hackage-uri "logict" version)) (sha256 (base32 "0mpv50ifb3x9vfmgi1p9piwcgz8d19x0wdj789wxyhxwjpr6v4py")))) (build-system haskell-build-system) (properties '((upstream-name . "logict"))) (inputs (list ghc-fail)) (native-inputs (list ghc-async ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/Bodigrim/logict#readme") (synopsis "Backtracking logic-programming monad") (description "This library provides a continuation-based, backtracking, logic programming monad. An adaptation of the two-continuation implementation found in the paper \"Backtracking, Interleaving, and Terminating Monad Transformers\" available @uref{http://okmij.org/ftp/papers/LogicT.pdf, online}.") (license license:bsd-3))) (define-public ghc-lucid (package (name "ghc-lucid") (version "2.11.20230408") (source (origin (method url-fetch) (uri (hackage-uri "lucid" version)) (sha256 (base32 "07a41xkql96hkp9jawlaxn0lflvjf8a2djb45k3b3ig9zs82j48g")))) (build-system haskell-build-system) (properties '((upstream-name . "lucid"))) (inputs (list ghc-blaze-builder ghc-hashable ghc-mmorph)) (native-inputs (list ghc-hunit ghc-hspec ghc-bifunctors)) (arguments `(#:cabal-revision ("1" "1gb3b79xf4jp0xvk2anlvpvac6gqcfpffylkwki19lrx6jbd8fqs"))) (home-page "https://github.com/chrisdone/lucid") (synopsis "Haskell DSL for rendering HTML") (description "Clear to write, read and edit Haskell DSL for HTML. @itemize @bullet @item Names are consistent, and do not conflict with base or are keywords (all have suffix @code{-}). @item Same combinator can be used for attributes and elements (e.g. @code{style_}). @end itemize") (license license:bsd-3))) (define-public ghc-lzma (package (name "ghc-lzma") (version "0.0.1.0") (source (origin (method url-fetch) (uri (hackage-uri "lzma" version)) (sha256 (base32 "0knz0d6456zf6wbqifzcsw2xvdgaqnig2zn96kav7aqn5i4nfbvj")))) (build-system haskell-build-system) (properties '((upstream-name . "lzma"))) (native-inputs (list ghc-hunit ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck pkg-config)) (arguments `(#:cabal-revision ("1" "0k1f4qy46m4z9phbifasi4x6sjcld2zr45hsawbyb0az9y8p2vnd"))) (home-page "https://github.com/hvr/lzma") (synopsis "LZMA/XZ compression and decompression") (description "This package provides a pure interface for compressing and decompressing LZMA streams of data represented as lazy @code{ByteString}s. A monadic incremental interface is provided as well.") (license license:bsd-3))) (define-public ghc-lzma-conduit (package (name "ghc-lzma-conduit") (version "1.2.3") (source (origin (method url-fetch) (uri (hackage-uri "lzma-conduit" version)) (sha256 (base32 "1pmvmchrg429b2yk485x0066lxcr37cbyczlyp3ala2iaq8hm61z")))) (build-system haskell-build-system) (properties '((upstream-name . "lzma-conduit"))) (inputs (list ghc-conduit ghc-lzma ghc-resourcet)) (native-inputs (list ghc-base-compat ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2 ghc-hunit ghc-quickcheck)) (home-page "https://github.com/alphaHeavy/lzma-conduit") (synopsis "Conduit interface for lzma/xz compression") (description "This package provides a @code{Conduit} interface for the LZMA compression algorithm used in the @code{.xz} file format.") (license license:bsd-3))) (define-public ghc-magic (package (name "ghc-magic") (version "1.1") (source (origin (method url-fetch) (uri (hackage-uri "magic" version)) (sha256 (base32 "10p0gjjjwr1dda7hahwrwn5njbfhl67arq3v3nf1jr3vymlkn75j")))) (build-system haskell-build-system) (properties '((upstream-name . "magic"))) (home-page "https://hackage.haskell.org/package/magic") (synopsis "Interface to C file/magic library") (description "This package provides a full-featured binding to the C libmagic library. With it, you can determine the type of a file by examining its contents rather than its name.") (license license:bsd-3))) (define-public ghc-managed (package (name "ghc-managed") (version "1.0.10") (source (origin (method url-fetch) (uri (hackage-uri "managed" version)) (sha256 (base32 "0ngpk6zkpnc9hl9a46pgkc8ii4d7y06xci52birc5vy1a2fwl8is")))) (build-system haskell-build-system) (properties '((upstream-name . "managed"))) (home-page "https://hackage.haskell.org/package/managed") (synopsis "Monad for managed values") (description "In Haskell you very often acquire values using the with... idiom using functions of type (a -> IO r) -> IO r. This idiom forms a Monad, which is a special case of the ContT monad (from transformers) or the Codensity monad (from kan-extensions). The main purpose behind this package is to provide a restricted form of these monads specialized to this unusually common case. The reason this package defines a specialized version of these types is to: @itemize @item be more beginner-friendly, @item simplify inferred types and error messages, and: @item provide some additional type class instances that would otherwise be orphan instances @end itemize") (license license:bsd-3))) (define-public ghc-markdown-unlit (package (name "ghc-markdown-unlit") (version "0.5.1") (source (origin (method url-fetch) (uri (hackage-uri "markdown-unlit" version)) (sha256 (base32 "0njzn56m8z6lm70xyixbylbnpjz1gk7x8vdsdvi3qld9m66gc3n7")))) (build-system haskell-build-system) (properties '((upstream-name . "markdown-unlit"))) (inputs (list ghc-base-compat ghc-hspec ghc-quickcheck ghc-silently ghc-stringbuilder ghc-temporary hspec-discover)) (home-page "https://github.com/sol/markdown-unlit#readme") (synopsis "Literate Haskell support for Markdown") (description "This package allows you to have a README.md that at the same time is a literate Haskell program.") (license license:expat))) (define-public ghc-math-functions (package (name "ghc-math-functions") (version "0.3.4.2") (source (origin (method url-fetch) (uri (hackage-uri "math-functions" version)) (sha256 (base32 "18y1hlc8p6yyxa14zdbm84aaq58kksbrlfp3rj2bd4ilsb00mrf1")))) (build-system haskell-build-system) (properties '((upstream-name . "math-functions"))) (arguments `(#:tests? #f)) ; FIXME: 1 test fails. (inputs (list ghc-data-default-class ghc-vector ghc-vector-th-unbox)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-erf ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://github.com/bos/math-functions") (synopsis "Special functions and Chebyshev polynomials for Haskell") (description "This Haskell library provides implementations of special mathematical functions and Chebyshev polynomials. These functions are often useful in statistical and numerical computing.") (license license:bsd-3))) (define-public ghc-megaparsec (package (name "ghc-megaparsec") (version "9.2.2") (source (origin (method url-fetch) (uri (hackage-uri "megaparsec" version)) (sha256 (base32 "0d52dbcz9nlqkkfqfs9kck5kmvkfzf3628z4ik4gr7hbbkjh72x4")))) (build-system haskell-build-system) (properties '((upstream-name . "megaparsec"))) (inputs (list ghc-case-insensitive ghc-parser-combinators ghc-scientific)) (home-page "https://github.com/mrkkrp/megaparsec") (synopsis "Monadic parser combinators") (description "This is an industrial-strength monadic parser combinator library. Megaparsec is a feature-rich package that strikes a nice balance between speed, flexibility, and quality of parse errors.") (license license:bsd-2))) (define-public ghc-memory (package (name "ghc-memory") (version "0.17.0") (source (origin (method url-fetch) (uri (hackage-uri "memory" version)) (sha256 (base32 "0yl3ivvn7i9wbx910b7bzj9c3g0jjjk91j05wj74qb5zx2yyf9rk")) (patches (search-patches "ghc-memory-fix-32bit.patch")))) (build-system haskell-build-system) (properties '((upstream-name . "memory"))) (inputs (list ghc-basement)) (native-inputs (list ghc-foundation)) (arguments `(#:cabal-revision ("1" "1gybf726kz17jm1am0rphi0srmyqyza45y6jdqbq0b8sspm8kggb"))) (home-page "https://github.com/vincenthz/hs-memory") (synopsis "Memory abstractions for Haskell") (description "This package provides memory abstractions, such as chunk of memory, polymorphic byte array management and manipulation functions. It contains a polymorphic byte array abstraction and functions similar to strict ByteString, different type of byte array abstraction, raw memory IO operations (memory set, memory copy, ..) and more") (license license:bsd-3))) (define-public ghc-memotrie (package (name "ghc-memotrie") (version "0.6.10") (source (origin (method url-fetch) (uri (hackage-uri "MemoTrie" version)) (sha256 (base32 "0lxsarhyhhkp58wpbp7b08scmjxq7s46jfl9vhp2yfq973hz0kaq")))) (build-system haskell-build-system) (properties '((upstream-name . "MemoTrie"))) (inputs (list ghc-newtype-generics)) (home-page "https://github.com/conal/MemoTrie") (synopsis "Trie-based memo functions") (description "This package provides a functional library for creating efficient memo functions using tries.") (license license:bsd-3))) (define-public ghc-microlens (package (name "ghc-microlens") (version "0.4.12.0") (source (origin (method url-fetch) (uri (hackage-uri "microlens" version)) (sha256 (base32 "10q7gl9yavcln58sxdxzih7ff0ixxq5hpd87icvxw97yqf1p6hmm")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens"))) (home-page "https://github.com/monadfix/microlens") (synopsis "Provides a tiny lens Haskell library with no dependencies") (description "This Haskell package provides a lens library, just like @code{ghc-lens}, but smaller. It provides essential lenses and traversals (like @code{_1} and @code{_Just}), as well as ones which are simply nice to have (like @code{each}, @code{at}, and @code{ix}), and some combinators (like @code{failing} and @code{singular}), but everything else is stripped. As the result, this package has no dependencies.") (license license:bsd-3))) (define-public ghc-microlens-aeson (package (name "ghc-microlens-aeson") (version "2.5.0") (source (origin (method url-fetch) (uri (hackage-uri "microlens-aeson" version)) (sha256 (base32 "0h5q0b2b4y28llhq28mb28kpdv2iifz0qkbbhmrwrz2bs6arr3d2")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens-aeson"))) (inputs (list ghc-aeson ghc-attoparsec ghc-hashable ghc-microlens ghc-scientific ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/fosskers/microlens-aeson") (synopsis "Law-abiding lenses for Aeson, using microlens") (description "This library provides law-abiding lenses for Aeson, using microlens.") (license license:expat))) (define-public ghc-microlens-ghc (package (name "ghc-microlens-ghc") (version "0.4.13.2") (source (origin (method url-fetch) (uri (hackage-uri "microlens-ghc" version)) (sha256 (base32 "1258p84jj4kv6l71ijwjzpvzvqxxsqbvs5vrksi24mlf29gaxqi0")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens-ghc"))) (inputs (list ghc-microlens)) (home-page "https://github.com/monadfix/microlens") (synopsis "Use @code{microlens} with GHC libraries like @code{array}") (description "This library provides everything that @code{microlens} provides plus instances to make @code{each}, @code{at}, and @code{ix} usable with arrays, @code{ByteString}, and containers. This package is a part of the @uref{https://hackage.haskell.org/package/microlens, microlens} family; see the readme @uref{https://github.com/aelve/microlens#readme, on Github}.") (license license:bsd-3))) (define-public ghc-microlens-mtl (package (name "ghc-microlens-mtl") (version "0.2.0.3") (source (origin (method url-fetch) (uri (hackage-uri "microlens-mtl" version)) (sha256 (base32 "1ilz0zyyk9f6h97gjsaqq65njfs23fk3wxhigvj4z0brf7rnlssd")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens-mtl"))) (inputs (list ghc-microlens ghc-transformers-compat)) (home-page "https://github.com/monadfix/microlens") (synopsis "@code{microlens} support for Reader/Writer/State from mtl") (description "This package contains functions (like @code{view} or @code{+=}) which work on @code{MonadReader}, @code{MonadWriter}, and @code{MonadState} from the mtl package. This package is a part of the @uref{https://hackage.haskell.org/package/microlens, microlens} family; see the readme @uref{https://github.com/aelve/microlens#readme, on Github}.") (license license:bsd-3))) (define-public ghc-microlens-platform (package (name "ghc-microlens-platform") (version "0.4.2.1") (source (origin (method url-fetch) (uri (hackage-uri "microlens-platform" version)) (sha256 (base32 "0z8snyzy18kqj32fb89mzgscjrg6w2z0jkkj4b9vl2jvbps0gkg6")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens-platform"))) (inputs (list ghc-hashable ghc-microlens ghc-microlens-ghc ghc-microlens-mtl ghc-microlens-th ghc-unordered-containers ghc-vector)) (home-page "https://github.com/monadfix/microlens") (synopsis "Feature-complete microlens") (description "This package exports a module which is the recommended starting point for using @uref{https://hackage.haskell.org/package/microlens, microlens} if you aren't trying to keep your dependencies minimal. By importing @code{Lens.Micro.Platform} you get all functions and instances from @uref{https://hackage.haskell.org/package/microlens, microlens}, @uref{https://hackage.haskell.org/package/microlens-th, microlens-th}, @uref{https://hackage.haskell.org/package/microlens-mtl, microlens-mtl}, @uref{https://hackage.haskell.org/package/microlens-ghc, microlens-ghc}, as well as instances for @code{Vector}, @code{Text}, and @code{HashMap}. The minor and major versions of @code{microlens-platform} are incremented whenever the minor and major versions of any other @code{microlens} package are incremented, so you can depend on the exact version of @code{microlens-platform} without specifying the version of @code{microlens} you need. This package is a part of the @uref{https://hackage.haskell.org/package/microlens, microlens} family; see the readme @uref{https://github.com/aelve/microlens#readme, on Github}.") (license license:bsd-3))) (define-public ghc-microlens-th (package (name "ghc-microlens-th") (version "0.4.3.13") (source (origin (method url-fetch) (uri (hackage-uri "microlens-th" version)) (sha256 (base32 "1g41wb61k2l99xxy23yp2zqk0wanskgdypbjhib71ji0y1dcsfz7")))) (build-system haskell-build-system) (properties '((upstream-name . "microlens-th"))) (inputs (list ghc-microlens ghc-th-abstraction)) (native-inputs (list ghc-tagged)) (home-page "https://github.com/stevenfontanella/microlens") (synopsis "Automatic generation of record lenses for @code{ghc-microlens}") (description "This Haskell package lets you automatically generate lenses for data types; code was extracted from the lens package, and therefore generated lenses are fully compatible with ones generated by lens (and can be used both from lens and microlens).") (license license:bsd-3))) (define-public ghc-missingh (package (name "ghc-missingh") (version "1.5.0.1") (source (origin (method url-fetch) (uri (hackage-uri "MissingH" version)) (sha256 (base32 "0c92fdv32nq51kfdizi3lpxmnvscsgk6marfzaycd7k05aka8byb")))) (build-system haskell-build-system) (properties '((upstream-name . "MissingH"))) (inputs (list ghc-hslogger ghc-old-locale ghc-old-time ghc-regex-compat ghc-network-bsd ghc-network)) (native-inputs (list ghc-hunit)) (arguments `(#:cabal-revision ("2" "11d922r06p00gcgzhb29hhjkq8ajy1xbqdiwdpbmhp2ar7fw7g9l"))) (home-page "https://hackage.haskell.org/package/MissingH") (synopsis "Large utility library") (description "MissingH is a library of all sorts of utility functions for Haskell programmers. It is written in pure Haskell and thus should be extremely portable and easy to use.") (license license:bsd-3))) (define-public ghc-mmap (package (name "ghc-mmap") (version "0.5.9") (source (origin (method url-fetch) (uri (hackage-uri "mmap" version)) (sha256 (base32 "1y5mk3yf4b8r6rzmlx1xqn4skaigrqnv08sqq0v7r3nbw42bpz2q")))) (build-system haskell-build-system) (properties '((upstream-name . "mmap"))) (home-page "https://hackage.haskell.org/package/mmap") (synopsis "Memory mapped files for Haskell") (description "This library provides a wrapper to @code{mmap}, allowing files or devices to be lazily loaded into memory as strict or lazy @code{ByteStrings}, @code{ForeignPtrs} or plain @code{Ptrs}, using the virtual memory subsystem to do on-demand loading.") (license license:bsd-3))) (define-public ghc-mmorph (package (name "ghc-mmorph") (version "1.2.0") (source (origin (method url-fetch) (uri (hackage-uri "mmorph" version)) (sha256 (base32 "1022d8mm523dihkf85mqsqxpm9rnyicmv91c8rm4csv7xdc80cv1")))) (build-system haskell-build-system) (properties '((upstream-name . "mmorph"))) (inputs (list ghc-transformers-compat ghc-fail)) (arguments `(#:cabal-revision ("3" "1582vcpjiyimb1vwnhgq8gp805iziwa8sivv2frir0cgq4z236yz"))) (home-page "https://hackage.haskell.org/package/mmorph") (synopsis "Monad morphisms") (description "This library provides monad morphism utilities, most commonly used for manipulating monad transformer stacks.") (license license:bsd-3))) (define-public ghc-mockery (package (name "ghc-mockery") (version "0.3.5") (source (origin (method url-fetch) (uri (hackage-uri "mockery" version)) (sha256 (base32 "09ypgm3z69gq8mj6y66ss58kbjnk15r8frwcwbqcfbfksfnfv8dp")))) (build-system haskell-build-system) (properties '((upstream-name . "mockery"))) (inputs (list ghc-temporary ghc-logging-facade ghc-base-compat)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/mockery") (synopsis "Support functions for automated testing") (description "The mockery package provides support functions for automated testing.") (license license:expat))) (define-public ghc-mockery-bootstrap (package (inherit ghc-mockery) (name "ghc-mockery-bootstrap") (arguments `(#:tests? #f)) (inputs (modify-inputs (package-inputs ghc-mockery) (replace "ghc-logging-facade" ghc-logging-facade-bootstrap))) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-monad-control (package (name "ghc-monad-control") (version "1.0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "monad-control" version)) (sha256 (base32 "0g3if9km8ik80bcy130a826ig9wlk4bnf0qli3vmwdwr9nhaw2xf")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-control"))) (inputs (list ghc-transformers-base ghc-transformers-compat)) (home-page "https://github.com/basvandijk/monad-control") (synopsis "Monad transformers to lift control operations like exception catching") (description "This package defines the type class @code{MonadBaseControl}, a subset of @code{MonadBase} into which generic control operations such as @code{catch} can be lifted from @code{IO} or any other base monad.") (license license:bsd-3))) (define-public ghc-monad-logger (package (name "ghc-monad-logger") (version "0.3.40") (source (origin (method url-fetch) (uri (hackage-uri "monad-logger" version)) (sha256 (base32 "1aff4ks9615x51841l8g906702xk2g3pn4n5x9ndxppnrxkqdvfb")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-logger"))) (inputs (list ghc-conduit ghc-conduit-extra ghc-fast-logger ghc-lifted-base ghc-monad-control ghc-monad-loops ghc-resourcet ghc-stm-chans ghc-transformers-base ghc-transformers-compat ghc-unliftio-core)) (home-page "https://github.com/snoyberg/monad-logger#readme") (synopsis "Provides a class of monads which can log messages for Haskell") (description "This Haskell package uses a monad transformer approach for logging. This package provides Template Haskell functions for determining source code locations of messages.") (license license:expat))) (define-public ghc-monad-loops (package (name "ghc-monad-loops") (version "0.4.3") (source (origin (method url-fetch) (uri (hackage-uri "monad-loops" version)) (sha256 (base32 "062c2sn3hc8h50p1mhqkpyv6x8dydz2zh3ridvlfjq9nqimszaky")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-loops"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/mokus0/monad-loops") (synopsis "Monadic loops for Haskell") (description "This Haskell package provides some useful control operators for looping.") (license license:public-domain))) (define-public ghc-monad-par (package (name "ghc-monad-par") (version "0.3.5") (source (origin (method url-fetch) (uri (hackage-uri "monad-par" version)) (sha256 (base32 "1a8m99g9x1ivch4vhksk7fdzygbil3d33w8gdqngxbmwdikdafl2")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-par"))) (arguments `(#:tests? #f ; TODO: ghc-test-framework-th does not build. #:cabal-revision ("1" "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"))) (inputs (list ghc-abstract-par ghc-abstract-deque ghc-monad-par-extras ghc-mwc-random ghc-parallel)) (native-inputs (list ghc-quickcheck ghc-hunit ghc-test-framework-hunit ghc-test-framework-quickcheck2 ghc-test-framework ;("ghc-test-framework-th" ,ghc-test-framework-th) )) (home-page "https://github.com/simonmar/monad-par") (synopsis "Haskell library for parallel programming based on a monad") (description "The @code{Par} monad offers an API for parallel programming. The library works for parallelising both pure and @code{IO} computations, although only the pure version is deterministic. The default implementation provides a work-stealing scheduler and supports forking tasks that are much lighter weight than IO-threads.") (license license:bsd-3))) (define-public ghc-monad-par-extras (package (name "ghc-monad-par-extras") (version "0.3.3") (source (origin (method url-fetch) (uri (hackage-uri "monad-par-extras" version)) (sha256 (base32 "0bl4bd6jzdc5zm20q1g67ppkfh6j6yn8fwj6msjayj621cck67p2")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-par-extras"))) (inputs (list ghc-abstract-par ghc-cereal ghc-random)) (home-page "https://github.com/simonmar/monad-par") (synopsis "Combinators and extra features for Par monads for Haskell") (description "This Haskell package provides additional data structures, and other added capabilities layered on top of the @code{Par} monad.") (license license:bsd-3))) (define-public ghc-monad-parallel (package (name "ghc-monad-parallel") (version "0.8") (source (origin (method url-fetch) (uri (hackage-uri "monad-parallel" version)) (sha256 (base32 "1j905cwc440g7rvbhsdkqf50ag7p2bi6cy2rqsk918rn80fqqra4")))) (build-system haskell-build-system) (properties '((upstream-name . "monad-parallel"))) (inputs (list ghc-parallel ghc-transformers-compat)) (home-page "https://hub.darcs.net/blamario/SCC.wiki/") (synopsis "Parallel execution of monadic computations") (description "This package defines classes of monads that can perform multiple executions in parallel and combine their results. For any monad that's an instance of the class, the package re-implements a subset of the @code{Control.Monad} interface, but with parallel execution.") (license license:bsd-3))) (define-public ghc-monadrandom (package (name "ghc-monadrandom") (version "0.5.3") (source (origin (method url-fetch) (uri (hackage-uri "MonadRandom" version)) (sha256 (base32 "17qaw1gg42p9v6f87dj5vih7l88lddbyd8880ananj8avanls617")))) (build-system haskell-build-system) (properties '((upstream-name . "MonadRandom"))) (inputs (list ghc-transformers-compat ghc-primitive ghc-fail ghc-random)) (arguments `(#:cabal-revision ("2" "1diy29if7w1c9ckc465mrrb52fm0zmd8zzym1h5ryh5a58qafwhr"))) (home-page "https://github.com/byorgey/MonadRandom") (synopsis "Random-number generation monad for Haskell") (description "This Haskell package provides support for computations which consume random values.") (license license:bsd-3))) (define-public ghc-monads-tf (package (name "ghc-monads-tf") (version "0.1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "monads-tf" version)) (sha256 (base32 "1wdhskwa6dw8qljbvwpyxj8ca6y95q2np7z4y4q6bpf4anmd5794")))) (build-system haskell-build-system) (properties '((upstream-name . "monads-tf"))) (home-page "https://hackage.haskell.org/package/monads-tf") (synopsis "Monad classes, using type families") (description "Monad classes using type families, with instances for various monad transformers, inspired by the paper 'Functional Programming with Overloading and Higher-Order Polymorphism', by Mark P Jones. This package is almost a compatible replacement for the @code{mtl-tf} package.") (license license:bsd-3))) (define-public ghc-mono-traversable (package (name "ghc-mono-traversable") (version "1.0.15.3") (source (origin (method url-fetch) (uri (hackage-uri "mono-traversable" version)) (sha256 (base32 "1dvlp7r7r1lc3fxkwaz68f1nffg83240q8a989x24x1x67rj1clq")))) (build-system haskell-build-system) (properties '((upstream-name . "mono-traversable"))) (outputs '("out" "doc")) (inputs (list ghc-unordered-containers ghc-hashable ghc-vector ghc-vector-algorithms ghc-split)) (native-inputs (list ghc-hspec ghc-hunit ghc-quickcheck ghc-foldl)) (home-page "https://github.com/snoyberg/mono-traversable") (synopsis "Haskell classes for mapping, folding, and traversing monomorphic containers") (description "This Haskell package provides Monomorphic variants of the Functor, Foldable, and Traversable typeclasses. If you understand Haskell's basic typeclasses, you understand mono-traversable. In addition to what you are used to, it adds on an IsSequence typeclass and has code for marking data structures as non-empty.") (license license:expat))) (define-public ghc-monoid-extras (package (name "ghc-monoid-extras") (version "0.6.2") (source (origin (method url-fetch) (uri (hackage-uri "monoid-extras" version)) (sha256 (base32 "1qaxp0cf2cvzvfpk7x9mjz1zmlpjfzxij8v2n45w89s7bq9ckvlw")))) (build-system haskell-build-system) (properties '((upstream-name . "monoid-extras"))) (inputs (list ghc-groups ghc-semigroupoids)) (home-page "https://hackage.haskell.org/package/monoid-extras") (synopsis "Various extra monoid-related definitions and utilities") (description "This package provides various extra monoid-related definitions and utilities, such as monoid actions, monoid coproducts, semi-direct products, \"deletable\" monoids, \"split\" monoids, and \"cut\" monoids.") (license license:bsd-3))) (define-public ghc-mountpoints (package (name "ghc-mountpoints") (version "1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "mountpoints" version)) (sha256 (base32 "1hnm31pqcffphyc463wf0vbik9fzm5lb2r4wjdc1y4dqzmjdzz37")))) (build-system haskell-build-system) (properties '((upstream-name . "mountpoints"))) (home-page "https://hackage.haskell.org/package/mountpoints") (synopsis "Haskell library for listing mount points") (description "This library provides Haskell bindings for checking currently mounted filesystems.") (license license:lgpl2.1+))) (define-public ghc-mtl-compat (package (name "ghc-mtl-compat") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "mtl-compat" version)) (sha256 (base32 "17iszr5yb4f17g8mq6i74hsamii8z6m2qfsmgzs78mhiwa7kjm8r")))) (build-system haskell-build-system) (properties '((upstream-name . "mtl-compat"))) (home-page "https://github.com/haskell-compat/mtl-compat") (synopsis "Backported Control.Monad.Except module from mtl") (description "This package backports the Control.Monad.Except module from mtl (if using mtl-2.2.0.1 or earlier), which reexports the ExceptT monad transformer and the MonadError class. This package should only be used if there is a need to use the Control.Monad.Except module specifically. If you just want the mtl class instances for ExceptT, use transformers-compat instead, since mtl-compat does nothing but reexport the instances from that package. Note that unlike how mtl-2.2 or later works, the Control.Monad.Except module defined in this package exports all of ExceptT's monad class instances. Therefore, you may have to declare @code{import Control.Monad.Except ()} at the top of your file to get all of the ExceptT instances in scope.") (license license:bsd-3))) (define-public ghc-murmur-hash (package (name "ghc-murmur-hash") (version "0.1.0.10") (source (origin (method url-fetch) (uri (hackage-uri "murmur-hash" version)) (sha256 (base32 "145z91zkx8jdd3y181pi8z9imqjgpk99cl55pbda4fl201hasbz9")))) (build-system haskell-build-system) (properties '((upstream-name . "murmur-hash"))) (home-page "https://github.com/nominolo/murmur-hash") (synopsis "MurmurHash2 implementation for Haskell") (description "This package provides an implementation of MurmurHash2, a good, fast, general-purpose, non-cryptographic hashing function. See @url{https://sites.google.com/site/murmurhash/} for details. This implementation is pure Haskell, so it might be a bit slower than a C FFI binding.") (license license:bsd-3))) (define-public ghc-mwc-random (package (name "ghc-mwc-random") (version "0.15.0.2") (source (origin (method url-fetch) (uri (hackage-uri "mwc-random" version)) (sha256 (base32 "0ny2mw4am24d6ykrm8rbcjnrq6p2cjmzjb4m6qfk54wfdxflvmim")))) (build-system haskell-build-system) (properties '((upstream-name . "mwc-random"))) (inputs (list ghc-primitive ghc-vector ghc-math-functions)) (arguments `(#:tests? #f)) ; FIXME: Test-Suite `spec` fails. (native-inputs (list ghc-hunit ghc-quickcheck ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://github.com/bos/mwc-random") (synopsis "Random number generation library for Haskell") (description "This Haskell package contains code for generating high quality random numbers that follow either a uniform or normal distribution. The generated numbers are suitable for use in statistical applications. The uniform PRNG uses Marsaglia's MWC256 (also known as MWC8222) multiply-with-carry generator, which has a period of 2^{8222} and fares well in tests of randomness. It is also extremely fast, between 2 and 3 times faster than the Mersenne Twister.") (license license:bsd-3))) (define-public ghc-nats (package (name "ghc-nats") (version "1.1.2") (source (origin (method url-fetch) (uri (hackage-uri "nats" version)) (sha256 (base32 "1v40drmhixck3pz3mdfghamh73l4rp71mzcviipv1y8jhrfxilmr")))) (build-system haskell-build-system) (properties '((upstream-name . "nats"))) (arguments `(#:haddock? #f)) (inputs (list ghc-hashable)) (home-page "https://hackage.haskell.org/package/nats") (synopsis "Natural numbers") (description "This library provides the natural numbers for Haskell.") (license license:bsd-3))) (define-public ghc-nats-bootstrap (package (inherit ghc-nats) (name "ghc-nats-bootstrap") (inputs `(("ghc-hashable" ,ghc-hashable-bootstrap))) (properties '((hidden? #t))))) (define-public ghc-ncurses (package (name "ghc-ncurses") (version "0.2.16") (source (origin (method url-fetch) (uri (hackage-uri "ncurses" version)) (sha256 (base32 "0gsyyaqyh5r9zc0rhwpj5spyd6i4w2vj61h4nihgmmh0yyqvf3z5")))) (build-system haskell-build-system) (properties '((upstream-name . "ncurses"))) (arguments '(#:extra-directories ("ncurses") #:phases (modify-phases %standard-phases (add-before 'build 'fix-includes (lambda _ (substitute* '("cbits/hsncurses-shim.h" "lib/UI/NCurses.chs" "lib/UI/NCurses/Enums.chs" "lib/UI/NCurses/Panel.chs") (("<ncursesw/") "<")) #t))) #:cabal-revision ("1" "1wfdy716s5p1sqp2gsg43x8wch2dxg0vmbbndlb2h3d8c9jzxnca"))) (inputs (list ncurses)) (native-inputs (list ghc-c2hs)) (home-page "https://john-millikin.com/software/haskell-ncurses/") (synopsis "Modernised bindings to GNU ncurses") (description "GNU ncurses is a library for creating command-line application with pseudo-graphical interfaces. This package is a nice, modern binding to GNU ncurses.") (license license:gpl3))) (define-public ghc-network (package (name "ghc-network") (version "3.1.4.0") (source (origin (method url-fetch) (uri (hackage-uri "network" version)) (sha256 (base32 "13hmp4va00ydpzbnwjzgf5wd5iy7373j0f7baxrj1ncmmjps4lml")))) (build-system haskell-build-system) (properties '((upstream-name . "network"))) (native-inputs (list ghc-hunit ghc-temporary ghc-hspec ghc-quickcheck hspec-discover)) (arguments `(#:cabal-revision ("1" "1vwxy5zj4bizgg2g0hk3dy52kjh5d7lzn33lphmvbbs36aqcslp1"))) (home-page "https://github.com/haskell/network") (synopsis "Low-level networking interface") (description "This package provides a low-level networking interface.") (license license:bsd-3))) (define-public ghc-network-bsd (package (name "ghc-network-bsd") (version "2.8.1.0") (source (origin (method url-fetch) (uri (hackage-uri "network-bsd" version)) (sha256 (base32 "0kid0811lv4x761fd5gv6lsc8p5j2bn41rfd366pjb642p562jfr")))) (build-system haskell-build-system) (properties '((upstream-name . "network-bsd"))) (arguments `(#:cabal-revision ("4" "1gd9a8j7fwg0jz0s6il5fk9sl0hm19ja1w56ix51wa0qi2h5x56d"))) (inputs (list ghc-network)) (home-page "https://github.com/haskell/network-bsd") (synopsis "POSIX network database (<netdb.h>) API") (description "This package provides Haskell bindings to the the POSIX network database (<netdb.h>) API.") (license license:bsd-3))) (define-public ghc-network-byte-order (package (name "ghc-network-byte-order") (version "0.1.6") (source (origin (method url-fetch) (uri (hackage-uri "network-byte-order" version)) (sha256 (base32 "0pnwcg13k4qw82n0zc1xibyc24sc77y79j5a62pqdmjrnz4wrc7j")))) (build-system haskell-build-system) (properties '((upstream-name . "network-byte-order"))) (native-inputs (list ghc-doctest)) (home-page "https://hackage.haskell.org/package/network-byte-order") (synopsis "Network byte order utilities") (description "This library provides peek and poke functions for network byte order.") (license license:bsd-3))) (define-public ghc-network-info (package (name "ghc-network-info") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "network-info" version)) (sha256 (base32 "015lm3b8n8sb16qsffjxz1jvijyy0z600ch0sm8h6a685wqqhbcv")))) (build-system haskell-build-system) (properties '((upstream-name . "network-info"))) (home-page "https://github.com/jacobstanley/network-info") (synopsis "Access the local computer's basic network configuration") (description "This Haskell library provides simple read-only access to the local computer's networking configuration. It is currently capable of getting a list of all the network interfaces and their respective IPv4, IPv6 and MAC addresses.") (license license:bsd-3))) (define-public ghc-network-multicast (package (name "ghc-network-multicast") (version "0.3.2") (source (origin (method url-fetch) (uri (hackage-uri "network-multicast" version)) (sha256 (base32 "0whvi0pbwjy6dbwfdf9rv1j3yr3lcmfp3q7a8pwq63g537l4l2l3")))) (build-system haskell-build-system) (properties '((upstream-name . "network-multicast"))) (inputs (list ghc-network ghc-network-bsd)) (home-page "https://hackage.haskell.org/package/network-multicast") (synopsis "Simple multicast library for Haskell") (description "This package provides the Network.Multicast Haskell module for sending UDP datagrams over multicast (class D) addresses.") ;; Note that this is technically under CC0 1.0 and Expat, though it's not ;; totally clear what the breakdown is. Since CC0 1.0 is effectively ;; "public domain with a minimal fallback license", figuring marking it ;; as effectively Expat is probably correct. (license license:expat))) (define-public ghc-network-uri (package (name "ghc-network-uri") (version "2.6.4.2") (source (origin (method url-fetch) (uri (hackage-uri "network-uri" version)) (sha256 (base32 "0a3jg6aykwm1yw32nh137hi6r86w2640xwl1p18352bf29rqj64w")))) (build-system haskell-build-system) (properties '((upstream-name . "network-uri"))) (inputs (list ghc-th-compat)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck)) (home-page "https://github.com/haskell/network-uri") (synopsis "Library for URI manipulation") (description "This package provides an URI manipulation interface. In @code{network-2.6} the @code{Network.URI} module was split off from the @code{network} package into this package.") (license license:bsd-3))) (define-public ghc-newtype-generics (package (name "ghc-newtype-generics") (version "0.6.2") (source (origin (method url-fetch) (uri (hackage-uri "newtype-generics" version)) (sha256 (base32 "0km7cp041bgdgrxrbrawz611mcylxp943880a2yg228a09961b51")))) (build-system haskell-build-system) (properties '((upstream-name . "newtype-generics"))) (native-inputs (list ghc-hspec hspec-discover)) (arguments `(#:cabal-revision ("1" "0xgc7sxs1p3qibgwbikjdrhn47j7m4gk5x1wrv9hncks6hd6hsyf"))) (home-page "https://github.com/sjakobi/newtype-generics") (synopsis "Typeclass and set of functions for working with newtypes") (description "The @code{Newtype} typeclass represents the packing and unpacking of a newtype, and allows you to operate under that newtype with functions such as @code{ala}. Generics support was added in version 0.4, making this package a full replacement for the original newtype package, and an alternative to newtype-th.") (license license:bsd-3))) (define-public ghc-non-negative (package (name "ghc-non-negative") (version "0.1.2") (source (origin (method url-fetch) (uri (hackage-uri "non-negative" version)) (sha256 (base32 "0f01q916dzkl1i0v15qrw9cviycki5g3fgi6x8gs45iwbzssq52n")))) (build-system haskell-build-system) (properties '((upstream-name . "non-negative"))) (inputs (list ghc-semigroups ghc-utility-ht ghc-quickcheck)) (home-page "https://hackage.haskell.org/package/non-negative") (synopsis "Non-negative numbers class") (description "This library provides a class for non-negative numbers, a wrapper which can turn any ordered numeric type into a member of that class, and a lazy number type for non-negative numbers (a generalization of Peano numbers).") (license license:gpl3+))) (define-public ghc-nonce (package (name "ghc-nonce") (version "1.0.7") (source (origin (method url-fetch) (uri (hackage-uri "nonce" version)) (sha256 (base32 "1q9ph0aq51mvdvydnriqd12sfin36pfb8f588zgac1ybn8r64ksb")))) (build-system haskell-build-system) (properties '((upstream-name . "nonce"))) (arguments `(#:cabal-revision ("2" "09xvg4lpmb1hw153afhbjrdg9v3npfwpdfhpv5y8b0qvb4zi3n9q"))) (inputs (list ghc-base64-bytestring ghc-entropy ghc-unliftio ghc-unliftio-core)) (home-page "https://github.com/prowdsponsor/nonce") (synopsis "Generate cryptographic nonces in Haskell") (description "A nonce is an arbitrary number used only once in a cryptographic communication. This package contain helper functions for generating nonces. There are many kinds of nonces used in different situations. It's not guaranteed that by using the nonces from this package you won't have any security issues. Please make sure that the nonces generated via this package are usable on your design.") (license license:bsd-3))) (define-public ghc-numeric-extras (package (name "ghc-numeric-extras") (version "0.1") (source (origin (method url-fetch) (uri (hackage-uri "numeric-extras" version)) (sha256 (base32 "1mk11c0gz1yjy5b8dvq6czfny57pln0bs7x28fz38qyr44872067")))) (build-system haskell-build-system) (properties '((upstream-name . "numeric-extras"))) (home-page "https://github.com/ekmett/numeric-extras") (synopsis "Useful tools from the C standard library") (description "This library provides some useful tools from the C standard library.") (license license:bsd-3))) (define-public ghc-objectname (package (name "ghc-objectname") (version "1.1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "ObjectName" version)) (sha256 (base32 "0xdkfc97salzj5s3fvmwk4k0097dcd8c4xcr5ghhv9mz0wcxm9gz")))) (build-system haskell-build-system) (properties '((upstream-name . "ObjectName"))) (home-page "https://github.com/svenpanne/ObjectName") (synopsis "Helper library for Haskell OpenGL") (description "This tiny package contains the class ObjectName, which corresponds to the general notion of explicitly handled identifiers for API objects, e.g. a texture object name in OpenGL or a buffer object name in OpenAL.") (license license:bsd-3))) (define-public ghc-old-locale (package (name "ghc-old-locale") (version "1.0.0.7") (source (origin (method url-fetch) (uri (hackage-uri "old-locale" version)) (sha256 (base32 "0l3viphiszvz5wqzg7a45zp40grwlab941q5ay29iyw8p3v8pbyv")))) (build-system haskell-build-system) (properties '((upstream-name . "old-locale"))) (arguments `(#:cabal-revision ("2" "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"))) (home-page "https://hackage.haskell.org/package/old-locale") (synopsis "Adapt to locale conventions") (description "This package provides the ability to adapt to locale conventions such as date and time formats.") (license license:bsd-3))) (define-public ghc-old-time (package (name "ghc-old-time") (version "1.1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "old-time" version)) (sha256 (base32 "1h9b26s3kfh2k0ih4383w90ibji6n0iwamxp6rfp2lbq1y5ibjqw")))) (build-system haskell-build-system) (properties '((upstream-name . "old-time"))) (arguments `(#:cabal-revision ("2" "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"))) (inputs (list ghc-old-locale)) (home-page "https://hackage.haskell.org/package/old-time") (synopsis "Time compatibility library for Haskell") (description "Old-time is a package for backwards compatibility with the old @code{time} library. For new projects, the newer @uref{https://hackage.haskell.org/package/time, time library} is recommended.") (license license:bsd-3))) (define-public ghc-only (package (name "ghc-only") (version "0.1") (source (origin (method url-fetch) (uri (hackage-uri "Only" version)) (sha256 (base32 "0rdj3a629fk2vp121jq8mf2smkblrz5w3cxhlsyx6my2x29s2ymb")))) (build-system haskell-build-system) (properties '((upstream-name . "Only"))) (arguments `(#:cabal-revision ("1" "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"))) (home-page "https://hackage.haskell.org/package/Only") (synopsis "The 1-tuple type or single-value collection") (description "This package provides a canonical anonymous 1-tuple type missing from Haskell for attaching typeclass instances. There is also the @url{https://hackage.haskell.org/package/OneTuple, OneTuple package} which by using a boxed @code{data}-type provides a 1-tuple type which has laziness properties which are more faithful to the ones of Haskell's native tuples; whereas the primary purpose of @code{Only} is to provide the traditionally so named type-wrapper for attaching typeclass instances.") (license license:bsd-3))) (define-public ghc-opengl (package (name "ghc-opengl") (version "3.0.3.0") (source (origin (method url-fetch) (uri (hackage-uri "OpenGL" version)) (sha256 (base32 "069fg8jcxqq2z9iikynd8vi3jxm2b5y3qywdh4bdviyzab3zy1as")))) (build-system haskell-build-system) (properties '((upstream-name . "OpenGL"))) (arguments `(#:cabal-revision ("2" "1nhlswxgxn8l1ysjq3fp3w5pvx6651d33036i8dlbqygzrn6iwmh"))) (inputs (list ghc-objectname ghc-gluraw ghc-statevar ghc-openglraw)) (home-page "https://wiki.haskell.org/Opengl") (synopsis "Haskell bindings for the OpenGL graphics system") (description "This package provides Haskell bindings for the OpenGL graphics system (GL, version 4.5) and its accompanying utility library (GLU, version 1.3).") (license license:bsd-3))) (define-public ghc-openglraw (package (name "ghc-openglraw") (version "3.3.4.1") (source (origin (method url-fetch) (uri (hackage-uri "OpenGLRaw" version)) (sha256 (base32 "07nk0rgm6jcxz6yshwhv5lj5frs6371w3hdjxwa4biws2kmbs6hj")))) (build-system haskell-build-system) (properties '((upstream-name . "OpenGLRaw"))) (inputs (list ghc-fixed ghc-half glu)) (arguments `(#:extra-directories ("glu") #:cabal-revision ("1" "15abvqkxc08lx9d44323izccfp7bqfiljnd587zn80vdvmkzs6zc"))) (home-page "http://www.haskell.org/haskellwiki/Opengl") (synopsis "Raw Haskell bindings for the OpenGL graphics system") (description "OpenGLRaw is a raw Haskell binding for the OpenGL 4.5 graphics system and lots of OpenGL extensions. It is basically a 1:1 mapping of OpenGL's C API, intended as a basis for a nicer interface. OpenGLRaw offers access to all necessary functions, tokens and types plus a general facility for loading extension entries. The module hierarchy closely mirrors the naming structure of the OpenGL extensions, making it easy to find the right module to import. All API entries are loaded dynamically, so no special C header files are needed for building this package. If an API entry is not found at runtime, a userError is thrown.") (license license:bsd-3))) (define-public ghc-operational (package (name "ghc-operational") (version "0.2.4.2") (source (origin (method url-fetch) (uri (hackage-uri "operational" version)) (sha256 (base32 "1dx6vpmg21fskxyz12ba26hffk25b2qk9sznqfczgaamn6rahzc5")))) (build-system haskell-build-system) (properties '((upstream-name . "operational"))) (inputs (list ghc-random)) (arguments `(#:cabal-revision ("1" "0hdqwjm1jp6f8n8qglg9ylz07sbhrc7cm4kvcglymi2s4i9mdsai"))) (home-page "https://github.com/HeinrichApfelmus/operational") (synopsis "Implementation of difficult monads made easy with operational semantics") (description "This library makes it easy to implement monads with tricky control flow. This is useful for: writing web applications in a sequential style, programming games with a uniform interface for human and AI players and easy replay capababilities, implementing fast parser monads, designing monadic DSLs, etc.") (license license:bsd-3))) (define-public ghc-optional-args (package (name "ghc-optional-args") (version "1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "optional-args" version)) (sha256 (base32 "1r5hhn6xvc01grggxdyy48daibwzi0aikgidq0ahpa6bfynm8d1f")))) (build-system haskell-build-system) (properties '((upstream-name . "optional-args"))) (home-page "https://hackage.haskell.org/package/optional-args") (synopsis "Optional function arguments") (description "This library provides a type for specifying @code{Optional} function arguments.") (license license:bsd-3))) (define-public ghc-options (package (name "ghc-options") (version "1.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "options" version)) (sha256 (base32 "0qjs0v1ny52w51n5582d4z8wy9h6n0zw1xb5dh686ff5wadflgi8")))) (build-system haskell-build-system) (properties '((upstream-name . "options"))) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "options.cabal" (("chell >= 0\\.4 && < 0\\.5") "chell >= 0.4 && < 0.6")) #t))))) (inputs (list ghc-monads-tf ghc-chell ghc-chell-quickcheck)) (home-page "https://john-millikin.com/software/haskell-options/") (synopsis "Powerful and easy-to-use command-line option parser") (description "The @code{options} package lets library and application developers easily work with command-line options.") (license license:expat))) ;; See ghc-system-filepath-bootstrap, chell and chell-quickcheck are required for tests. (define ghc-options-bootstrap (package (name "ghc-options-bootstrap") (version "1.2.1.1") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/options/options-" version ".tar.gz")) (sha256 (base32 "0qjs0v1ny52w51n5582d4z8wy9h6n0zw1xb5dh686ff5wadflgi8")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) (inputs `(("ghc-monads-tf" ,ghc-monads-tf))) (home-page "https://john-millikin.com/software/haskell-options/") (synopsis "Powerful and easy-to-use command-line option parser") (description "The @code{options} package lets library and application developers easily work with command-line options.") (license license:expat))) (define-public ghc-optparse-applicative (package (name "ghc-optparse-applicative") (version "0.17.1.0") (source (origin (method url-fetch) (uri (hackage-uri "optparse-applicative" version)) (sha256 (base32 "1vx5w03vvfr3hdk79lvl34x8bxj5xbx0xh53mmnmxi9r05scnyfi")))) (build-system haskell-build-system) (properties '((upstream-name . "optparse-applicative"))) (inputs (list ghc-transformers-compat ghc-ansi-wl-pprint)) (native-inputs (list ghc-quickcheck)) (arguments `(#:cabal-revision ("1" "1mhyjlmb1hylmhv77w6gq663drpyiqd09w1x1vy4d63lr46mypyb"))) (home-page "https://github.com/pcapriotti/optparse-applicative") (synopsis "Utilities and combinators for parsing command line options") (description "This package provides utilities and combinators for parsing command line options in Haskell.") (license license:bsd-3))) (define-public ghc-jira-wiki-markup (package (name "ghc-jira-wiki-markup") (version "1.4.0") (source (origin (method url-fetch) (uri (hackage-uri "jira-wiki-markup" version)) (sha256 (base32 "0p6axj6km4440ss5naw68r3r85si4qxqgrklp6ssfyapawy0s88w")))) (build-system haskell-build-system) (properties '((upstream-name . "jira-wiki-markup"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/tarleb/jira-wiki-markup") (synopsis "Handle Jira wiki markup") (description "Parse jira wiki text into an abstract syntax tree for easy transformation to other formats.") (license license:expat))) (define-public ghc-emojis (package (name "ghc-emojis") (version "0.1.2") (source (origin (method url-fetch) (uri (hackage-uri "emojis" version)) (sha256 (base32 "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw")))) (build-system haskell-build-system) (properties '((upstream-name . "emojis"))) (native-inputs (list ghc-hunit)) (home-page "https://github.com/jgm/emojis#readme") (synopsis "Conversion between emoji characters and their names") (description "This package provides functions for converting emoji names to emoji characters and vice versa. How does it differ from the @code{emoji} package? @itemize @item It supports a fuller range of emojis, including all those supported by GitHub @item It supports lookup of emoji aliases from emoji @item It uses Text rather than String @item It has a lighter dependency footprint: in particular, it does not require aeson @item It does not require TemplateHaskell @end itemize") (license license:bsd-3))) (define-public ghc-text-conversions (package (name "ghc-text-conversions") (version "0.3.1.1") (source (origin (method url-fetch) (uri (hackage-uri "text-conversions" version)) (sha256 (base32 "0pbjlzsjd3m8np5p6iq7zb0bx6n40d8jha76r8s07s4wg2x0yxy8")))) (build-system haskell-build-system) (properties '((upstream-name . "text-conversions"))) (inputs (list ghc-base16-bytestring ghc-base64-bytestring)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/cjdev/text-conversions") (synopsis "Safe conversions between textual types") (description "Safe conversions between textual types") (license license:isc))) (define-public ghc-text-icu (package (name "ghc-text-icu") (version "0.8.0.2") (source (origin (method url-fetch) (uri (hackage-uri "text-icu" version)) (sha256 (base32 "0frxrsj580ipgb3pdvw1msdz8d63j02vvrqhzjja3ixlq24am69d")))) (build-system haskell-build-system) (properties '((upstream-name . "text-icu"))) (inputs (list icu4c)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-random ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2 ghc-semigroups pkg-config)) (home-page "https://github.com/haskell/text-icu") (synopsis "Bindings to the ICU library") (description "Haskell bindings to the International Components for Unicode (ICU) libraries. These libraries provide robust and full-featured Unicode services on a wide variety of platforms. . Features include: . * Both pure and impure bindings, to allow for fine control over efficiency and ease of use. . * Breaking of strings on character, word, sentence, and line boundaries. . * Access to the Unicode Character Database (UCD) of character metadata. . * String collation functions, for locales where the conventions for lexicographic ordering differ from the simple numeric ordering of character codes. . * Character set conversion functions, allowing conversion between Unicode and over 220 character encodings. . * Unicode normalization. (When implementations keep strings in a normalized form, they can be assured that equivalent strings have a unique binary representation.) . * Regular expression search and replace. . * Security checks for visually confusable (spoofable) strings. . * Bidirectional Unicode algorithm . * Calendar objects holding dates and times. . * Number and calendar formatting.") (license license:bsd-3))) (define-public ghc-text-short (package (name "ghc-text-short") (version "0.1.5") (source (origin (method url-fetch) (uri (hackage-uri "text-short" version)) (sha256 (base32 "1nid00c1rg5c1z7l9mwk3f2izc2sps2mip2hl30q985dwb6wcpm3")))) (build-system haskell-build-system) (properties '((upstream-name . "text-short"))) (inputs (list ghc-hashable)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("1" "0gmmwwchy9312kz8kr5jhiamqrnjqxdqg1wkrww4289yfj1p7dzb"))) (home-page "https://hackage.haskell.org/package/text-short") (synopsis "Memory-efficient representation of Unicode text strings") (description "This package provides the @code{ShortText} type which is suitable for keeping many short strings in memory. This is similar to how @code{ShortByteString} relates to @code{ByteString}. The main difference between @code{Text} and @code{ShortText} is that @code{ShortText} uses UTF-8 instead of UTF-16 internally and also doesn't support zero-copy slicing (thereby saving 2 words). Consequently, the memory footprint of a (boxed) @{ShortText} value is 4 words (2 words when unboxed) plus the length of the UTF-8 encoded payload.") (license license:bsd-3))) (define-public ghc-text-zipper (package (name "ghc-text-zipper") (version "0.13") (source (origin (method url-fetch) (uri (hackage-uri "text-zipper" version)) (sha256 (base32 "1acq583wmgb53viqslbkgl454300fawg5lryxddfiy1mqk3iqlh6")))) (build-system haskell-build-system) (properties '((upstream-name . "text-zipper"))) (inputs (list ghc-vector)) (native-inputs (list ghc-hspec ghc-quickcheck hspec-discover)) (home-page "https://github.com/jtdaugherty/text-zipper/") (synopsis "Text editor zipper library") (description "This Haskell library provides a two-dimensional zipper data structure for editing text. The structure represents the body of text and an editing cursor which can be moved through it, along with a set of editing transformations. Text zippers are generalized over the set of data types that might be used to store lists of characters (e.g., @code{String}, @code{T.Text}, etc.). Implementations using both of these examples are provided.") (license license:bsd-3))) (define-public ghc-doclayout (package (name "ghc-doclayout") (version "0.4.0.1") (source (origin (method url-fetch) (uri (hackage-uri "doclayout" version)) (sha256 (base32 "02xkf2shcrb897yrh9i6ch9qi4gm42avya4znsjxgpxb85fm3lzp")))) (build-system haskell-build-system) (properties '((upstream-name . "doclayout"))) (inputs (list ghc-emojis ghc-safe)) (native-inputs (list ghc-tasty ghc-tasty-golden ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://github.com/jgm/doclayout") (synopsis "Pretty-printing library for laying out text documents") (description "doclayout is a pretty-printing library for laying out text documents, with several features not present in pretty-printing libraries designed for code. It was designed for use in @code{Pandoc}.") (license license:bsd-3))) (define-public ghc-pandoc (package (name "ghc-pandoc") (version "2.19.2") (source (origin (method url-fetch) (uri (hackage-uri "pandoc" version)) (sha256 (base32 "0ia2gpl345lwymk38y89sgcqjci7sjmxbi228idg6nkaqfa3ds1n")) (modules '((guix build utils))) (snippet '(begin ;; Fix test case. (substitute* "test/writer.ms" (("\\\\\\[u2212\\]") "-")) (substitute* "test/Tests/Old.hs" ;; There is no indication why these tests are failing on ;; i686-linux. ((".*fb2WriterTest' \"images.*") "") ((".*fb2WriterTest' \"testsuite.*") "")))))) (build-system haskell-build-system) (properties '((upstream-name . "pandoc"))) (inputs (list ghc-glob ghc-juicypixels ghc-sha ghc-aeson ghc-aeson-pretty ghc-attoparsec ghc-blaze-html ghc-blaze-markup ghc-case-insensitive ghc-citeproc ghc-commonmark ghc-commonmark-extensions ghc-commonmark-pandoc ghc-connection ghc-data-default ghc-doclayout ghc-doctemplates ghc-base64 ghc-emojis ghc-file-embed ghc-gridtables ghc-haddock-library ghc-hslua-module-doclayout ghc-hslua-module-path ghc-hslua-module-system ghc-hslua-module-text ghc-hslua-module-version ghc-http-client ghc-http-client-tls ghc-http-types ghc-ipynb ghc-jira-wiki-markup ghc-lpeg ghc-network ghc-network-uri ghc-pandoc-lua-marshal ghc-pandoc-types ghc-pretty-show ghc-random ghc-safe ghc-scientific ghc-skylighting ghc-skylighting-core ghc-split ghc-syb ghc-tagsoup ghc-temporary ghc-texmath ghc-text-conversions ghc-unicode-collation ghc-unicode-transforms ghc-xml ghc-xml-conduit ghc-xml-types ghc-yaml ghc-zip-archive ghc-zlib ghc-servant-server ghc-wai ghc-hslua ghc-hslua-aeson ghc-wai-extra ghc-warp)) (native-inputs (list ghc-diff ghc-tasty ghc-tasty-golden ghc-tasty-hunit ghc-tasty-lua ghc-tasty-quickcheck)) (home-page "https://pandoc.org") (synopsis "Conversion between markup formats") (description "Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses this library. It can read and write Markdown and (subsets of) other formats, such as HTML, reStructuredText, LaTeX, DocBook, and many more. Pandoc extends standard Markdown syntax with footnotes, embedded LaTeX, definition lists, tables, and other features. A compatibility mode is provided for those who need a drop-in replacement for Markdown.pl.") (license license:gpl2+))) (define-public pandoc (package (inherit ghc-pandoc) (name "pandoc") (arguments (list ;; Create entirely self-contained binary by embedding the data files ;; in the binary itself. Required for python-pypandoc. #:configure-flags #~(list "-fembed_data_files") #:phases #~(modify-phases %standard-phases (add-after 'install 'install-more (lambda _ (let ((bash (string-append #$output "/etc/bash_completion.d/pandoc")) (man1 (string-append #$output "/share/man/man1"))) (mkdir-p (dirname bash)) (with-output-to-file bash (lambda _ (invoke (string-append #$output "/bin/pandoc") "--bash-completion"))) (mkdir-p man1) (install-file "man/pandoc.1" man1)))) (add-after 'register 'remove-libraries (lambda* (#:key outputs #:allow-other-keys) (delete-file-recursively (string-append (assoc-ref outputs "out") "/lib"))))) ;; Haddock documentation is for the library. #:haddock? #f)))) (define-public ghc-pandoc-types (package (name "ghc-pandoc-types") (version "1.22.2.1") (source (origin (method url-fetch) (uri (hackage-uri "pandoc-types" version)) (sha256 (base32 "17b5c4b9jmx2gca1wk9vlnvvlzdw21qiqc0bpikkkiv7kl99drsc")))) (build-system haskell-build-system) (properties '((upstream-name . "pandoc-types"))) (inputs (list ghc-syb ghc-aeson ghc-quickcheck)) (native-inputs (list ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2 ghc-hunit ghc-string-qq)) (home-page "https://pandoc.org/") (synopsis "Types for representing a structured document") (description "This module defines the @code{Pandoc} data structure, which is used by pandoc to represent structured documents. It also provides functions for building up, manipulating and serialising @code{Pandoc} structures.") (license license:bsd-3))) (define-public ghc-parallel (package (name "ghc-parallel") (version "3.2.2.0") (outputs '("out" "doc")) (source (origin (method url-fetch) (uri (hackage-uri "parallel" version)) (sha256 (base32 "1xkfi96w6yfpppd0nw1rnszdxmvifwzm699ilv6332ra3akm610p")))) (build-system haskell-build-system) (properties '((upstream-name . "parallel"))) (arguments `(#:cabal-revision ("5" "1q45wzpf2sda0244l55gakl3g5zqhcb27m86nhl3vslcjc35mpbf"))) (home-page "https://hackage.haskell.org/package/parallel") (synopsis "Parallel programming library") (description "This package provides a library for parallel programming.") (license license:bsd-3))) (define-public ghc-parsec (package (name "ghc-parsec") (version "3.1.15.0") (source (origin (method url-fetch) (uri (hackage-uri "parsec" version)) (sha256 (base32 "1v8zs8zv1rk16lag2yqaxfwanjpgnh4gxw1vd70py0n04d20z0lq")))) (build-system haskell-build-system) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/haskell/parsec") (synopsis "Monadic parser combinators") (description "Parsec is designed from scratch as an industrial-strength parser library. It is simple, safe, well documented (on the package homepage), has extensive libraries, good error messages, and is fast. It is defined as a monad transformer that can be stacked on arbitrary monads, and it is also parametric in the input stream type.") (license license:bsd-3))) (define-public ghc-parsec-numbers (package (name "ghc-parsec-numbers") (version "0.1.0") (source (origin (method url-fetch) (uri (hackage-uri "parsec-numbers" version)) (sha256 (base32 "1gzy4v3r02kvdxvgg1nj83mmb6aph2v4ilf9c7y6nbvi2x49l0bp")))) (build-system haskell-build-system) (properties '((upstream-name . "parsec-numbers"))) (home-page "https://hackage.haskell.org/package/parsec-numbers") (synopsis "Utilities for parsing numbers from strings") (description "This package provides the number parsers without the need to use a large (and unportable) token parser.") (license license:bsd-3))) (define-public ghc-parser-combinators (package (name "ghc-parser-combinators") (version "1.3.0") (source (origin (method url-fetch) (uri (hackage-uri "parser-combinators" version)) (sha256 (base32 "0is45q3q6ngfqvzpwwga9phbwk45v7g1q2x1rlm95a7q946yy44k")))) (build-system haskell-build-system) (properties '((upstream-name . "parser-combinators"))) (home-page "https://github.com/mrkkrp/parser-combinators") (synopsis "Commonly useful parser combinators") (description "This is a lightweight package providing commonly useful parser combinators.") (license license:bsd-3))) (define-public ghc-parsers (package (name "ghc-parsers") (version "0.12.11") (source (origin (method url-fetch) (uri (hackage-uri "parsers" version)) (sha256 (base32 "068k7fm0s13z0jkkffc149cqcxnzpk1m066lp4ccdfcb41km1zwi")))) (build-system haskell-build-system) (properties '((upstream-name . "parsers"))) (inputs (list ghc-base-orphans ghc-charset ghc-scientific ghc-unordered-containers ghc-attoparsec ghc-semigroups)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances)) (home-page "https://github.com/ekmett/parsers/") (synopsis "Parsing combinators") (description "This library provides convenient combinators for working with and building parsing combinator libraries. Given a few simple instances, you get access to a large number of canned definitions. Instances exist for the parsers provided by @code{parsec}, @code{attoparsec} and @code{base}'s @code{Text.Read}.") (license license:bsd-3))) (define-public ghc-path (package (name "ghc-path") (version "0.9.2") (source (origin (method url-fetch) (uri (hackage-uri "path" version)) (sha256 (base32 "15xxsjdxxqxnh20iqhprbdyhldk2igl5gd4ld6hhk9nqgwqdcr0f")))) (build-system haskell-build-system) (properties '((upstream-name . "path"))) (inputs (list ghc-aeson ghc-hashable)) (native-inputs (list ghc-hspec ghc-quickcheck ghc-genvalidity ghc-genvalidity-property ghc-genvalidity-hspec ghc-hspec ghc-validity)) (home-page "https://hackage.haskell.org/package/path") (synopsis "Support for well-typed paths") (description "This package introduces a type for paths upholding useful invariants.") (license license:bsd-3))) (define-public ghc-path-io (package (name "ghc-path-io") (version "1.7.0") (source (origin (method url-fetch) (uri (hackage-uri "path-io" version)) (sha256 (base32 "1jr1inh3x0a42rdh4q0jipbw8jsprdza1j5xkzd7nxcq0a143g9l")))) (build-system haskell-build-system) (properties '((upstream-name . "path-io"))) (inputs (list ghc-dlist ghc-path ghc-temporary ghc-unix-compat)) (native-inputs (list ghc-hspec)) (home-page "https://github.com/mrkkrp/path-io") (synopsis "Functions for manipulating well-typed paths") (description "This package provides an interface to the @code{directory} package for users of @code{path}. It also implements some missing stuff like recursive scanning and copying of directories, working with temporary files/directories, and more.") (license license:bsd-3))) (define-public ghc-paths (package (name "ghc-paths") (version "0.1.0.12") (outputs '("out" "doc")) (source (origin (method url-fetch) (uri (hackage-uri "ghc-paths" version)) (sha256 (base32 "1164w9pqnf7rjm05mmfjznz7rrn415blrkk1kjc0gjvks1vfdjvf")))) (build-system haskell-build-system) (properties '((upstream-name . "ghc-paths"))) (home-page "https://github.com/simonmar/ghc-paths") (synopsis "Knowledge of GHC's installation directories") (description "Knowledge of GHC's installation directories.") (license license:bsd-3))) (define-public ghc-patience (package (name "ghc-patience") (version "0.3") (source (origin (method url-fetch) (uri (hackage-uri "patience" version)) (sha256 (base32 "1i1b37lgi31c17yrjyf8pdm4nf5lq8vw90z3rri78hf0k66d0p3i")))) (build-system haskell-build-system) (properties '((upstream-name . "patience"))) (home-page "https://hackage.haskell.org/package/patience") (synopsis "Patience diff and longest increasing subsequence") (description "This library implements the 'patience diff' algorithm, as well as the patience algorithm for the longest increasing subsequence problem. Patience diff computes the difference between two lists, for example the lines of two versions of a source file. It provides a good balance between performance, nice output for humans, and simplicity of implementation.") (license license:bsd-3))) (define-public ghc-pattern-arrows (package (name "ghc-pattern-arrows") (version "0.0.2") (source (origin (method url-fetch) (uri (hackage-uri "pattern-arrows" version)) (sha256 (base32 "13q7bj19hd60rnjfc05wxlyck8llxy11z3mns8kxg197wxrdkhkg")))) (build-system haskell-build-system) (properties '((upstream-name . "pattern-arrows"))) (home-page "https://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html") (synopsis "Arrows for Pretty Printing") (description "A library for generating concise pretty printers based on precedence rules.") (license license:expat))) (define-public ghc-pcre-light (package (name "ghc-pcre-light") (version "0.4.1.0") (source (origin (method url-fetch) (uri (hackage-uri "pcre-light" version)) (sha256 (base32 "0lqvsmc6bfhdv6igm3fmw8nklyhw3j3jsl0s1k6r3fhb6ambzxhn")))) (build-system haskell-build-system) (properties '((upstream-name . "pcre-light"))) (arguments `(#:extra-directories ("pcre"))) (inputs (list pcre)) (native-inputs (list pkg-config ghc-hunit)) (home-page "https://github.com/Daniel-Diaz/pcre-light") (synopsis "Haskell library for Perl 5 compatible regular expressions") (description "This package provides a small, efficient, and portable regex library for Perl 5 compatible regular expressions. The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.") (license license:bsd-3))) (define-public ghc-peano (package (name "ghc-peano") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "peano" version)) (sha256 (base32 "0yzcxrl41dacvx2wkyxjj7hgvz56l4qb59r4h9rmaqd7jcwx5z9i")))) (build-system haskell-build-system) (arguments `(#:cabal-revision ("3" "0wl22dnz6ld300cg6id3lw991bp8kdfi8h0nbv37vn79i1zdcj5n"))) (home-page "https://hackage.haskell.org/package/peano") (synopsis "Peano numbers") (description "Provides an efficient Haskell implementation of Peano numbers") (license license:bsd-3))) (define-public ghc-persistent (package (name "ghc-persistent") (version "2.13.3.5") (source (origin (method url-fetch) (uri (hackage-uri "persistent" version)) (sha256 (base32 "0z69yvk0rd29dp5qdhi4p587b891y90azrzzpa3g10cxp3gyywvm")) (patches (search-patches "ghc-persistent-fix-32bit.patch")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent"))) (inputs (list ghc-conduit ghc-aeson ghc-attoparsec ghc-base64-bytestring ghc-blaze-html ghc-fast-logger ghc-http-api-data ghc-lift-type ghc-monad-logger ghc-path-pieces ghc-resource-pool ghc-resourcet ghc-scientific ghc-silently ghc-th-lift-instances ghc-unliftio ghc-unliftio-core ghc-unordered-containers ghc-vault ghc-vector)) (native-inputs (list ghc-hspec ghc-quickcheck ghc-quickcheck-instances ghc-shakespeare)) (arguments `(#:cabal-revision ("3" "0kyipwaspzah6f88s51d61kr8i9g05grm2g0lnnw28jp06nggg5d"))) (home-page "http://www.yesodweb.com/book/persistent") (synopsis "Type-safe, multi-backend data serialization for Haskell") (description "This Haskell package allows Haskell programs to access data storage systems like PostgreSQL, SQLite, and MariaDB in a type-safe way.") (license license:expat))) (define-public ghc-persistent-sqlite (package (name "ghc-persistent-sqlite") (version "2.13.1.1") (source (origin (method url-fetch) (uri (hackage-uri "persistent-sqlite" version)) (sha256 (base32 "0a7s0znm4580spgadiqy14dhvm2kzbh6v3kc4px41yyk8br6vnpj")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-sqlite"))) (inputs (list ghc-persistent ghc-aeson ghc-conduit ghc-microlens-th ghc-monad-logger ghc-resource-pool ghc-resourcet ghc-unliftio-core ghc-unordered-containers)) (native-inputs (list ghc-persistent-test ghc-fast-logger ghc-hspec ghc-hunit ghc-microlens ghc-quickcheck ghc-system-fileio ghc-system-filepath ghc-temporary)) (arguments (list #:tests? #f)) ; ghc-persistent-test is too old. (home-page "http://www.yesodweb.com/book/persistent") (synopsis "Backend for the persistent library using sqlite3") (description "This Haskell package includes a thin sqlite3 wrapper based on the direct-sqlite package, as well as the entire C library, so there are no system dependencies.") (license license:expat))) (define-public ghc-persistent-template (package (name "ghc-persistent-template") (version "2.12.0.0") (source (origin (method url-fetch) (uri (hackage-uri "persistent-template" version)) (sha256 (base32 "0c9cs27j43azimj74s2m2cdks87682ibpy1xbyzvygipgmb8nj6w")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-template"))) (inputs (list ghc-persistent ghc-aeson ghc-http-api-data ghc-monad-control ghc-monad-logger ghc-path-pieces ghc-th-lift-instances ghc-unordered-containers)) (native-inputs (list ghc-hspec ghc-quickcheck)) (home-page "https://www.yesodweb.com/book/persistent") (synopsis "Type-safe, non-relational, multi-backend persistence") (description "This Haskell package provides interfaces and helper functions for the ghc-persistent package.") (license license:expat))) (define-public ghc-persistent-test (package (name "ghc-persistent-test") (version "2.13.1.2") (source (origin (method url-fetch) (uri (hackage-uri "persistent-test" version)) (sha256 (base32 "0cah2gyp5lm9hipm3wvcxnl14cmq51dajzcw3wcf9xd19sbm4k49")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-test"))) (inputs (list ghc-aeson ghc-blaze-html ghc-conduit ghc-monad-control ghc-monad-logger ghc-path-pieces ghc-persistent ghc-persistent-template ghc-random ghc-resourcet ghc-transformers-base ghc-unliftio ghc-unliftio-core ghc-unordered-containers)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances ghc-hspec ghc-hspec-expectations ghc-hunit)) (home-page "https://www.yesodweb.com/book/persistent") (synopsis "Tests for the Persistent database library") (description "This is only for use in developing libraries that should conform to the persistent interface, not for users of the persistent suite of database libraries.") (license license:expat))) (define-public ghc-pgp-wordlist (package (name "ghc-pgp-wordlist") (version "0.1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "pgp-wordlist" version)) (sha256 (base32 "15g6qh0fb7kjj3l0w8cama7cxgnhnhybw760md9yy7cqfq15cfzg")))) (build-system haskell-build-system) (properties '((upstream-name . "pgp-wordlist"))) (inputs (list ghc-vector)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-doctest)) (home-page "https://github.com/quchen/pgp-wordlist") (synopsis "Translate between binary data and a human-readable collection of words") (description "The PGP Word List consists of two phonetic alphabets, each with one word per possible byte value. A string of bytes is translated with these alphabets, alternating between them at each byte. The PGP words corresponding to the bytes 5B 1D CA 6E are \"erase breakaway spellbind headwaters\", for example. For further information, see @url{http://en.wikipedia.org/wiki/PGP_word_list}.") (license license:bsd-3))) (define-public ghc-pipes (package (name "ghc-pipes") (version "4.3.16") (source (origin (method url-fetch) (uri (hackage-uri "pipes" version)) (sha256 (base32 "163lx5sf68zx5kik5h1fjsyckwr9shdsn5k2dsjq3mhg077nxqgl")))) (build-system haskell-build-system) (properties '((upstream-name . "pipes"))) (inputs (list ghc-exceptions ghc-mmorph ghc-void ghc-semigroups)) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2)) (arguments `(#:cabal-revision ("6" "16s8a1ijakhsk73ny2vrw6a8r2dszgncd0wk735ii6csg3l2c9pm"))) (home-page "https://hackage.haskell.org/package/pipes") (synopsis "Compositional pipelines") (description "A clean and powerful stream processing library that lets you build and connect reusable streaming components. Advantages over traditional streaming libraries: @itemize @item Concise API: Use simple commands like @code{for}, (@code{>->}), @code{await}, and @code{yield} @item Blazing fast: Implementation tuned for speed, including shortcut fusion @item Lightweight Dependency: pipes is small and compiles very rapidly, including dependencies @item Elegant semantics: Use practical category theory @item ListT: Correct implementation of @code{ListT} that interconverts with pipes @item Bidirectionality: Implement duplex channels @end itemize") (license license:bsd-3))) (define-public ghc-pointedlist (package (name "ghc-pointedlist") (version "0.6.1") (source (origin (method url-fetch) (uri (hackage-uri "pointedlist" version)) (sha256 (base32 "16xsrzqql7i4z6a3xy07sqnbyqdmcar1jiacla58y4mvkkwb0g3l")))) (build-system haskell-build-system) (properties '((upstream-name . "pointedlist"))) (home-page "https://hackage.haskell.org/package/pointedlist") (synopsis "Zipper-like comonad which works as a list, tracking a position") (description "A PointedList tracks the position in a non-empty list which works similarly to a zipper. A current item is always required, and therefore the list may never be empty. A circular PointedList wraps around to the other end when progressing past the actual edge.") (license license:bsd-3))) (define-public ghc-polyparse (package (name "ghc-polyparse") (version "1.13") (source (origin (method url-fetch) (uri (hackage-uri "polyparse" version)) (sha256 (base32 "0yvhg718dlksiw3v27m2d8m1sn4r4f5s0p56zq3lynhy1sc74k0w")))) (build-system haskell-build-system) (properties '((upstream-name . "polyparse"))) (arguments `(#:cabal-revision ("5" "05qrn5pfdy45x1nkx7dvhnxs9j6d6cssws4kwn2sl3n9qmagr8mc"))) (home-page "http://code.haskell.org/~malcolm/polyparse/") (synopsis "Alternative parser combinator libraries") (description "This package provides a variety of alternative parser combinator libraries, including the original HuttonMeijer set. The Poly sets have features like good error reporting, arbitrary token type, running state, lazy parsing, and so on. Finally, Text.Parse is a proposed replacement for the standard Read class, for better deserialisation of Haskell values from Strings.") (license license:lgpl2.1))) (define-public ghc-pqueue (package (name "ghc-pqueue") (version "1.4.3.0") (source (origin (method url-fetch) (uri (hackage-uri "pqueue" version)) (sha256 (base32 "0kl608jw0xz0n4ysw7p3cvlm1s71xrysw8862cddrzbr38bv8jvq")))) (build-system haskell-build-system) (properties '((upstream-name . "pqueue"))) (inputs (list ghc-indexed-traversable)) (native-inputs (list ghc-tasty ghc-tasty-quickcheck)) (home-page "https://hackage.haskell.org/package/pqueue") (synopsis "Reliable, persistent, fast priority queues") (description "This package provides a fast, reliable priority queue implementation based on a binomial heap.") (license license:bsd-3))) (define-public ghc-prelude-extras (package (name "ghc-prelude-extras") (version "0.4.0.3") (source (origin (method url-fetch) (uri (hackage-uri "prelude-extras" version)) (sha256 (base32 "0xzqdf3nl2h0ra4gnslm1m1nsxlsgc0hh6ky3vn578vh11zhifq9")))) (build-system haskell-build-system) (properties '((upstream-name . "prelude-extras"))) (home-page "https://github.com/ekmett/prelude-extras") (synopsis "Higher order versions of Prelude classes") (description "This library provides higher order versions of @code{Prelude} classes to ease programming with polymorphic recursion and reduce @code{UndecidableInstances}.") (license license:bsd-3))) (define-public ghc-prettyclass (package (name "ghc-prettyclass") (version "1.0.0.0") (source (origin (method url-fetch) (uri (hackage-uri "prettyclass" version)) (sha256 (base32 "11l9ajci7nh1r547hx8hgxrhq8mh5gdq30pdf845wvilg9p48dz5")))) (build-system haskell-build-system) (properties '((upstream-name . "prettyclass"))) (home-page "https://hackage.haskell.org/package/prettyclass") (synopsis "Pretty printing class similar to Show") (description "This package provides a pretty printing class similar to @code{Show}, based on the HughesPJ pretty printing library. It provides the pretty printing class and instances for the Prelude types.") (license license:bsd-3))) (define-public ghc-prettyprinter (package (name "ghc-prettyprinter") (version "1.7.1") (source (origin (method url-fetch) (uri (hackage-uri "prettyprinter" version)) (sha256 (base32 "0i8b3wjjpdvp5b857j065jwyrpgcnzgk75imrj7i3yhl668acvjy")))) (build-system haskell-build-system) (properties '((upstream-name . "prettyprinter"))) (native-inputs (list ghc-doctest ghc-pgp-wordlist ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://github.com/quchen/prettyprinter") (synopsis "Modern, easy to use, well-documented, extensible pretty-printer") (description "A prettyprinter/text rendering engine. Easy to use, well-documented, ANSI terminal backend exists, HTML backend is trivial to implement, no name clashes, @code{Text}-based, extensible.") (license license:bsd-2))) (define-public ghc-prettyprinter-ansi-terminal (package (name "ghc-prettyprinter-ansi-terminal") (version "1.1.3") (source (origin (method url-fetch) (uri (hackage-uri "prettyprinter-ansi-terminal" version)) (sha256 (base32 "1cqxbcmy9ykk4pssq5hp6h51g2h547zfz549awh0c1fni8q3jdw1")))) (build-system haskell-build-system) (properties '((upstream-name . "prettyprinter-ansi-terminal"))) (inputs (list ghc-ansi-terminal ghc-prettyprinter)) (native-inputs (list ghc-doctest)) (home-page "https://github.com/quchen/prettyprinter") (synopsis "ANSI terminal backend for the prettyprinter package") (description "ANSI terminal backend for the prettyprinter package.") (license license:bsd-2))) (define-public ghc-pretty-hex (package (name "ghc-pretty-hex") (version "1.1") (source (origin (method url-fetch) (uri (hackage-uri "pretty-hex" version)) (sha256 (base32 "0c8pa0rdb2q8rf4acy4gww0hj5lrzclzdh52yi2aiaaij4lqzir7")))) (build-system haskell-build-system) (properties '((upstream-name . "pretty-hex"))) (home-page "https://github.com/GaloisInc/hexdump") (synopsis "Haskell library for hex dumps of ByteStrings") (description "This Haskell library generates pretty hex dumps of ByteStrings in the style of other common *nix hex dump tools.") (license license:bsd-3))) (define-public ghc-pretty-show (package (name "ghc-pretty-show") (version "1.10") (source (origin (method url-fetch) (uri (hackage-uri "pretty-show" version)) (sha256 (base32 "1lkgvbv00v1amvpqli6y4dzsbs25l4v3wlagvhwx8qxhw2390zrh")))) (build-system haskell-build-system) (properties '((upstream-name . "pretty-show"))) (inputs (list ghc-haskell-lexer ghc-happy)) (home-page "https://wiki.github.com/yav/pretty-show") (synopsis "Tools for working with derived `Show` instances") (description "This package provides a library and an executable for working with derived @code{Show} instances. By using the library, derived @code{Show} instances can be parsed into a generic data structure. The @code{ppsh} tool uses the library to produce human-readable versions of @code{Show} instances, which can be quite handy for debugging Haskell programs. We can also render complex generic values into an interactive Html page, for easier examination.") (license license:expat))) (define-public ghc-pretty-simple (package (name "ghc-pretty-simple") (version "4.1.2.0") (source (origin (method url-fetch) (uri (hackage-uri "pretty-simple" version)) (sha256 (base32 "0di7n3kq2bl0xqj9b1xxf3jznyy6cfyjs6hf6g0bi72rf4wprd1w")))) (build-system haskell-build-system) (properties '((upstream-name . "pretty-simple"))) (inputs (list ghc-prettyprinter ghc-prettyprinter-ansi-terminal ghc-optparse-applicative ghc-aeson)) (native-inputs (list ghc-doctest ghc-glob ghc-quickcheck)) (arguments (list #:tests? #f)) ; Could not find module ‘Build_doctests’ (home-page "https://github.com/cdepillabout/pretty-simple") (synopsis "Pretty printer for data types with a 'Show' instance") (description "Pretty-simple is a pretty printer for Haskell data types that have a Show instance.") (license license:bsd-3))) (define-public ghc-primitive (package (name "ghc-primitive") (version "0.7.3.0") (source (origin (method url-fetch) (uri (hackage-uri "primitive" version)) (sha256 (base32 "1p01fmw8yi578rvwicrlpbfkbfsv7fbnzb88a7vggrhygykgs31w")))) (build-system haskell-build-system) (properties '((upstream-name . "primitive"))) ; (native-inputs (list ghc-base-orphans ; ghc-quickcheck-classes-base ; ghc-quickcheck ; ghc-tasty ; ghc-tasty-quickcheck ; ghc-tagged ; ghc-transformers-compat)) (arguments `(#:tests? #f ; Cannot resolve package cycle. #:cabal-revision ("2" "0xh1m8nybz760c71gm1w9fga25y2rys1211q77v6wagdsas634yf"))) (home-page "https://github.com/haskell/primitive") (synopsis "Primitive memory-related operations") (description "This package provides various primitive memory-related operations.") (license license:bsd-3))) (define-public ghc-primitive-addr (package (name "ghc-primitive-addr") (version "0.1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "primitive-addr" version)) (sha256 (base32 "06r1p56wm8rbjxnlaqbmc3rbsj1rsv5scwnh80lsn0xw56jc70a2")))) (build-system haskell-build-system) (properties '((upstream-name . "primitive-addr"))) (inputs (list ghc-primitive)) (home-page "https://github.com/haskell-primitive/primitive-addr") (synopsis "Addresses to unmanaged memory") (description "This library provides the @code{Data.Primitive.Addr} module that was a part of the @code{primitive} library before @code{primitive-0.7.0.0}.") (license license:bsd-3))) (define-public ghc-process-extras (package (name "ghc-process-extras") (version "0.7.4") (source (origin (method url-fetch) (uri (hackage-uri "process-extras" version)) (sha256 (base32 "0klqgr37f1z2z6i0a9b0giapmq0p35l5k9kz1p7f0k1597w7agi9")))) (build-system haskell-build-system) (properties '((upstream-name . "process-extras"))) (inputs (list ghc-data-default ghc-generic-deriving ghc-hunit ghc-listlike)) (home-page "https://github.com/seereason/process-extras") (synopsis "Extra tools for managing processes") (description "This package extends @url{https://hackage.haskell.org/package/process}. It allows you to read process input and output as ByteStrings or Text, or write your own ProcessOutput instance. It also provides lazy process input and output, and a ProcessMaker class for more flexibility in the process creation API.") (license license:expat))) (define-public ghc-profunctors (package (name "ghc-profunctors") (version "5.6.2") (source (origin (method url-fetch) (uri (hackage-uri "profunctors" version)) (sha256 (base32 "0an9v003ivxmjid0s51qznbjhd5fsa1dkcfsrhxllnjja1xmv5b5")))) (build-system haskell-build-system) (properties '((upstream-name . "profunctors"))) (outputs '("out" "doc")) (inputs (list ghc-base-orphans ghc-bifunctors ghc-comonad ghc-contravariant ghc-distributive ghc-semigroups ghc-tagged)) (home-page "https://github.com/ekmett/profunctors/") (synopsis "Profunctors for Haskell") (description "This library provides profunctors for Haskell.") (license license:bsd-3))) (define-public ghc-indexed-profunctors (package (name "ghc-indexed-profunctors") (version "0.1.1") (source (origin (method url-fetch) (uri (hackage-uri "indexed-profunctors" version)) (sha256 (base32 "1cbccbvrx73drr1jf3yyw0rp1mcfv3jc1rvdcby5xxx4ja543fjs")))) (build-system haskell-build-system) (properties '((upstream-name . "indexed-profunctors"))) (home-page "https://hackage.haskell.org/package/indexed-profunctors") (synopsis "Utilities for indexed profunctors") (description "This package contains basic definitions related to indexed profunctors. These are primarily intended as internal utilities to support the @code{optics} and @code{generic-lens} package families.") (license license:bsd-3))) (define-public ghc-project-template (package (name "ghc-project-template") (version "0.2.1.0") (source (origin (method url-fetch) (uri (hackage-uri "project-template" version)) (sha256 (base32 "0ac43x36i6b595jhflif1qqhri1rrqw90ama5n7rsh0ffnzyb69d")))) (build-system haskell-build-system) (properties '((upstream-name . "project-template"))) (inputs (list ghc-base64-bytestring ghc-conduit ghc-conduit-extra ghc-resourcet)) (native-inputs (list ghc-hspec hspec-discover ghc-quickcheck)) (home-page "https://github.com/fpco/haskell-ide") (synopsis "Specify Haskell project templates and generate files") (description "Haskell library for both generating and consuming project templates. ost IDEs provide the concept of a project template: instead of writing all of the code for a project from scratch, you select a template, answer a few questions, and a bunch of files are automatically generated. project-template tries to provide a canonical Haskell library for implementing the ideal templating system.") (license license:bsd-3))) (define-public ghc-protolude (package (name "ghc-protolude") (version "0.3.3") (source (origin (method url-fetch) (uri (hackage-uri "protolude" version)) (sha256 (base32 "0ihsjx48p9dgsp0i0l73h16mycnba40hyh7412jv3xz9qz9dwfbc")))) (build-system haskell-build-system) (properties '((upstream-name . "protolude"))) (inputs (list ghc-async ghc-hashable ghc-mtl-compat ghc-transformers-compat)) (arguments `(#:cabal-revision ("2" "0f949f93wml7h7na9d1n9lvignwphxr2r18jwmpy33g0dxgn21h1"))) (home-page "https://github.com/sdiehl/protolude") (synopsis "Sensible set of defaults for writing custom Preludes") (description "Protolude gives you sensible defaults for writing custom Preludes to replace the standard one provided by GHC.") (license license:expat))) (define-public ghc-psqueue (package (name "ghc-psqueue") (version "1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "PSQueue" version)) (sha256 (base32 "02pgqzwxndi8cwa5fw668gfsh7z3lzbygkgcsf56bwrxwqjyz4bi")))) (build-system haskell-build-system) (properties '((upstream-name . "PSQueue"))) (native-inputs (list ghc-quickcheck)) (arguments '(#:cabal-revision ("1" "02a5g59sc9jh3v4pibhjpijv8lsbiydznrpqyin7qhwsyc0p813a"))) (home-page "https://hackage.haskell.org/package/PSQueue") (synopsis "Priority search queue") (description "A @dfn{priority search queue} efficiently supports the operations of both a search tree and a priority queue. A @code{Binding} is a product of a key and a priority. Bindings can be inserted, deleted, modified and queried in logarithmic time, and the binding with the least priority can be retrieved in constant time. A queue can be built from a list of bindings, sorted by keys, in linear time.") (license license:bsd-3))) (define-public ghc-psqueues (package (name "ghc-psqueues") (version "0.2.7.3") (source (origin (method url-fetch) (uri (hackage-uri "psqueues" version)) (sha256 (base32 "1cmz7spfzx7niglmsphnndh0m4b8njkn0fhb9nshbnbq6nx515yh")))) (build-system haskell-build-system) (properties '((upstream-name . "psqueues"))) (inputs (list ghc-hashable)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-tagged)) (home-page "https://hackage.haskell.org/package/psqueues") (synopsis "Pure priority search queues") (description "The psqueues package provides @uref{https://en.wikipedia.org/wiki/Priority_queue, Priority Search Queues} in three different flavors: @itemize @item @code{OrdPSQ k p v}, which uses the @code{Ord k} instance to provide fast insertion, deletion and lookup. This implementation is based on Ralf Hinze's @uref{http://citeseer.ist.psu.edu/hinze01simple.html, A Simple Implementation Technique for Priority Search Queues}. Hence, it is similar to the @uref{https://hackage.haskell.org/package/PSQueue, PSQueue} library, although it is considerably faster and provides a slightly different API. @item @code{IntPSQ p v} is a far more efficient implementation. It fixes the key type to @code{Int} and uses a @code{https://en.wikipedia.org/wiki/Radix_tree, radix tree} (like @code{IntMap}) with an additional min-heap property. @item @code{HashPSQ k p v} is a fairly straightforward extension of @code{IntPSQ}: it simply uses the keys' hashes as indices in the @code{IntPSQ}. If there are any hash collisions, it uses an @code{OrdPSQ} to resolve those. The performance of this implementation is comparable to that of @code{IntPSQ}, but it is more widely applicable since the keys are not restricted to @code{Int}, but rather to any @code{Hashable} datatype. @end itemize Each of the three implementations provides the same API, so they can be used interchangeably. Typical applications of Priority Search Queues include: @itemize @item Caches, and more specifically LRU Caches; @item Schedulers; @item Pathfinding algorithms, such as Dijkstra's and A*. @end itemize") (license license:bsd-3))) (define-public ghc-pwstore-fast (package (name "ghc-pwstore-fast") (version "2.4.4") (source (origin (method url-fetch) (uri (hackage-uri "pwstore-fast" version)) (sha256 (base32 "1cpvlwzg3qznhygrr78f75p65mnljd9v5cvnagfxjqppnrkay6bj")))) (build-system haskell-build-system) (properties '((upstream-name . "pwstore-fast"))) (inputs (list ghc-base64-bytestring ghc-cryptohash ghc-random ghc-byteable)) (home-page "https://github.com/PeterScott/pwstore") (synopsis "Secure password storage") (description "To store passwords securely, they should be salted, then hashed with a slow hash function. This library uses PBKDF1-SHA256, and handles all the details. It uses the cryptohash package for speed; if you need a pure Haskell library, pwstore-purehaskell has the exact same API, but uses only pure Haskell. It is about 25 times slower than this package, but still quite usable.") (license license:bsd-3))) (define-public ghc-random (package (name "ghc-random") (version "1.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "random" version)) (sha256 (base32 "0xlv1k4sj87akwvj54kq4nrfkzi6qcz1941bf78pnkbaxpvp44iy")))) (build-system haskell-build-system) (properties '((upstream-name . "random"))) ;; ghc-random is widely used and causes quite a few loops, so disable tests. (arguments (list #:tests? #f)) (inputs (list ghc-splitmix-bootstrap)) ; (native-inputs (list ghc-doctest ; ghc-mwc-random ; ghc-primitive ; ghc-unliftio-bootstrap ; ghc-vector ; ghc-smallcheck ; ghc-tasty ; ghc-tasty-smallcheck ; ghc-tasty-hunit ; ghc-tasty ; ghc-tasty-inspection-testing)) (home-page "https://hackage.haskell.org/package/random") (synopsis "Random number library") (description "This package provides a basic random number generation library, including the ability to split random number generators.") (license license:bsd-3))) (define-public ghc-random-bootstrap (package (inherit ghc-random) (name "ghc-random-bootstrap") (arguments `(#:tests? #f ,@(package-arguments ghc-random))) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-raw-strings-qq (package (name "ghc-raw-strings-qq") (version "1.1") (source (origin (method url-fetch) (uri (hackage-uri "raw-strings-qq" version)) (sha256 (base32 "1lxy1wy3awf52968iy5y9r5z4qgnn2sxkdrh7js3m9gadb11w09f")))) (build-system haskell-build-system) (properties '((upstream-name . "raw-strings-qq"))) (native-inputs (list ghc-hunit)) (home-page "https://github.com/23Skidoo/raw-strings-qq") (synopsis "Raw string literals for Haskell") (description "This package provides a quasiquoter for raw string literals, i.e. string literals that don't recognise the standard escape sequences. Basically, they make your code more readable by freeing you from the responsibility to escape backslashes. They are useful when working with regular expressions, DOS/Windows paths and markup languages (such as XML).") (license license:bsd-3))) (define-public ghc-readable (package (name "ghc-readable") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "readable" version)) (sha256 (base32 "1ja39cg26wy2fs00gi12x7iq5k8i366pbqi3p916skfa5jnkfc3h")))) (build-system haskell-build-system) (properties '((upstream-name . "readable"))) (arguments `(#:cabal-revision ("1" "0dywlvxjszqa1dj5r1cva0viv2l1hm8mw75zddnf96pfpd00fmga"))) (home-page "https://github.com/mightybyte/readable") (synopsis "Type class for reading from Text and ByteString") (description "This package provides a @code{Readable} type class for reading data types from @code{ByteString} and @code{Text}. It also includes efficient implementations for common data types.") (license license:bsd-3))) (define-public ghc-rebase (package (name "ghc-rebase") (version "1.16.1") (source (origin (method url-fetch) (uri (hackage-uri "rebase" version)) (sha256 (base32 "0mb1x5p3lvfhxsrnmkhsv6f4rd1cxp6m3qg6kyz30svrbwxsvvkz")))) (build-system haskell-build-system) (properties '((upstream-name . "rebase"))) (inputs (list ghc-bifunctors ghc-contravariant ghc-comonad ghc-dlist ghc-either ghc-groups ghc-hashable ghc-invariant ghc-profunctors ghc-scientific ghc-selective ghc-semigroupoids ghc-time-compat ghc-unordered-containers ghc-uuid-types ghc-vector ghc-vector-instances ghc-void)) (arguments `(#:cabal-revision ("1" "1igpk9gz54jfvf5m69xcp7hl567c4lkbmwhzylcbx0i1n0pd7i2n"))) (home-page "https://github.com/nikita-volkov/rebase") (synopsis "Progressive alternative to the base package for Haskell") (description "This Haskell package is intended for those who are tired of keeping long lists of dependencies to the same essential libraries in each package as well as the endless imports of the same APIs all over again. It also supports the modern tendencies in the language. To solve those problems this package does the following: @itemize @item Reexport the original APIs under the @code{Rebase} namespace. @item Export all the possible non-conflicting symbols from the @code{Rebase.Prelude} module. @item Give priority to the modern practices in the conflicting cases. @end itemize The policy behind the package is only to reexport the non-ambiguous and non-controversial APIs, which the community has obviously settled on. The package is intended to rapidly evolve with the contribution from the community, with the missing features being added with pull-requests.") (license license:expat))) (define-public ghc-reducers (package (name "ghc-reducers") (version "3.12.4") (source (origin (method url-fetch) (uri (hackage-uri "reducers" version)) (sha256 (base32 "0hsycdir52jdijnnvc77jj971fjrrc722v952wr62ivrvx2zarn0")))) (build-system haskell-build-system) (properties '((upstream-name . "reducers"))) (inputs (list ghc-fingertree ghc-hashable ghc-unordered-containers ghc-semigroupoids ghc-semigroups)) (arguments `(#:cabal-revision ("2" "1ji6rp0f857d0vp2kjqcck7avrjgqvqjgwnhdcxs3zbjkwpqyhfb"))) (home-page "https://github.com/ekmett/reducers/") (synopsis "Semigroups, specialized containers and a general map/reduce framework") (description "This library provides various semigroups, specialized containers and a general map/reduce framework for Haskell.") (license license:bsd-3))) (define-public ghc-refact (package (name "ghc-refact") (version "0.3.0.2") (source (origin (method url-fetch) (uri (hackage-uri "refact" version)) (sha256 (base32 "0v0zxcx29b8jxs2kgy9csykqcp8kzhdvyylw2xfwmj4pfxr2kl0a")))) (build-system haskell-build-system) (properties '((upstream-name . "refact"))) (home-page "https://hackage.haskell.org/package/refact") (synopsis "Specify refactorings to perform with apply-refact") (description "This library provides a datatype which can be interpreted by @code{apply-refact}. It exists as a separate library so that applications can specify refactorings without depending on GHC.") (license license:bsd-3))) (define-public ghc-reflection (package (name "ghc-reflection") (version "2.1.7") (source (origin (method url-fetch) (uri (hackage-uri "reflection" version)) (sha256 (base32 "1z8mwkqb0ljxpc45hkj0jiyhjfl1frpxqhdnp0xm6w98n2l1ifvc")))) (build-system haskell-build-system) (properties '((upstream-name . "reflection"))) (inputs (list ghc-tagged)) (native-inputs (list ghc-hspec ghc-quickcheck hspec-discover)) (arguments `(#:cabal-revision ("1" "011s5ci385yccv576d1mh0n7v5k2pbmqkx1swlb5sq1sk3qb7dgj"))) (home-page "https://github.com/ekmett/reflection") (synopsis "Reify arbitrary terms into types that can be reflected back into terms") (description "This package addresses the 'configuration problem' which is propagating configurations that are available at run-time, allowing multiple configurations to coexist without resorting to mutable global variables or @code{System.IO.Unsafe.unsafePerformIO}.") (license license:bsd-3))) (define-public ghc-reflex (package (name "ghc-reflex") (version "0.8.2.2") (source (origin (method url-fetch) (uri (hackage-uri "reflex" version)) (sha256 (base32 "1add5bcsyq2k02w2q0ifbyfcvcic1hmjdbgxg8ajd5riam0lhb16")))) (build-system haskell-build-system) (properties '((upstream-name . "reflex"))) (inputs (list ghc-memotrie ghc-bifunctors ghc-comonad ghc-commutative-semigroups ghc-constraints ghc-constraints-extras ghc-data-default ghc-dependent-map ghc-exception-transformers ghc-lens ghc-mmorph ghc-monad-control ghc-patch ghc-prim-uniq ghc-primitive ghc-profunctors ghc-random ghc-ref-tf ghc-reflection ghc-semigroupoids ghc-syb ghc-unbounded-delays ghc-witherable ghc-these ghc-semialign ghc-monoidal-containers ghc-dependent-sum ghc-haskell-src-exts ghc-haskell-src-meta)) (native-inputs (list hlint ghc-split ghc-filemanip ghc-these-lens ghc-hspec ghc-proctest)) (arguments '(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "reflex.cabal" (("\\bmmorph >= 1\\.0 && < 1\\.2,") "mmorph,"))))))) (home-page "https://reflex-frp.org") (synopsis "Higher-order functional reactive programming") (description "This library lets you write interactive programs without callbacks or side-effects. Functional Reactive Programming (FRP) uses composable events and time-varying values to describe interactive systems as pure functions. Just like other pure functional code, functional reactive code is easier to get right on the first try, maintain, and reuse. Reflex is a fully-deterministic, higher-order FRP interface and an engine that efficiently implements that interface.") (license license:bsd-3))) (define-public ghc-reflex-sdl2 (let ((commit "6dadf2c4f383b8a58fcd73616996b219c4f93972") (revision "1")) (package (name "ghc-reflex-sdl2") (version (git-version "0.3.0.2" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/schell/reflex-sdl2") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "06lxfgp18l1car6wd07mbjn4yblnp89acf1i67nd815p2hx0ihbz")))) (build-system haskell-build-system) (properties '((upstream-name . "reflex-sdl2"))) (inputs (list ghc-async ghc-dependent-sum ghc-exception-transformers ghc-ref-tf ghc-primitive ghc-reflex ghc-sdl2)) (arguments '(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "reflex-sdl2.cabal" (("\\bref-tf +>= 0\\.4 +&& < 0\\.5\\b") "ref-tf"))))))) (home-page "https://github.com/schell/reflex-sdl2") (synopsis "SDL2 and Reflex functional reactive programming") (description "This package provides a minimal host for SDL2-based Reflex applications.") (license license:expat)))) (define-public ghc-regex (package (name "ghc-regex") (version "1.1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "regex" version)) (sha256 (base32 "1nzyfkqmclmawmphvksvm9l64awqgnypic4xplc2s9sjcj4h814a")))) (build-system haskell-build-system) (properties '((upstream-name . "regex"))) (inputs (list ghc-base-compat ghc-hashable ghc-regex-base ghc-regex-pcre-builtin ghc-regex-tdfa ghc-time-locale-compat ghc-unordered-containers ghc-utf8-string)) (home-page "https://regex.uk") (synopsis "Toolkit for regex-base") (description "This package provides a regular expression toolkit for @code{regex-base} with compile-time checking of regular expression syntax, data types for matches and captures, a text replacement toolkit, portable options, high-level AWK-like tools for building text processing apps, regular expression macros with parsers and test bench, comprehensive documentation, tutorials and copious examples.") (license license:bsd-3))) (define-public ghc-regex-applicative (package (name "ghc-regex-applicative") (version "0.3.4") (source (origin (method url-fetch) (uri (hackage-uri "regex-applicative" version)) (sha256 (base32 "0di66pi2kq5rrsn0k6pwakzwa0bgi9jfb2csm72kp5gzqdws8s8p")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-applicative"))) (inputs (list ghc-filtrable)) (native-inputs (list ghc-smallcheck ghc-tasty ghc-tasty-hunit ghc-tasty-smallcheck)) (home-page "https://github.com/feuerbach/regex-applicative") (synopsis "Regex-based parsing with applicative interface") (description "@code{regex-applicative} is a Haskell library for parsing using regular expressions. Parsers can be built using Applicative interface.") (license license:expat))) (define-public ghc-regex-base (package (name "ghc-regex-base") (version "0.94.0.2") (source (origin (method url-fetch) (uri (hackage-uri "regex-base" version)) (sha256 (base32 "1w9fxad1dwi040r3db9i2cjhhrl86p3hngj13ixbcnqgb27l16bv")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-base"))) (arguments `(#:cabal-revision ("1" "1k2gzjm7xz69f7zr08wh2wzb5dhb659cvimsvx0g9p8cf5f45x2g"))) (home-page "https://wiki.haskell.org/Regular_expressions") (synopsis "Replaces/Enhances Text.Regex") (description "@code{Text.Regex.Base} provides the interface API for regex-posix, regex-pcre, regex-parsec, regex-tdfa, regex-dfa.") (license license:bsd-3))) (define-public ghc-regex-compat (package (name "ghc-regex-compat") (version "0.95.2.1") (source (origin (method url-fetch) (uri (hackage-uri "regex-compat" version)) (sha256 (base32 "0ivrdrcphrz3g6nr5wbsmfiv8i82caw0kf6z5qlmlq7xf9n3hywg")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-compat"))) (inputs (list ghc-regex-base ghc-regex-posix)) (arguments `(#:cabal-revision ("2" "0ldqpdxikm17ydrkfmichflkdqdrkspv4r0qy3zbdgqf5033pj4n"))) (home-page "https://sourceforge.net/projects/lazy-regex") (synopsis "Replaces/Enhances Text.Regex") (description "This library provides one module layer over @code{regex-posix} to replace @code{Text.Regex}.") (license license:bsd-3))) (define-public ghc-regex-pcre (package (name "ghc-regex-pcre") (version "0.95.0.0") (source (origin (method url-fetch) (uri (hackage-uri "regex-pcre" version)) (sha256 (base32 "0nn76q4bsjnxim0j0d01jifmh36as9jdpcvm001a851vvq86zb8n")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-pcre"))) (arguments `(#:extra-directories ("pcre") #:cabal-revision ("3" "1mxy2y7dmv37hhsasm17x2mb9dhmzza13pc7jfrk77inpig78ib8"))) (native-inputs (list pkg-config)) (inputs (list ghc-regex-base pcre)) (home-page "https://hackage.haskell.org/package/regex-pcre") (synopsis "Enhancement of the builtin Text.Regex library") (description "This package is an enhancement of the @code{Text.Regex} library. It wraps the @code{PCRE} C library providing Perl-compatible regular expressions.") (license license:bsd-3))) (define-public ghc-regex-pcre-builtin (package (name "ghc-regex-pcre-builtin") (version "0.95.2.3.8.44") (source (origin (method url-fetch) (uri (hackage-uri "regex-pcre-builtin" version)) (sha256 (base32 "0pn55ssrwr05c9sa9jvp0knvzjksz04wn3pmzf5dz4xgbyjadkna")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-pcre-builtin"))) (inputs (list ghc-regex-base)) (home-page "https://hackage.haskell.org/package/regex-pcre-builtin") (synopsis "Enhancement of the builtin Text.Regex library") (description "This package is an enhancement of the @code{Text.Regex} library, providing the PCRE backend to accompany regex-base, with bundled code from @url{https://www.pcre.org}.") (license license:bsd-3))) (define-public ghc-regex-posix (package (name "ghc-regex-posix") (version "0.96.0.1") (source (origin (method url-fetch) (uri (hackage-uri "regex-posix" version)) (sha256 (base32 "1715b57z67q4hg0jz44wkxrxi3v7n5iagw6gw48pf8hr34wpr0n7")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-posix"))) (inputs (list ghc-regex-base)) (home-page "https://sourceforge.net/projects/lazy-regex") (synopsis "POSIX regular expressions for Haskell") (description "This library provides the POSIX regex backend used by the Haskell library @code{regex-base}.") (license license:bsd-3))) (define-public ghc-regex-tdfa (package (name "ghc-regex-tdfa") (version "1.3.2.1") (source (origin (method url-fetch) (uri (hackage-uri "regex-tdfa" version)) (sha256 (base32 "15c2gc7c0y2xv9sm586jvys2kx1dc18lzfvjzad5mm2d4yszi2sw")))) (build-system haskell-build-system) (properties '((upstream-name . "regex-tdfa"))) (inputs (list ghc-regex-base)) (native-inputs (list ghc-utf8-string ghc-doctest-parallel)) (arguments `(#:cabal-revision ("1" "1005mqjhq2blz8kqxmk84xajyqd85n91j9nraw6jrwfv11vxfvxa"))) (home-page "https://wiki.haskell.org/Regular_expressions") (synopsis "POSIX extended regular expressions in Haskell") (description "Regex-tdfa is a pure Haskell regular expression library implementing POSIX extended regular expressions. It is a \"tagged\" DFA regex engine. It is inspired by libtre.") (license license:bsd-3))) (define-public ghc-repline (package (name "ghc-repline") (version "0.4.2.0") (source (origin (method url-fetch) (uri (hackage-uri "repline" version)) (sha256 (base32 "0nldn02yqqmrxkzwzrx3v6hkb4y2hch48jkcr2qrw1dl0vqv70b1")))) (build-system haskell-build-system) (properties '((upstream-name . "repline"))) (home-page "https://github.com/sdiehl/repline") (synopsis "Haskeline wrapper for GHCi-like REPL interfaces") (description "Haskeline wrapper for GHCi-like REPL interfaces. Composable with normal mtl transformers.") (license license:expat))) (define-public ghc-rerebase (package (name "ghc-rerebase") (version "1.16.1") (source (origin (method url-fetch) (uri (hackage-uri "rerebase" version)) (sha256 (base32 "04pw2j4nh8x53axmfzp9d2plmiwxpxddgwcji0a8j24lkdyv8k32")))) (build-system haskell-build-system) (properties '((upstream-name . "rerebase"))) (inputs (list ghc-rebase)) (home-page "https://github.com/nikita-volkov/rerebase") (synopsis "Reexports from ``base'' with many other standard libraries") (description "A rich drop-in replacement for @code{base}. For details and documentation please visit @uref{https://github.com/nikita-volkov/rerebase, the project's home page}.") (license license:expat))) (define-public ghc-resolv (package (name "ghc-resolv") (version "0.1.2.0") (source (origin (method url-fetch) (uri (hackage-uri "resolv" version)) (sha256 (base32 "0wa6wsh6i52q4ah2z0hgzlks325kigch4yniz0y15nw4skxbm8l1")))) (build-system haskell-build-system) (properties '((upstream-name . "resolv"))) (arguments `(;#:tests? #f ; tasty >=1.2.3 && <1.3 || >=1.3.1 && <1.4 #:cabal-revision ("5" "0df5y8bj9bxjmqnkvpwxvb17k70g1i174xs6vfrv9f1lys7xkqk1") #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "resolv.cabal" (("\\b(tasty)\\s+[^,]+" all dep) dep))))))) (inputs (list ghc-base16-bytestring)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/haskell/hackage-security") (synopsis "Domain Name Service (DNS) lookup via @code{libresolv}") (description "This package implements an API for accessing the @uref{https://tools.ietf.org/html/rfc1035, Domain Name Service (DNS)} resolver service via the standard @code{libresolv} system library (whose API is often available directly via the standard @code{libc} C library) on Unix systems.") (license license:gpl3))) (define-public ghc-resource-pool (package (name "ghc-resource-pool") (version "0.2.3.2") (source (origin (method url-fetch) (uri (hackage-uri "resource-pool" version)) (sha256 (base32 "04mw8b9djb14zp4rdi6h7mc3zizh597ffiinfbr4m0m8psifw9w6")))) (build-system haskell-build-system) (properties '((upstream-name . "resource-pool"))) (inputs (list ghc-hashable ghc-monad-control ghc-transformers-base ghc-vector)) (home-page "https://github.com/bos/pool") (synopsis "Striped resource pooling implementation in Haskell") (description "This Haskell package provides striped pooling abstraction for managing flexibly-sized collections of resources such as database connections.") (license license:bsd-3))) (define-public ghc-resourcet (package (name "ghc-resourcet") (version "1.2.6") (source (origin (method url-fetch) (uri (hackage-uri "resourcet" version)) (sha256 (base32 "0d7xnpysrick56gxzkkj0mpblywbxaaldhziyl77am3822r3afzq")))) (build-system haskell-build-system) (properties '((upstream-name . "resourcet"))) (inputs (list ghc-unliftio-core ghc-primitive)) (native-inputs (list ghc-hspec)) (home-page "https://github.com/snoyberg/conduit") (synopsis "Deterministic allocation and freeing of scarce resources") (description "ResourceT is a monad transformer which creates a region of code where you can safely allocate resources.") (license license:bsd-3))) (define-public ghc-retry (package (name "ghc-retry") (version "0.9.3.1") (source (origin (method url-fetch) (uri (hackage-uri "retry" version)) (sha256 (base32 "1mky1dfllmx6dr1gayf636n3z5xrfmam3rhs5vx7c3wj9c8kabk2")))) (build-system haskell-build-system) (properties '((upstream-name . "retry"))) (inputs (list ghc-random ghc-mtl-compat ghc-unliftio-core)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-hunit ghc-tasty-hedgehog ghc-hedgehog)) (home-page "https://github.com/Soostone/retry") (synopsis "Retry combinators for monadic actions that may fail") (description "This package exposes combinators that can wrap arbitrary monadic actions. They run the action and potentially retry running it with some configurable delay for a configurable number of times. The purpose is to make it easier to work with IO and especially network IO actions that often experience temporary failure and warrant retrying of the original action. For example, a database query may time out for a while, in which case we should hang back for a bit and retry the query instead of simply raising an exception.") (license license:bsd-3))) (define-public ghc-rfc5051 (package (name "ghc-rfc5051") (version "0.2") (source (origin (method url-fetch) (uri (hackage-uri "rfc5051" version)) (sha256 (base32 "0nri7js5ymywh2gi3li25wrkl1nf712qhbzw5hn46fib83qsq73k")))) (build-system haskell-build-system) (properties '((upstream-name . "rfc5051"))) (home-page "https://hackage.haskell.org/package/rfc5051") (synopsis "Simple unicode collation as per RFC5051") (description "This library implements @code{unicode-casemap}, the simple, non locale-sensitive unicode collation algorithm described in RFC 5051. Proper unicode collation can be done using @code{text-icu}, but that is a big dependency that depends on a large C library, and @code{rfc5051} might be better for some purposes.") (license license:bsd-3))) (define-public ghc-rio (package (name "ghc-rio") (version "0.1.22.0") (source (origin (method url-fetch) (uri (hackage-uri "rio" version)) (sha256 (base32 "0rpc4f2yvw0y6mqz9ykm3778j6srya7ssww691kpf9nb8vddgjb6")))) (build-system haskell-build-system) (properties '((upstream-name . "rio"))) (inputs (list ghc-hashable ghc-microlens ghc-microlens-mtl ghc-primitive ghc-typed-process ghc-unliftio ghc-unliftio-core ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-hspec hspec-discover)) (home-page "https://github.com/commercialhaskell/rio#readme") (synopsis "Standard library for Haskell") (description "This package works as a prelude replacement for Haskell, providing more functionality and types out of the box than the standard prelude (such as common data types like @code{ByteString} and @code{Text}), as well as removing common ``gotchas'', like partial functions and lazy I/O. The guiding principle here is: @itemize @item If something is safe to use in general and has no expected naming conflicts, expose it. @item If something should not always be used, or has naming conflicts, expose it from another module in the hierarchy. @end itemize") (license license:expat))) (define-public ghc-roman-numerals (package (name "ghc-roman-numerals") (version "0.5.1.5") (source (origin (method url-fetch) (uri (hackage-uri "roman-numerals" version)) (sha256 (base32 "10da5vls9l5i255bapms4b2r7dnwmxgsaa1cdll2lrmid5dikixr")))) (build-system haskell-build-system) (properties '((upstream-name . "roman-numerals"))) (inputs (list ghc-base-unicode-symbols)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "roman-numerals.cabal" (("\\b(bytestring)\\s+[^,]+" all dep) dep))))))) (home-page "https://github.com/roelvandijk/roman-numerals") (synopsis "Parsing and pretty printing of Roman numerals") (description "This library provides functions for parsing and pretty printing Roman numerals. Because the notation of Roman numerals has varied through the centuries this package allows for some customisation using a configuration that is passed to the conversion functions.") (license license:bsd-3))) (define-public ghc-safe (package (name "ghc-safe") (version "0.3.19") (source (origin (method url-fetch) (uri (hackage-uri "safe" version)) (sha256 (base32 "18pp6cn9np9jgs01x9mac6wk41k34g86fx5ibfarbapqr1138115")))) (build-system haskell-build-system) (properties '((upstream-name . "safe"))) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/ndmitchell/safe#readme") (synopsis "Library of safe (exception free) functions") (description "This library provides wrappers around @code{Prelude} and @code{Data.List} functions, such as @code{head} and @code{!!}, that can throw exceptions.") (license license:bsd-3))) (define-public ghc-safe-exceptions (package (name "ghc-safe-exceptions") (version "0.1.7.3") (source (origin (method url-fetch) (uri (hackage-uri "safe-exceptions" version)) (sha256 (base32 "1gxm61mccivrdz2qcfh5sim596nbrpapx0nli0bx7vx6z3c2ikli")))) (build-system haskell-build-system) (properties '((upstream-name . "safe-exceptions"))) (native-inputs (list ghc-hspec ghc-void hspec-discover)) (home-page "https://github.com/fpco/safe-exceptions#readme") (synopsis "Safe, consistent, and easy exception handling") (description "Runtime exceptions - as exposed in @code{base} by the @code{Control.Exception} module - have long been an intimidating part of the Haskell ecosystem. This package is intended to overcome this. It provides a safe and simple API on top of the existing exception handling machinery. The API is equivalent to the underlying implementation in terms of power but encourages best practices to minimize the chances of getting the exception handling wrong.") (license license:expat))) (define-public ghc-safeio (package (name "ghc-safeio") (version "0.0.5.0") (source (origin (method url-fetch) (uri (hackage-uri "safeio" version)) (sha256 (base32 "04g3070cbjdqj0h9l9ii6470xcbn40xfv4fr89a8yvnkdim9nyfm")))) (build-system haskell-build-system) (properties '((upstream-name . "safeio"))) (inputs (list ghc-conduit ghc-conduit-combinators ghc-exceptions ghc-resourcet)) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit ghc-test-framework-th)) (arguments (list #:tests? #f)) ; Fail to build: Module ‘Data.ByteString’ does not export ‘hPutStrLn’. (home-page "https://github.com/luispedro/safeio") (synopsis "Write output to disk atomically") (description "This package implements utilities to perform atomic output so as to avoid the problem of partial intermediate files.") (license license:expat))) (define-public ghc-safesemaphore (package (name "ghc-safesemaphore") (version "0.10.1") (source (origin (method url-fetch) (uri (hackage-uri "SafeSemaphore" version)) (sha256 (base32 "0rpg9j6fy70i0b9dkrip9d6wim0nac0snp7qzbhykjkqlcvvgr91")))) (build-system haskell-build-system) (properties '((upstream-name . "SafeSemaphore"))) (native-inputs (list ghc-hunit)) (home-page "https://github.com/ChrisKuklewicz/SafeSemaphore") (synopsis "Exception safe semaphores") (description "This library provides exception safe semaphores that can be used in place of @code{QSem}, @code{QSemN}, and @code{SampleVar}, all of which are not exception safe and can be broken by @code{killThread}.") (license license:bsd-3))) (define-public ghc-sandi (package (name "ghc-sandi") (version "0.5") (source (origin (method url-fetch) (uri (hackage-uri "sandi" version)) (sha256 (base32 "1ndgai8idlxyccvkz5zsgq06v58blc30i6hkky5b1sf5x6gs2h29")))) (build-system haskell-build-system) (properties '((upstream-name . "sandi"))) (inputs (list ghc-stringsearch ghc-conduit ghc-exceptions ghc-hunit ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-tasty-th)) (home-page "https://hackage.haskell.org/package/sandi") (synopsis "Data encoding library") (description "Reasonably fast data encoding library.") (license license:bsd-3))) (define-public ghc-say (package (name "ghc-say") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "say" version)) (sha256 (base32 "1r5kffjfwpas45g74sip8glrj1m9nygrnxjm7xgw898rq9pnafgn")))) (build-system haskell-build-system) (properties '((upstream-name . "say"))) (native-inputs (list ghc-hspec hspec-discover ghc-unliftio)) (home-page "https://github.com/fpco/say") (synopsis "Send textual messages to a Handle in a thread-friendly way") (description "A thread safe API to write a line of textual data to a Handle, such as sending some messages to the terminal - that has the following properties: @itemize @item Properly handle character encoding settings on the Handle @item For reasonably sized messages, ensure that the entire message is written in one chunk to avoid interleaving data with other threads @item Avoid unnecessary memory allocations and copies @item Minimize locking. @end itemize") (license license:expat))) (define-public ghc-scientific (package (name "ghc-scientific") (version "0.3.7.0") (source (origin (method url-fetch) (uri (hackage-uri "scientific" version)) (sha256 (base32 "1aa3ngb71l2sh1x2829napnr1w285q0sn2f7z2wvi3ynng2238d3")))) (build-system haskell-build-system) (properties '((upstream-name . "scientific"))) (inputs (list ghc-integer-logarithms ghc-hashable ghc-primitive)) (native-inputs (list ghc-tasty ghc-tasty-ant-xml ghc-tasty-hunit ghc-tasty-smallcheck ghc-tasty-quickcheck ghc-smallcheck ghc-quickcheck)) (arguments `(#:cabal-revision ("3" "1n67w1b64q59nn4845z3kr8rm0x0p7bi3cyp6n1dpnfs8k4l8x2i"))) (home-page "https://github.com/basvandijk/scientific") (synopsis "Numbers represented using scientific notation") (description "This package provides @code{Data.Scientific}, which provides the number type @code{Scientific}. Scientific numbers are arbitrary precision and space efficient. They are represented using @uref{https://en.wikipedia.org/wiki/Scientific_notation, scientific notation}.") (license license:bsd-3))) (define-public ghc-sdl (package (name "ghc-sdl") (version "0.6.7.0") (source (origin (method url-fetch) (uri (hackage-uri "SDL" version)) (sha256 (base32 "00y67v80a8l09i3k76z09lg25kw72ivl09nag8ckdlk4a0cfnzfq")))) (build-system haskell-build-system) (properties '((upstream-name . "SDL"))) (inputs (list sdl)) (home-page "https://hackage.haskell.org/package/SDL") (synopsis "LibSDL for Haskell") (description "Simple DirectMedia Layer (libSDL) is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of \"Civilization: Call To Power.\"") (license license:bsd-3))) (define-public ghc-sdl2 (package (name "ghc-sdl2") (version "2.5.5.0") (source (origin (method url-fetch) (uri (hackage-uri "sdl2" version)) (sha256 (base32 "1kai6mmnwz9qq7q5y8c7wmcdf9qc5m167dzy3brj11jjds4smz93")))) (build-system haskell-build-system) (properties '((upstream-name . "sdl2"))) (inputs (list ghc-statevar ghc-vector ghc-linear sdl2)) (native-inputs (list ghc-weigh pkg-config)) (arguments `(#:cabal-revision ("1" "0r0lzn3hyjvzwqsrqprdzb2c167g7ip2cf07jvm1h5b53qc2a4cx"))) (home-page "https://hackage.haskell.org/package/sdl2") (synopsis "High- and low-level bindings to the SDL library") (description "This package contains bindings to the SDL 2 library, in both high- and low-level forms. The @code{SDL} namespace contains high-level bindings, where enumerations are split into sum types, and we perform automatic error-checking. The @code{SDL.Raw} namespace contains an almost 1-1 translation of the C API into Haskell FFI calls. As such, this does not contain sum types nor error checking. Thus this namespace is suitable for building your own abstraction over SDL, but is not recommended for day-to-day programming.") (license license:bsd-3))) (define-public ghc-sdl2-image (package (name "ghc-sdl2-image") (version "2.1.0.0") (source (origin (method url-fetch) (uri (hackage-uri "sdl2-image" version)) (sha256 (base32 "03cjlmj844gmfxqn9mp8333hpsg227kaipgs6g68xwg0cvch696j")))) (build-system haskell-build-system) (properties '((upstream-name . "sdl2-image"))) (inputs (list ghc-sdl2 sdl2-image)) (native-inputs (list pkg-config)) (home-page "https://hackage.haskell.org/package/sdl2-image") (synopsis "Bindings to SDL2_image") (description "This package provides Haskell bindings to @code{SDL2_image}.") (license license:expat))) (define-public ghc-sdl2-mixer (package (name "ghc-sdl2-mixer") (version "1.2.0.0") (source (origin (method url-fetch) (uri (hackage-uri "sdl2-mixer" version)) (sha256 (base32 "16fgnxq2nmifbz3lrr7dn1qj57l5f2kzv124lya1fjaxmwk1h52q")))) (build-system haskell-build-system) (properties '((upstream-name . "sdl2-mixer"))) (inputs (list ghc-data-default-class ghc-lifted-base ghc-monad-control ghc-sdl2 ghc-vector sdl2-mixer)) (native-inputs (list pkg-config)) (home-page "https://hackage.haskell.org/package/sdl2-mixer") (synopsis "Bindings to SDL2 mixer") (description "This package provides Haskell bindings to @code{SDL2_mixer}.") (license license:bsd-3))) (define-public ghc-sdl2-ttf (package (name "ghc-sdl2-ttf") (version "2.1.3") (source (origin (method url-fetch) (uri (hackage-uri "sdl2-ttf" version)) (sha256 (base32 "0sm5lrdif5wmz3iah1658zlr7yr45d1hfihb2hdxdia4h7z1j0mn")))) (build-system haskell-build-system) (properties '((upstream-name . "sdl2-ttf"))) (inputs (list ghc-sdl2 ghc-th-abstraction sdl2-ttf)) (native-inputs (list pkg-config)) (home-page "https://hackage.haskell.org/package/sdl2-ttf") (synopsis "Bindings to SDL2_ttf") (description "This package provides Haskell bindings to SDL2_ttf C++ library.") (license license:bsd-3))) (define-public ghc-sdl2-gfx (package (name "ghc-sdl2-gfx") (version "0.3.0.0") (source (origin (method url-fetch) (uri (hackage-uri "sdl2-gfx" version)) (sha256 (base32 "0r9m54ffkp1dv2ffz9i9318qhvpinc76iih7vg1dwq3siwgpxaxw")))) (build-system haskell-build-system) (properties '((upstream-name . "sdl2-gfx"))) (inputs (list ghc-lifted-base ghc-monad-control ghc-sdl2 ghc-vector sdl2-gfx)) (native-inputs (list pkg-config)) (home-page "https://hackage.haskell.org/package/sdl2-gfx") (synopsis "Haskell bindings to SDL2_gfx") (description "This package provides Haskell bindings to the SDL2_gfx graphics library.") (license license:expat))) (define-public ghc-sdl-image (package (name "ghc-sdl-image") (version "0.6.2.0") (source (origin (method url-fetch) (uri (hackage-uri "SDL-image" version)) (sha256 (base32 "1gxwrvswgwjw6g7ym52gik22l9l3ljy592phv97jdmcf3gi6qcg1")))) (build-system haskell-build-system) (properties '((upstream-name . "SDL-image"))) (arguments `(#:configure-flags (let* ((sdl-image (assoc-ref %build-inputs "sdl-image")) (sdl-image-include (string-append sdl-image "/include/SDL"))) (list (string-append "--extra-include-dirs=" sdl-image-include))))) (inputs (list ghc-sdl sdl-image)) (home-page "https://hackage.haskell.org/package/SDL-image") (synopsis "Haskell bindings to libSDL_image") (description "SDL_image is an image file loading library. It loads images as SDL surfaces, and supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.") (license license:bsd-3))) (define-public ghc-sdl-mixer (package (name "ghc-sdl-mixer") (version "0.6.3.0") (source (origin (method url-fetch) (uri (hackage-uri "SDL-mixer" version)) (sha256 (base32 "0k26hqgdh789ka3mv4dsk6rin6x6vwcs6hjmnsqq7j3mnrh1342r")))) (build-system haskell-build-system) (properties '((upstream-name . "SDL-mixer"))) (arguments `(#:configure-flags (let* ((sdl-mixer (assoc-ref %build-inputs "sdl-mixer")) (sdl-mixer-include (string-append sdl-mixer "/include/SDL"))) (list (string-append "--extra-include-dirs=" sdl-mixer-include))))) (inputs (list ghc-sdl sdl-mixer)) (home-page "https://hackage.haskell.org/package/SDL-mixer") (synopsis "Haskell bindings to libSDL_mixer") (description "SDL_mixer is a sample multi-channel audio mixer library. It supports any number of simultaneously playing channels of 16 bit stereo audio, plus a single channel of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, and SMPEG MP3 libraries.") (license license:bsd-3))) (define-public ghc-securemem (package (name "ghc-securemem") (version "0.1.10") (source (origin (method url-fetch) (uri (hackage-uri "securemem" version)) (sha256 (base32 "19hnw2cfbsfjynxq1bq9f6djbxhsc1k751ml0y1ab3ah913mm29j")))) (build-system haskell-build-system) (properties '((upstream-name . "securemem"))) (inputs (list ghc-byteable ghc-memory)) (home-page "https://github.com/vincenthz/hs-securemem") (synopsis "Auto-scrubbing and const-time-eq memory chunk abstraction for Haskell") (description "SecureMem is similar to ByteString, except that it provides a memory chunk that will be auto-scrubbed after it run out of scope.") (license license:bsd-3))) (define-public ghc-semialign (package (name "ghc-semialign") (version "1.2.0.1") (source (origin (method url-fetch) (uri (hackage-uri "semialign" version)) (sha256 (base32 "0ci1jpp37p1lzyjxc1bljd6zgg407qmkl9s36b50qjxf85q6j06r")))) (build-system haskell-build-system) (properties '((upstream-name . "semialign"))) (inputs (list ghc-these ghc-hashable ghc-indexed-traversable ghc-indexed-traversable-instances ghc-tagged ghc-unordered-containers ghc-vector ghc-semigroupoids)) (arguments `(#:cabal-revision ("3" "0dbcdnksik508i12arh3s6bis6779lx5f1df0jkc0bp797inhd7f"))) (home-page "https://github.com/haskellari/these") (synopsis "Align and Zip type-classes from the common Semialign ancestor") (description "The major use of @code{These} of this is provided by the @code{align} member of @code{Semialign} class, representing a generalized notion of \"zipping with padding\" that combines structures without truncating to the size of the smaller input. It turns out that @code{zip} operation fits well the @code{Semialign} class, forming lattice-like structure.") (license license:bsd-3))) (define-public ghc-semigroupoids (package (name "ghc-semigroupoids") (version "5.3.7") (source (origin (method url-fetch) (uri (hackage-uri "semigroupoids" version)) (sha256 (base32 "169pjrm7lxjxrqj5q1iyl288bx5nj8n0pf2ri1cclxccqnvcsibd")))) (build-system haskell-build-system) (properties '((upstream-name . "semigroupoids"))) (inputs (list ghc-base-orphans ghc-bifunctors ghc-transformers-compat ghc-generic-deriving ghc-contravariant ghc-distributive ghc-comonad ghc-tagged ghc-hashable ghc-unordered-containers)) (home-page "https://github.com/ekmett/semigroupoids") (synopsis "Semigroupoids operations for Haskell") (description "This library provides a wide array of (semi)groupoids and operations for working with them. A @code{Semigroupoid} is a @code{Category} without the requirement of identity arrows for every object in the category. A @code{Category} is any @code{Semigroupoid} for which the Yoneda lemma holds. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of @code{Traversable} and @code{Foldable} that can be folded with just a @code{Semigroup} are added.") (license license:bsd-2))) (define-public ghc-semigroups (package (name "ghc-semigroups") (version "0.20") (source (origin (method url-fetch) (uri (hackage-uri "semigroups" version)) (sha256 (base32 "1qbk6scp1rzb69dy8mz26p6az5vi16g2lzwmwnfshh3br4rjwbch")))) (build-system haskell-build-system) (properties '((upstream-name . "semigroups"))) (inputs (list ghc-nats ghc-tagged ghc-hashable ghc-unordered-containers ghc-transformers-compat)) (home-page "https://github.com/ekmett/semigroups/") (synopsis "Semigroup operations for Haskell") (description "This package provides semigroups for Haskell. In mathematics, a semigroup is an algebraic structure consisting of a set together with an associative binary operation. A semigroup generalizes a monoid in that there might not exist an identity element. It also (originally) generalized a group (a monoid with all inverses) to a type where every element did not have to have an inverse, thus the name semigroup.") (license license:bsd-3))) (define-public ghc-semigroups-bootstrap (package (inherit ghc-semigroups) (name "ghc-semigroups-bootstrap") (inputs (list ghc-nats-bootstrap ghc-tagged ghc-unordered-containers-bootstrap ghc-hashable-bootstrap)) (properties '((hidden? #t))))) (define-public ghc-semirings (package (name "ghc-semirings") (version "0.6") (source (origin (method url-fetch) (uri (hackage-uri "semirings" version)) (sha256 (base32 "16q535bvjl7395sqkx6zlw48y4fzr7irp44pcp7w9irpn4cncdcr")))) (build-system haskell-build-system) (properties '((upstream-name . "semirings"))) (inputs (list ghc-base-compat-batteries ghc-hashable ghc-unordered-containers)) (arguments `(#:cabal-revision ("1" "1c06yhfa053sv3rfz0d72a33l5qb0xmj1b3hy2z7pzxrcay6g1yc"))) (home-page "https://github.com/chessai/semirings") (synopsis "Two monoids as one, in holy haskimony") (description "Haskellers are usually familiar with monoids and semigroups. A monoid has an appending operation @code{<>} (or @code{mappend}), and an identity element, @code{mempty}. A semigroup has an appending @code{<>} operation, but does not require a @code{mempty} element. A Semiring has two appending operations, @code{plus} and @code{times}, and two respective identity elements, @code{zero} and @code{one}. More formally, a Semiring R is a set equipped with two binary relations @code{+} and @code{*}, such that: (R,+) is a commutative monoid with identity element 0, (R,*) is a monoid with identity element 1, (*) left and right distributes over addition, and . multiplication by @code{0} annihilates R.") (license license:bsd-3))) (define-public ghc-serialise (package (name "ghc-serialise") (version "0.2.6.0") (source (origin (method url-fetch) (uri (hackage-uri "serialise" version)) (sha256 (base32 "05m5h5vfjp4wvh6y7j2f3d4c3l6gxww2n1v38vqrjacpw641izwk")))) (build-system haskell-build-system) (properties '((upstream-name . "serialise"))) (inputs (list ghc-cborg ghc-half ghc-hashable ghc-primitive ghc-strict ghc-these ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck-instances)) (arguments `(#:cabal-revision ("1" "0rlsi4jq2d1dak2fps5flcn27lywjlhvsi0x2k2lvnjqawnfb3f9"))) (home-page "https://github.com/well-typed/cborg") (synopsis "Binary serialisation library for Haskell values") (description "This package (formerly binary-serialise-cbor) provides pure, efficient serialization of Haskell values directly into ByteStrings for storage or transmission purposes. By providing a set of type class instances, you can also serialise any custom data type you have as well. The underlying binary format used is the 'Concise Binary Object Representation', or CBOR, specified in RFC 7049. As a result, serialised Haskell values have implicit structure outside of the Haskell program itself, meaning they can be inspected or analyzed without custom tools. An implementation of the standard bijection between CBOR and JSON is provided by the https://hackage.haskell.org/package/cborg-json package. Also see https://hackage.haskell.org/package/cbor-tool for a convenient command-line utility for working with CBOR data.") (license license:bsd-3))) (define-public ghc-setenv (package (name "ghc-setenv") (version "0.1.1.3") (source (origin (method url-fetch) (uri (hackage-uri "setenv" version)) (sha256 (base32 "0cnbgrvb9byyahb37zlqrj05rj25v190crgcw8wmlgf0mwwxyn73")))) (build-system haskell-build-system) (properties '((upstream-name . "setenv"))) (home-page "https://hackage.haskell.org/package/setenv") (synopsis "Library for setting environment variables") (description "This package provides a Haskell library for setting environment variables.") (license license:expat))) (define-public ghc-setlocale (package (name "ghc-setlocale") (version "1.0.0.10") (source (origin (method url-fetch) (uri (hackage-uri "setlocale" version)) (sha256 (base32 "19rv89jkhq5ic7j5rzpygnmsbzim2mn8ip0m292za613q88gywir")))) (build-system haskell-build-system) (properties '((upstream-name . "setlocale"))) (arguments `(#:cabal-revision ("2" "1k4idj2xl9dg5nfz128xazrrydz9mgm3bbjrc0cyby8n3c0ij9x1"))) (home-page "https://hackage.haskell.org/package/setlocale") (synopsis "Haskell bindings to setlocale") (description "This package provides Haskell bindings to the @code{setlocale} C function.") (license license:bsd-3))) (define-public ghc-shakespeare (package (name "ghc-shakespeare") (version "2.0.30") (source (origin (method url-fetch) (uri (hackage-uri "shakespeare" version)) (sha256 (base32 "038yprj9yig2xbjs2pqsjzs4pl9ir2frdz9wn2pklc4kvdazx3aw")))) (build-system haskell-build-system) (properties '((upstream-name . "shakespeare"))) (inputs (list ghc-aeson ghc-blaze-markup ghc-blaze-html ghc-file-embed ghc-vector ghc-unordered-containers ghc-scientific ghc-th-lift)) (native-inputs (list ghc-hspec ghc-hunit hspec-discover)) (home-page "http://www.yesodweb.com/book/shakespearean-templates") (synopsis "Family of type-safe template languages for Haskell") (description "This Haskell package provides a family of type-safe templates with simple variable interpolation. Shakespeare templates can be used inline with a quasi-quoter or in an external file and it interpolates variables according to the type being inserted.") (license license:expat))) (define-public ghc-shelly (package (name "ghc-shelly") (version "1.10.0.1") (source (origin (method url-fetch) (uri (hackage-uri "shelly" version)) (sha256 (base32 "0nm3yg6mhgxj670xn18v4zvzzqxqv9b1r6psdmsppgqny1szqm3x")))) (build-system haskell-build-system) (properties '((upstream-name . "shelly"))) (inputs (list ghc-async ghc-enclosed-exceptions ghc-lifted-async ghc-lifted-base ghc-monad-control ghc-transformers-base ghc-unix-compat)) (native-inputs (list ghc-hspec ghc-hspec-contrib ghc-hunit)) (home-page "https://github.com/gregwebs/Shelly.hs") (synopsis "Shell-like (systems) programming in Haskell") (description "Shelly provides convenient systems programming in Haskell, similar in spirit to POSIX shells. Shelly is originally forked from the Shellish package.") (license license:bsd-3))) (define-public ghc-silently (package (name "ghc-silently") (version "1.2.5.3") (source (origin (method url-fetch) (uri (hackage-uri "silently" version)) (sha256 (base32 "0wk3yci4r9v0vwyzylj3k07damz17jwc6n6imwqahf4lsapsz7ds")))) (build-system haskell-build-system) (properties '((upstream-name . "silently"))) (native-inputs (list ghc-nanospec ghc-temporary)) (home-page "https://github.com/hspec/silently") (synopsis "Prevent writing to stdout") (description "This package provides functions to prevent or capture writing to stdout and other handles.") (license license:bsd-3))) (define-public ghc-silently-bootstrap (package (inherit ghc-silently) (name "ghc-silently-bootstrap") (arguments `(#:tests? #f)) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-simple-reflect (package (name "ghc-simple-reflect") (version "0.3.3") (source (origin (method url-fetch) (uri (hackage-uri "simple-reflect" version)) (sha256 (base32 "0ayvrx5cm8n6db21jiyjmk5h93pw7cz1707hih09hlhk9jh5x0h7")))) (build-system haskell-build-system) (properties '((upstream-name . "simple-reflect"))) (home-page "https://twanvl.nl/blog/haskell/simple-reflection-of-expressions") (synopsis "Simple reflection of expressions containing variables") (description "This package allows simple reflection of expressions containing variables. Reflection here means that a Haskell expression is turned into a string. The primary aim of this package is teaching and understanding; there are no options for manipulating the reflected expressions beyond showing them.") (license license:bsd-3))) (define-public ghc-simple-sendfile (package (name "ghc-simple-sendfile") (version "0.2.31") (source (origin (method url-fetch) (uri (hackage-uri "simple-sendfile" version)) (sha256 (base32 "0q65dnvmwwcvpzhg3963s7yy404h4yrjgxvdbjy0grrs1qi6w1v6")))) (build-system haskell-build-system) (properties '((upstream-name . "simple-sendfile"))) (inputs (list ghc-network)) (native-inputs (list ghc-hunit ghc-conduit ghc-conduit-extra ghc-resourcet ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/simple-sendfile") (synopsis "Cross platform library for the sendfile system call") (description "This library tries to call minimum system calls which are the bottleneck of web servers.") (license license:bsd-3))) (define-public ghc-size-based (package (name "ghc-size-based") (version "0.1.3.1") (source (origin (method url-fetch) (uri (hackage-uri "size-based" version)) (sha256 (base32 "1x2z8iw4jgcp6xirclifjhh3rvyjy5xgqrd6lcv4gifj859sfjd2")))) (build-system haskell-build-system) (properties '((upstream-name . "size-based"))) (inputs (list ghc-dictionary-sharing ghc-testing-type-modifiers)) (home-page "https://hackage.haskell.org/package/size-based") (synopsis "Sized functors for size-based enumerations") (description "This library provides a framework for size-based enumerations.") (license license:bsd-3))) (define-public ghc-skylighting-core (package (name "ghc-skylighting-core") (version "0.13.2.1") (source (origin (method url-fetch) (uri (hackage-uri "skylighting-core" version)) (sha256 (base32 "1ib59w12f7mlh10nwj7404jv8x7z2r58g8a9ndr6ag8pxnf81054")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting-core"))) (inputs (list ghc-aeson ghc-case-insensitive ghc-attoparsec ghc-utf8-string ghc-xml-conduit ghc-safe ghc-base64-bytestring ghc-colour)) (native-inputs (list ghc-tasty ghc-tasty-golden ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck ghc-diff ghc-pretty-show)) (home-page "https://github.com/jgm/skylighting") (synopsis "Syntax highlighting library") (description "Skylighting is a syntax highlighting library with support for over one hundred languages. It derives its tokenizers from XML syntax definitions used by KDE's @code{KSyntaxHighlighting} framework, so any syntax supported by that framework can be added. An optional command-line program is provided. Skylighting is intended to be the successor to highlighting-kate.") (license license:bsd-3))) (define-public ghc-skylighting-format-blaze-html (package (name "ghc-skylighting-format-blaze-html") (version "0.1.1") (source (origin (method url-fetch) (uri (hackage-uri "skylighting-format-blaze-html" version)) (sha256 (base32 "04zg92x1jnzv6hac6wdgksgma7gi5g82x2kdxk8r7pk9yd6rn4xi")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting-format-blaze-html"))) (inputs (list ghc-skylighting-core ghc-blaze-html)) (home-page "https://github.com/jgm/skylighting") (synopsis "HTML formatter for skylighting syntax highlighting library") (description "This module allows tokens produced by skylighting-core to be rendered as HTML.") (license license:bsd-3))) (define-public ghc-skylighting-format-latex (package (name "ghc-skylighting-format-latex") (version "0.1") (source (origin (method url-fetch) (uri (hackage-uri "skylighting-format-latex" version)) (sha256 (base32 "0y7v5aifwar24i976pw32scfdywjwy2ad05ajhdf8l84nsd6rdlp")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting-format-latex"))) (inputs (list ghc-skylighting-core)) (home-page "https://github.com/jgm/skylighting") (synopsis "LaTeX formatter for skylighting syntax highlighting library") (description "This module allows tokens produced by skylighting-core to be rendered as LaTeX macros.") (license license:bsd-3))) (define-public ghc-skylighting-format-context (package (name "ghc-skylighting-format-context") (version "0.1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "skylighting-format-context" version)) (sha256 (base32 "1gc8pjbhd1npka22m5m7s5333jcqxskgzmqj17m95dl97phi6hh0")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting-format-context"))) (inputs (list ghc-skylighting-core)) (home-page "https://github.com/jgm/skylighting") (synopsis "ConTeXt formatter for skylighting syntax highlighting library") (description "This module allows tokens produced by skylighting-core to be rendered as ConTeXt commands.") (license license:bsd-3))) (define-public ghc-skylighting-format-ansi (package (name "ghc-skylighting-format-ansi") (version "0.1") (source (origin (method url-fetch) (uri (hackage-uri "skylighting-format-ansi" version)) (sha256 (base32 "16qavv10g5yqwi60axj7q595ll605vmnfjgdxyi029nd5rnaipr3")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting-format-ansi"))) (inputs (list ghc-skylighting-core ghc-ansi-terminal ghc-colour)) (home-page "https://github.com/jgm/skylighting") (synopsis "ANSI formatter for skylighting syntax highlighting library") (description "This module allows tokens produced by skylighting-core to be rendered as ANSI colored text.") (license license:bsd-3))) (define-public ghc-skylighting (package (name "ghc-skylighting") (version "0.13.2.1") (source (origin (method url-fetch) (uri (hackage-uri "skylighting" version)) (sha256 (base32 "0lq68cavdp73praa2h8cclgnrh53fqg9x4r6q3fsvnr8lbcb4x7h")))) (build-system haskell-build-system) (properties '((upstream-name . "skylighting"))) (inputs (list ghc-skylighting-core ghc-skylighting-format-ansi ghc-skylighting-format-context ghc-skylighting-format-latex ghc-skylighting-format-blaze-html ghc-pretty-show ghc-blaze-html)) (home-page "https://github.com/jgm/skylighting") (synopsis "Syntax highlighting library") (description "Skylighting is a syntax highlighting library with support for over one hundred languages. It derives its tokenizers from XML syntax definitions used by KDE's KSyntaxHighlighting framework, so any syntax supported by that framework can be added. An optional command-line program is provided. Skylighting is intended to be the successor to highlighting-kate. This package provides generated syntax modules based on the KDE XML definitions provided by the @code{skylighting-core} package.") (license license:gpl2))) (define-public ghc-smallcheck (package (name "ghc-smallcheck") (version "1.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "smallcheck" version)) (sha256 (base32 "07zyb3hnq242mdwak5briqc48wakp9pjsfizl78l06070i824hz0")))) (build-system haskell-build-system) (properties '((upstream-name . "smallcheck"))) (inputs (list ghc-logict ghc-semigroups ghc-nats ghc-void)) (home-page "https://github.com/Bodigrim/smallcheck") (synopsis "Property-based testing library") (description "SmallCheck is a testing library that verifies properties for all test cases up to some depth. The test cases are generated automatically by SmallCheck.") (license license:bsd-3))) (define-public ghc-socks (package (name "ghc-socks") (version "0.6.1") (source (origin (method url-fetch) (uri (hackage-uri "socks" version)) (sha256 (base32 "0wvaxy3dkv97wrncjv1rxrmjr4014hgxz82kixvcwqdhidalfi3k")))) (build-system haskell-build-system) (properties '((upstream-name . "socks"))) (inputs (list ghc-cereal ghc-basement ghc-network)) (home-page "https://github.com/vincenthz/hs-socks") (synopsis "SOCKS proxy (version 5) implementation") (description "This library provides a SOCKS proxy (version 5) implementation.") (license license:bsd-3))) (define-public ghc-sop-core (package (name "ghc-sop-core") (version "0.5.0.2") (source (origin (method url-fetch) (uri (hackage-uri "sop-core" version)) (sha256 (base32 "0rbj56icbaqlcxx5xwvbx4n4vmyv6cfcv7s45n1fv3drahigvgw7")))) (build-system haskell-build-system) (properties '((upstream-name . "sop-core"))) (arguments `(#:cabal-revision ("1" "1p6zyqja021gyndskn1qnj29glqr0hldyhxplnpxz06hz4xqwngz"))) (home-page "https://hackage.haskell.org/package/sop-core") (synopsis "True Sums of Products") (description "This package provides an implementation of @math{n}-ary sums and @math{n}-ary products. The module @code{Data.SOP} is the main module of this library and contains more detailed documentation. The main use case of this package is to serve as the core of @url{https://hackage.haskell.org/package/generics-sop, generics-sop}.") (license license:bsd-3))) (define-public ghc-special-values (package (name "ghc-special-values") (version "0.1.0.0") (source (origin (method url-fetch) (uri (hackage-uri "special-values" version)) (sha256 (base32 "1kkdw2c4d2hha99v9f89ahmifjxp7fxmxyfwq9a8xk6s0h9xs51w")))) (build-system haskell-build-system) (properties '((upstream-name . "special-values"))) (inputs (list ghc-scientific ghc-ieee754 ghc-nats)) (arguments `(#:cabal-revision ("2" "1vv5gydjd65jniifl3mnch8bzvpvdahi913gsa3kv5zijwhad699"))) (home-page "https://github.com/minad/special-values#readme") (synopsis "Typeclass providing special values") (description "Special values are provided by a SpecialValues typeclass. Those can be used for example by QuickCheck, see quickcheck-special." ) (license license:expat))) (define-public ghc-split (package (name "ghc-split") (version "0.2.3.5") (source (origin (method url-fetch) (uri (hackage-uri "split" version)) (sha256 (base32 "0n9ip49laq5jwqw0c43lhf69ii8y4lwci9j6d5bjnjim23bai2mz")))) (build-system haskell-build-system) (properties '((upstream-name . "split"))) (native-inputs (list ghc-quickcheck)) (home-page "https://hackage.haskell.org/package/split") (synopsis "Combinator library for splitting lists") (description "This package provides a collection of Haskell functions for splitting lists into parts, akin to the @code{split} function found in several mainstream languages.") (license license:bsd-3))) (define-public ghc-splitmix (package (name "ghc-splitmix") (version "0.1.0.4") (source (origin (method url-fetch) (uri (hackage-uri "splitmix" version)) (sha256 (base32 "1apck3nzzl58r0b9al7cwaqwjhhkl8q4bfrx14br2yjf741581kd")))) (build-system haskell-build-system) (properties '((upstream-name . "splitmix"))) (native-inputs (list ghc-hunit ghc-base-compat ghc-hunit ghc-math-functions ghc-test-framework ghc-test-framework-hunit ghc-async ghc-base-compat-batteries ghc-random ghc-tf-random ghc-vector ghc-base-compat-batteries ghc-hunit)) (arguments `(#:tests? #f ; Missing library testu01. #:cabal-revision ("1" "1iqlg2d4mybqwzwp67c5a1yxzd47cbp4f7mrpa6d0ckypis2akl0"))) (home-page "https://hackage.haskell.org/package/splitmix") (synopsis "Fast and splittable pseudorandom number generator") (description "This package provides a Pure Haskell implementation of the SplitMix pseudorandom number generator. SplitMix is a \"splittable\" pseudorandom number generator that is quite fast: 9 64-bit arithmetic/logical operations per 64 bits generated. SplitMix is tested with two standard statistical test suites (DieHarder and TestU01, this implementation only using the former) and it appears to be adequate for \"everyday\" use, such as Monte Carlo algorithms and randomized data structures where speed is important. In particular, it @strong{should not be used for cryptographic or security applications}, because generated sequences of pseudorandom values are too predictable (the mixing functions are easily inverted, and two successive outputs suffice to reconstruct the internal state).") (license license:bsd-3))) (define-public ghc-splitmix-bootstrap (package (inherit ghc-splitmix) (name "ghc-splitmix-bootstrap") (arguments `(#:tests? #f)) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-spoon (package (name "ghc-spoon") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "spoon" version)) (sha256 (base32 "1m41k0mfy6fpfrv2ym4m5jsjaj9xdfl2iqpppd3c4d0fffv51cxr")))) (build-system haskell-build-system) (properties '((upstream-name . "spoon"))) (arguments `(#:cabal-revision ("1" "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"))) (home-page "https://hackage.haskell.org/package/spoon") (synopsis "Catch errors thrown from pure computations") (description "Takes an error-throwing expression and puts it back in the Maybe it belongs in. Note that this suffers from the @url{https://ghc.haskell.org/trac/ghc/ticket/5902}. Buyer beware.") (license license:bsd-3))) (define-public ghc-statevar (package (name "ghc-statevar") (version "1.2.2") (source (origin (method url-fetch) (uri (hackage-uri "StateVar" version)) (sha256 (base32 "098q4lk60najzpbfal4bg4sh7izxm840aa5h4ycaamjn77d3jjsy")))) (build-system haskell-build-system) (properties '((upstream-name . "StateVar"))) (home-page "https://hackage.haskell.org/package/StateVar") (synopsis "State variables for Haskell") (description "This package provides state variables, which are references in the @code{IO} monad, like @code{IORef}s or parts of the OpenGL state.") (license license:bsd-3))) (define-public ghc-statistics (package (name "ghc-statistics") (version "0.16.2.0") (source (origin (method url-fetch) (uri (hackage-uri "statistics" version)) (sha256 (base32 "1gsql118657j74v7r3yidzymzjvlcjvvs1pd37dg2lrz3xndyddk")))) (build-system haskell-build-system) (properties '((upstream-name . "statistics"))) (inputs (list ghc-math-functions ghc-mwc-random ghc-random ghc-aeson ghc-async ghc-primitive ghc-dense-linear-algebra ghc-parallel ghc-vector ghc-vector-algorithms ghc-vector-th-unbox ghc-vector-binary-instances ghc-data-default-class)) (native-inputs (list ghc-quickcheck ghc-erf ghc-ieee754 ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-tasty-expected-failure)) (arguments (list #:tests? #f)) ;; Fail. (home-page "https://github.com/haskell/statistics") (synopsis "Haskell library of statistical types, data, and functions") (description "This library provides a number of common functions and types useful in statistics. We focus on high performance, numerical robustness, and use of good algorithms. Where possible, we provide references to the statistical literature. The library's facilities can be divided into four broad categories: @itemize @item Working with widely used discrete and continuous probability distributions. (There are dozens of exotic distributions in use; we focus on the most common.) @item Computing with sample data: quantile estimation, kernel density estimation, histograms, bootstrap methods, significance testing, and regression and autocorrelation analysis. @item Random variate generation under several different distributions. @item Common statistical tests for significant differences between samples. @end itemize") (license license:bsd-2))) (define-public ghc-stm-chans (package (name "ghc-stm-chans") (version "3.0.0.9") (source (origin (method url-fetch) (uri (hackage-uri "stm-chans" version)) (sha256 (base32 "0p9jq5fq3g77kf2kq807zrwqpw0z9a6zhw57h21wk4yb6zshs1ks")))) (build-system haskell-build-system) (properties '((upstream-name . "stm-chans"))) (home-page "https://wrengr.org/software/hackage.html") (synopsis "Additional types of channels for ghc-stm") (description "This Haskell package offers a collection of channel types, similar to @code{Control.Concurrent.STM.@{TChan,TQueue@}} but with additional features.") (license license:bsd-3))) (define-public ghc-stm-conduit (package (name "ghc-stm-conduit") (version "4.0.1") (source (origin (method url-fetch) (uri (hackage-uri "stm-conduit" version)) (sha256 (base32 "0hhlxvpp7mah8dcvkknh6skx44jfk3092zz2w52zlr255bkmn3p8")))) (build-system haskell-build-system) (properties '((upstream-name . "stm-conduit"))) (inputs (list ghc-stm-chans ghc-cereal ghc-cereal-conduit ghc-conduit ghc-conduit-extra ghc-exceptions ghc-resourcet ghc-async ghc-monad-loops ghc-unliftio)) (native-inputs (list ghc-doctest ghc-quickcheck ghc-hunit ghc-test-framework ghc-test-framework-hunit ghc-test-framework-quickcheck2)) (home-page "https://github.com/cgaebel/stm-conduit") (synopsis "Introduces conduits to channels and promotes using conduits concurrently") (description "This package provides two simple conduit wrappers around STM channels: a source and a sink.") (license license:bsd-3))) (define-public ghc-stm-delay (package (name "ghc-stm-delay") (version "0.1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "stm-delay" version)) (sha256 (base32 "0cla21v89gcvmr1iwzibq13v1yq02xg4h6k9l6kcprj7mhd5hcmi")))) (build-system haskell-build-system) (properties '((upstream-name . "stm-delay"))) (home-page "https://github.com/joeyadams/haskell-stm-delay") (synopsis "Updatable one-shot timer polled with STM") (description "This library lets you create a one-shot timer, poll it using STM, and update it to ring at a different time than initially specified. It uses GHC event manager timeouts when available, yielding performance similar to @code{threadDelay} and @code{registerDelay}. Otherwise, it falls back to forked threads and @code{threadDelay}.") (license license:bsd-3))) (define-public ghc-stmonadtrans (package (name "ghc-stmonadtrans") (version "0.4.7") (source (origin (method url-fetch) (uri (hackage-uri "STMonadTrans" version)) (sha256 (base32 "1x83f48wbzx6rzbls6h8walfayzdv4j3j1mqbk8lfnkdqff9ri5d")))) (build-system haskell-build-system) (properties '((upstream-name . "STMonadTrans"))) (inputs (list ghc-fail)) (native-inputs (list ghc-tasty ghc-tasty-quickcheck ghc-tasty-hunit)) (arguments `(#:cabal-revision ("1" "01zfv7jdqf8wfmgxx2gdb1nik93iqvkmblrd18py5hy5mpbxp9dy"))) (home-page "https://github.com/josefs/STMonadTrans") (synopsis "Monad transformer version of the ST monad") (description "This package provides a monad transformer version of the @code{ST} monad for strict state threads.") (license license:bsd-3))) (define-public ghc-storable-complex (package (name "ghc-storable-complex") (version "0.2.3.0") (source (origin (method url-fetch) (uri (hackage-uri "storable-complex" version)) (sha256 (base32 "0fnwbfmd5vsaaqvf9182qdcjrzcfjd1zhdyvjwzifbwvn6r9kx4s")))) (build-system haskell-build-system) (properties '((upstream-name . "storable-complex"))) (inputs (list ghc-base-orphans)) (home-page "https://github.com/cartazio/storable-complex") (synopsis "Haskell Storable instance for Complex") (description "This package provides a Haskell library including a Storable instance for Complex which is binary compatible with C99, C++ and Fortran complex data types.") (license license:bsd-3))) (define-public ghc-storable-record (package (name "ghc-storable-record") (version "0.0.7") (source (origin (method url-fetch) (uri (hackage-uri "storable-record" version)) (sha256 (base32 "1c1f58v13nxpq2ix30d2kpvsamk44apl6ms1a2pq54fkjk44didy")))) (build-system haskell-build-system) (properties '((upstream-name . "storable-record"))) (inputs (list ghc-quickcheck ghc-semigroups ghc-utility-ht ghc-storablevector ghc-timeit)) (home-page "http://code.haskell.org/~thielema/storable-record/") (synopsis "Elegant definition of Storable instances for records") (description "With this package you can build a Storable instance of a record type from Storable instances of its elements in an elegant way. It does not do any magic, just a bit arithmetic to compute the right offsets, that would be otherwise done manually or by a preprocessor like C2HS. There is no guarantee that the generated memory layout is compatible with that of a corresponding C struct. However, the module generates the smallest layout that is possible with respect to the alignment of the record elements.") (license license:bsd-3))) (define-public ghc-storable-tuple (package (name "ghc-storable-tuple") (version "0.0.3.3") (source (origin (method url-fetch) (uri (hackage-uri "storable-tuple" version)) (sha256 (base32 "0dfzhxgkn1l6ls7zh6iifhyvhm8l47n40z0ar23c6ibsa94w1ynw")))) (build-system haskell-build-system) (properties '((upstream-name . "storable-tuple"))) (inputs (list ghc-storable-record ghc-utility-ht ghc-base-orphans)) (home-page "https://hackage.haskell.org/package/storable-tuple") (synopsis "Storable instance for pairs and triples") (description "This package provides a Storable instance for pairs and triples which should be binary compatible with C99 and C++. The only purpose of this package is to provide a standard location for this instance so that other packages needing this instance can play nicely together.") (license license:bsd-3))) (define-public ghc-storablevector (package (name "ghc-storablevector") (version "0.2.13.1") (source (origin (method url-fetch) (uri (hackage-uri "storablevector" version)) (sha256 (base32 "06fgxbnc5vwmiv7dxywj7ncjhmxv0wjs0bys5hza6mrwn3sw5r2w")))) (build-system haskell-build-system) (properties '((upstream-name . "storablevector"))) (inputs (list ghc-non-negative ghc-utility-ht ghc-semigroups ghc-unsafe ghc-quickcheck ghc-syb)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "storablevector.cabal" (("bytestring >=0\\.9 && <0\\.11") "bytestring"))))))) (home-page "https://wiki.haskell.org/Storable_Vector") (synopsis "Fast, packed, strict storable arrays with a list interface") (description "This library provides fast, packed, strict storable arrays with a list interface, a chunky lazy list interface with variable chunk size and an interface for write access via the ST monad. This is much like bytestring and binary but can be used for every @code{Foreign.Storable.Storable} type. See also @url{https://hackage.haskell.org/package/vector}, a library with a similar intention. This library does not do advanced fusion optimization, since especially for lazy vectors this would either be incorrect or not applicable. See @url{https://hackage.haskell.org/package/storablevector-streamfusion} for a library that provides fusion with lazy lists.") (license license:bsd-3))) (define-public ghc-streaming-commons (package (name "ghc-streaming-commons") (version "0.2.2.6") (source (origin (method url-fetch) (uri (hackage-uri "streaming-commons" version)) (sha256 (base32 "0ydzkx00akxf2kw5ifdmfia2if5iqa3fhbw15ckgdc1fi259b001")))) (build-system haskell-build-system) (properties '((upstream-name . "streaming-commons"))) (inputs (list ghc-async ghc-network ghc-random ghc-zlib)) (native-inputs (list ghc-hspec ghc-quickcheck hspec-discover)) (arguments `(#:cabal-revision ("1" "0jz2g82kzdiy6qwqx6a21y412v71hwnmzmai0gdiprylxyczpinm"))) (home-page "https://github.com/fpco/streaming-commons") (synopsis "Conduit and pipes needed by some streaming data libraries") (description "This package provides low-dependency functionality commonly needed by various Haskell streaming data libraries, such as @code{conduit} and @code{pipe}s.") (license license:expat))) (define-public ghc-strict (package (name "ghc-strict") (version "0.4.0.1") (source (origin (method url-fetch) (uri (hackage-uri "strict" version)) (sha256 (base32 "0hb24a09c3agsq7sdv8r2b2jc2f4g1blg2xvj4cfadynib0apxnz")))) (build-system haskell-build-system) (properties '((upstream-name . "strict"))) (inputs (list ghc-hashable ghc-these ghc-assoc)) (arguments `(#:cabal-revision ("4" "0pdzqhy7z70m8gxcr54jf04qhncl1jbvwybigb8lrnxqirs5l86n"))) (home-page "https://hackage.haskell.org/package/strict") (synopsis "Strict data types and String IO") (description "This package provides strict versions of some standard Haskell data types, such as pairs, @code{Maybe} and @code{Either}. It also contains strict IO operations.") (license license:bsd-3))) (define-public ghc-stringbuilder (package (name "ghc-stringbuilder") (version "0.5.1") (source (origin (method url-fetch) (uri (hackage-uri "stringbuilder" version)) (sha256 (base32 "1fh3csx1wcssn8xyvl4ip4aprh9l4qyz2kk8mgjvqvc0vb2bsy6q")))) (build-system haskell-build-system) (properties '((upstream-name . "stringbuilder"))) (arguments `(#:tests? #f)) ; FIXME: circular dependencies with tests ; enabled (home-page "https://hackage.haskell.org/package/stringbuilder") (synopsis "Writer monad for multi-line string literals") (description "This package provides a writer monad for multi-line string literals.") (license license:expat))) (define-public ghc-string-qq (package (name "ghc-string-qq") (version "0.0.4") (source (origin (method url-fetch) (uri (hackage-uri "string-qq" version)) (sha256 (base32 "0wfxkw4x6j6jq9nd82k83g2k3hskpsvk1dp4cpkshvjr4wg9qny8")))) (build-system haskell-build-system) (properties '((upstream-name . "string-qq"))) (native-inputs (list ghc-hunit)) (home-page "https://hackage.haskell.org/package/string-qq") (synopsis "QuasiQuoter for non-interpolated strings, texts and bytestrings") (description "This package provides a quasiquoter for non-interpolated strings, texts and bytestrings.") (license license:public-domain))) (define-public ghc-stringsearch (package (name "ghc-stringsearch") (version "0.3.6.6") (source (origin (method url-fetch) (uri (hackage-uri "stringsearch" version)) (sha256 (base32 "0jpy9xjcjdbpi3wk6mg7xwd7wfi2mma70p97v1ij5i8bj9qijpr9")))) (build-system haskell-build-system) (properties '((upstream-name . "stringsearch"))) (arguments `(#:cabal-revision ("1" "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"))) (home-page "https://bitbucket.org/dafis/stringsearch") (synopsis "Fast searching, splitting and replacing of ByteStrings") (description "This package provides several functions to quickly search for substrings in strict or lazy @code{ByteStrings}. It also provides functions for breaking or splitting on substrings and replacing all occurrences of a substring (the first in case of overlaps) with another.") (license license:bsd-3))) (define-public ghc-svg-builder (package (name "ghc-svg-builder") (version "0.1.1") (source (origin (method url-fetch) (uri (hackage-uri "svg-builder" version)) (sha256 (base32 "1k420f497lzkymmxin88ql6ib8dziic43avykv31yq65rgrf7l2g")))) (build-system haskell-build-system) (properties '((upstream-name . "svg-builder"))) (inputs (list ghc-blaze-builder ghc-hashable ghc-unordered-containers)) (arguments `(#:cabal-revision ("6" "1cprm8ya1rdid4pz1dk6692mv0kqkaxrsqaxg83bca5z4dkgqi2z"))) (home-page "https://github.com/diagrams/svg-builder.git") (synopsis "Domain-specific language for building Scalable Vector Graphics") (description "Easy-to-write domain-specific language (DSL) for building Scalable Vector Graphics (SVG).") (license license:bsd-3))) (define-public ghc-syb (package (name "ghc-syb") (version "0.7.2.3") (source (origin (method url-fetch) (uri (hackage-uri "syb" version)) (sha256 (base32 "06nrr3x9zgk0ml7xckx04hr46lr15w3p8mrdrgcw8ix92spjvdyh")))) (build-system haskell-build-system) (properties '((upstream-name . "syb"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "http://www.cs.uu.nl/wiki/GenericProgramming/SYB") (synopsis "Scrap Your Boilerplate") (description "This package contains the generics system described in the /Scrap Your Boilerplate/ papers (see @uref{http://www.cs.uu.nl/wiki/GenericProgramming/SYB, the website}). It defines the @code{Data} class of types permitting folding and unfolding of constructor applications, instances of this class for primitive types, and a variety of traversals.") (license license:bsd-3))) (define-public ghc-system-fileio (package (name "ghc-system-fileio") (version "0.3.16.4") (source (origin (method url-fetch) (uri (hackage-uri "system-fileio" version)) (sha256 (base32 "1iy6g1f35gzyj12g9mdiw4zf75mmxpv1l8cyaldgyscsl648pr9l")))) (build-system haskell-build-system) (properties '((upstream-name . "system-fileio"))) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "system-fileio.cabal" (("chell >= 0\\.4 && < 0\\.5") "chell >= 0.4")) #t))))) (inputs (list ghc-system-filepath ghc-chell ghc-temporary)) (home-page "https://github.com/fpco/haskell-filesystem") (synopsis "Consistent file system interaction across GHC versions") (description "This is a small wrapper around the directory, unix, and Win32 packages, for use with system-filepath. It provides a consistent API to the various versions of these packages distributed with different versions of GHC. In particular, this library supports working with POSIX files that have paths which can't be decoded in the current locale encoding.") (license license:expat))) ;; See ghc-system-filepath-bootstrap. In addition this package depends on ;; ghc-system-filepath. (define ghc-system-fileio-bootstrap (package (name "ghc-system-fileio-bootstrap") (version "0.3.16.3") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/system-fileio/system-fileio-" version ".tar.gz")) (sha256 (base32 "1484hcl27s2qcby8ws5djj11q9bz68bspcifz9h5gii2ndy70x9i")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) (inputs `(("ghc-system-filepath-bootstrap" ,ghc-system-filepath-bootstrap) ("ghc-temporary" ,ghc-temporary))) (home-page "https://github.com/fpco/haskell-filesystem") (synopsis "Consistent file system interaction across GHC versions") (description "This is a small wrapper around the directory, unix, and Win32 packages, for use with system-filepath. It provides a consistent API to the various versions of these packages distributed with different versions of GHC. In particular, this library supports working with POSIX files that have paths which can't be decoded in the current locale encoding.") (license license:expat))) (define-public ghc-system-filepath (package (name "ghc-system-filepath") (version "0.4.14") (source (origin (method url-fetch) (uri (hackage-uri "system-filepath" version)) (sha256 (base32 "14yras4pz2dh55xpwmazcgxijvi8913pjgzb9iw50mjq1lycwmhn")))) (build-system haskell-build-system) (properties '((upstream-name . "system-filepath"))) (arguments `(#:tests? #f ; TODO: Needs chell ==0.4.* #:cabal-revision ("1" "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"))) (native-inputs (list ghc-chell ghc-chell-quickcheck ghc-quickcheck)) (home-page "https://github.com/fpco/haskell-filesystem") (synopsis "High-level, byte-based file and directory path manipulations") (description "Provides a FilePath datatype and utility functions for operating on it. Unlike the filepath package, this package does not simply reuse String, increasing type safety.") (license license:expat))) ;; Ghc-shelly depends on ghc-system-filepath and ghc-system-fileio, who in turn depend on ;; ghc-chell and ghc-chell-quickcheck for the test phase. Ghc-chell depends on ghc-options ;; which depends on ghc-chell and ghc-chell-quickcheck. ;; Therefore we bootstrap it with tests disabled. (define ghc-system-filepath-bootstrap (package (name "ghc-system-filepath-bootstrap") (version "0.4.14") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/system-filepath/system-filepath-" version ".tar.gz")) (sha256 (base32 "14yras4pz2dh55xpwmazcgxijvi8913pjgzb9iw50mjq1lycwmhn")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) (inputs `(("ghc-quickcheck" ,ghc-quickcheck))) (home-page "https://github.com/fpco/haskell-filesystem") (synopsis "High-level, byte-based file and directory path manipulations") (description "Provides a FilePath datatype and utility functions for operating on it. Unlike the filepath package, this package does not simply reuse String, increasing type safety.") (license license:expat))) (define-public ghc-tabular (package (name "ghc-tabular") (version "0.2.2.8") (source (origin (method url-fetch) (uri (hackage-uri "tabular" version)) (sha256 (base32 "0z936gh8n8i8qdkagyxwd9gqq13skd5fv013vdvwsibrxkm0czfb")))) (build-system haskell-build-system) (properties '((upstream-name . "tabular"))) (inputs (list ghc-csv ghc-html)) (home-page "https://github.com/bgamari/tabular") (synopsis "Two-dimensional data tables with rendering functions") (description "Tabular provides a Haskell representation of two-dimensional data tables, the kind that you might find in a spreadsheet or or a research report. It also comes with some default rendering functions for turning those tables into ASCII art, simple text with an arbitrary delimiter, CSV, HTML or LaTeX. Below is an example of the kind of output this library produces. The tabular package can group rows and columns, each group having one of three separators (no line, single line, double line) between its members. @example || memtest 1 | memtest 2 || time test | time test 2 ====++===========+===========++=============+============ A 1 || hog | terrible || slow | slower A 2 || pig | not bad || fast | slowest ----++-----------+-----------++-------------+------------ B 1 || good | awful || intolerable | bearable B 2 || better | no chance || crawling | amazing B 3 || meh | well... || worst ever | ok @end example") (license license:bsd-3))) (define-public ghc-tagged (package (name "ghc-tagged") (version "0.8.6.1") (source (origin (method url-fetch) (uri (hackage-uri "tagged" version)) (sha256 (base32 "00kcc6lmj7v3xm2r3wzw5jja27m4alcw1wi8yiismd0bbzwzrq7m")))) (build-system haskell-build-system) (properties '((upstream-name . "tagged"))) (arguments `(#:cabal-revision ("2" "0qi63c3z40i9qm44r571yjzcpb8d473vj2km4kq0fij0ljc7vii9"))) (inputs (list ghc-transformers-compat)) (home-page "https://hackage.haskell.org/package/tagged") (synopsis "Haskell phantom types to avoid passing dummy arguments") (description "This library provides phantom types for Haskell 98, to avoid having to unsafely pass dummy arguments.") (license license:bsd-3))) (define-public ghc-tar (package (name "ghc-tar") (version "0.5.1.1") (source (origin (method url-fetch) (uri (hackage-uri "tar" version)) (sha256 (base32 "1ppim7cgmn7ng8zbdrwkxhhizc30h15h1c9cdlzamc5jcagl915k")))) (build-system haskell-build-system) (properties '((upstream-name . "tar"))) (arguments `(#:tests? #f ; Failed! Exception: 'TruncatedArchive' (after 4 tests): #:cabal-revision ("5" "15dqywn1lsyqb0nq1amj70mh1i079b7xwr02wbpcdzmdljg9c55w"))) (native-inputs (list ghc-bytestring-handle ghc-quickcheck ghc-tasty ghc-tasty-quickcheck)) (home-page "https://hackage.haskell.org/package/tar") (synopsis "Reading, writing and manipulating \".tar\" archive files") (description "This library is for working with \\\"@.tar@\\\" archive files. It can read and write a range of common variations of the tar archive format including V7, POSIX USTAR and GNU formats. It provides support for packing and unpacking portable archives. This makes it suitable for distribution but not backup because details like file ownership and exact permissions are not preserved. It also provides features for random access to archive content using an index.") (license license:bsd-3))) (define-public ghc-tar-conduit (package (name "ghc-tar-conduit") (version "0.3.2") (source (origin (method url-fetch) (uri (hackage-uri "tar-conduit" version)) (sha256 (base32 "0bgn3hyf20g1gfnzy8f41s7nj54kfcyjk2izw99svrw8f3dphi80")))) (build-system haskell-build-system) (properties '((upstream-name . "tar-conduit"))) (inputs (list ghc-conduit ghc-conduit-combinators ghc-safe-exceptions)) (native-inputs (list ghc-quickcheck ghc-conduit-extra ghc-hspec ghc-hspec ghc-weigh)) (home-page "https://github.com/snoyberg/tar-conduit#readme") (synopsis "Extract and create tar files using conduit for streaming") (description "This library provides a conduit-based, streaming interface for extracting and creating tar files.") (license license:expat))) (define-public ghc-temporary (package (name "ghc-temporary") (version "1.3") (source (origin (method url-fetch) (uri (hackage-uri "temporary" version)) (sha256 (base32 "144qhwfwg37l3k313raf4ssiz16jbgwlm1nf4flgqpsbd69jji4c")))) (build-system haskell-build-system) (properties '((upstream-name . "temporary"))) (inputs (list ghc-exceptions ghc-random)) (native-inputs (list ghc-base-compat ghc-tasty ghc-tasty-hunit)) (home-page "https://www.github.com/batterseapower/temporary") (synopsis "Temporary file and directory support") (description "The functions for creating temporary files and directories in the Haskelll base library are quite limited. This library just repackages the Cabal implementations of its own temporary file and folder functions so that you can use them without linking against Cabal or depending on it being installed.") (license license:bsd-3))) (define-public ghc-temporary-rc (package (name "ghc-temporary-rc") (version "1.2.0.3") (source (origin (method url-fetch) (uri (hackage-uri "temporary-rc" version)) (sha256 (base32 "1nqih0qks439k3pr5kmbbc8rjdw730slrxlflqb27fbxbzb8skqs")))) (build-system haskell-build-system) (properties '((upstream-name . "temporary-rc"))) (inputs (list ghc-exceptions)) (home-page "https://www.github.com/feuerbach/temporary") (synopsis "Portable temporary file and directory support") (description "The functions for creating temporary files and directories in the base library are quite limited. The unixutils package contains some good ones, but they aren't portable to Windows. This library just repackages the Cabal implementations of its own temporary file and folder functions so that you can use them without linking against Cabal or depending on it being installed. This is a better maintained fork of the \"temporary\" package.") (license license:bsd-3))) (define-public ghc-terminal-size (package (name "ghc-terminal-size") (version "0.3.4") (source (origin (method url-fetch) (uri (hackage-uri "terminal-size" version)) (sha256 (base32 "0jbznrlf95lc6ajhh26h1qgcmbr3bj753i8jlkrsrnkcjbb71w5h")))) (build-system haskell-build-system) (properties '((upstream-name . "terminal-size"))) (home-page "https://hackage.haskell.org/package/terminal-size") (synopsis "Get terminal window height and width") (description "Get terminal window height and width without ncurses dependency.") (license license:bsd-3))) (define-public ghc-texmath (package (name "ghc-texmath") (version "0.12.5.5") (source (origin (method url-fetch) (uri (hackage-uri "texmath" version)) (sha256 (base32 "0hm88495sql6dz10hkrhfdnzfpgaa8zcy00v3irkzibq886nbcva")))) (build-system haskell-build-system) (properties '((upstream-name . "texmath"))) (inputs (list ghc-syb ghc-xml ghc-pandoc-types ghc-split)) (native-inputs (list ghc-pretty-show ghc-tasty ghc-tasty-golden ghc-tagged)) (home-page "https://github.com/jgm/texmath") (synopsis "Conversion between formats used to represent mathematics") (description "The texmath library provides functions to read and write TeX math, presentation MathML, and OMML (Office Math Markup Language, used in Microsoft Office). Support is also included for converting math formats to pandoc's native format (allowing conversion, via pandoc, to a variety of different markup formats). The TeX reader supports basic LaTeX and AMS extensions, and it can parse and apply LaTeX macros.") (license license:gpl2))) (define-public ghc-text-binary (package (name "ghc-text-binary") (version "0.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "text-binary" version)) (sha256 (base32 "18gl10pwg3qwsk0za3c70j4n6a9129wwf1b7d3a461h816yv55xn")))) (build-system haskell-build-system) (properties '((upstream-name . "text-binary"))) (home-page "https://github.com/kawu/text-binary") (synopsis "Binary instances for text types") (description "This package provides a compatibility layer providing @code{Binary} instances for strict and lazy text types for versions older than 1.2.1 of the text package.") (license license:bsd-2))) (define-public ghc-text-manipulate (package (name "ghc-text-manipulate") (version "0.3.1.0") (source (origin (method url-fetch) (uri (hackage-uri "text-manipulate" version)) (sha256 (base32 "1g06ldl6cdnyr31xlks5qm1sj44ccrdvq4bf8dk032mzfkpyyrws")))) (build-system haskell-build-system) (properties '((upstream-name . "text-manipulate"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/brendanhay/text-manipulate") (synopsis "Case conversion, word boundary manipulation, and textual subjugation") (description "Manipulate identifiers and structurally non-complex pieces of text by delimiting word boundaries via a combination of whitespace, control-characters, and case-sensitivity. Has support for common idioms like casing of programmatic variable names, taking, dropping, and splitting by word, and modifying the first character of a piece of text. Caution: this library makes heavy use of the text library's internal loop optimisation framework. Since internal modules are not guaranteed to have a stable API there is potential for build breakage when the text dependency is upgraded. Consider yourself warned!") (license license:mpl2.0))) (define-public ghc-text-metrics (package (name "ghc-text-metrics") (version "0.3.2") (source (origin (method url-fetch) (uri (hackage-uri "text-metrics" version)) (sha256 (base32 "0vl3vnm7xhy2zwcx1m293gp64q5sxfa3vmzdaqnqmjgby6l31mxx")))) (build-system haskell-build-system) (properties '((upstream-name . "text-metrics"))) (inputs (list ghc-vector)) (native-inputs (list ghc-quickcheck ghc-hspec)) (arguments `(#:cabal-revision ("3" "1hdxv7jka6x7d621cxn4r802w4rip45calmvjrb8aar34dshkg4q"))) (home-page "https://github.com/mrkkrp/text-metrics") (synopsis "Calculate various string metrics efficiently") (description "This library provides tools to calculate various string metrics efficiently.") (license license:bsd-3))) (define-public ghc-tf-random (package (name "ghc-tf-random") (version "0.5") (outputs '("out" "doc")) (source (origin (method url-fetch) (uri (hackage-uri "tf-random" version)) (sha256 (base32 "0445r2nns6009fmq0xbfpyv7jpzwv0snccjdg7hwj4xk4z0cwc1f")))) (build-system haskell-build-system) (properties '((upstream-name . "tf-random"))) (inputs (list ghc-primitive ghc-random)) (home-page "https://hackage.haskell.org/package/tf-random") (synopsis "High-quality splittable pseudorandom number generator") (description "This package contains an implementation of a high-quality splittable pseudorandom number generator. The generator is based on a cryptographic hash function built on top of the ThreeFish block cipher. See the paper \"Splittable Pseudorandom Number Generators Using Cryptographic Hashing\" by Claessen, Pałka for details and the rationale of the design.") (license license:bsd-3))) (define-public ghc-th-abstraction (package (name "ghc-th-abstraction") (version "0.4.5.0") (source (origin (method url-fetch) (uri (hackage-uri "th-abstraction" version)) (sha256 (base32 "09hm0famyqsq09lal2ylnhsb31hybj8zanldi7cqncky4i7y5m80")))) (build-system haskell-build-system) (properties '((upstream-name . "th-abstraction"))) (home-page "https://github.com/glguy/th-abstraction") (synopsis "Nicer interface for reified information about data types") (description "This package normalizes variations in the interface for inspecting datatype information via Template Haskell so that packages and support a single, easier to use informational datatype while supporting many versions of Template Haskell.") (license license:isc))) (define-public ghc-th-expand-syns (package (name "ghc-th-expand-syns") (version "0.4.11.0") (source (origin (method url-fetch) (uri (hackage-uri "th-expand-syns" version)) (sha256 (base32 "1l7pkc16vnjgiam31745av14j7ngnr5mqmgp77xwd3h7fg75kkca")))) (build-system haskell-build-system) (properties '((upstream-name . "th-expand-syns"))) (inputs (list ghc-syb ghc-th-abstraction)) (arguments `(#:cabal-revision ("4" "0vjznxgzzvlr39hq0pqvachaihsbp0m2fwrii89rjzhx0mlfy4l7"))) (home-page "https://github.com/DanielSchuessler/th-expand-syns") (synopsis "Expands type synonyms in Template Haskell ASTs") (description "This package enables users to expand type synonyms in Template Haskell @dfn{abstract syntax trees} (ASTs).") (license license:bsd-3))) (define-public ghc-th-lift (package (name "ghc-th-lift") (version "0.8.3") (source (origin (method url-fetch) (uri (hackage-uri "th-lift" version)) (sha256 (base32 "0xbbii04c60l6v6fnd50lldhpsg1ba03j1ff9bmyzpp7z3sppm95")))) (build-system haskell-build-system) (properties '((upstream-name . "th-lift"))) (inputs (list ghc-th-abstraction)) (home-page "https://github.com/RyanGlScott/th-lift") (synopsis "Derive Template Haskell's Lift class for datatypes") (description "This is a Haskell library to derive Template Haskell's Lift class for datatypes.") (license license:bsd-3))) (define-public ghc-th-lift-instances (package (name "ghc-th-lift-instances") (version "0.1.20") (source (origin (method url-fetch) (uri (hackage-uri "th-lift-instances" version)) (sha256 (base32 "0w6qc7xzyjymhh8hv72rlszh3n2xyzzamlfcl1hs9k6xbbww6czm")))) (build-system haskell-build-system) (properties '((upstream-name . "th-lift-instances"))) (inputs (list ghc-vector ghc-th-lift)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/bennofs/th-lift-instances/") (synopsis "Lift instances for template-haskell for common data types") (description "Most data types in the Haskell platform do not have Lift instances. This package provides orphan instances for @code{containers}, @code{text}, @code{bytestring} and @code{vector}.") (license license:bsd-3))) (define-public ghc-th-orphans (package (name "ghc-th-orphans") (version "0.13.14") (source (origin (method url-fetch) (uri (hackage-uri "th-orphans" version)) (sha256 (base32 "0z07qcbbsj2b3j9p1qr4jvlpa7qgjfjvymkjd6vbizka1wd2mnwx")))) (build-system haskell-build-system) (properties '((upstream-name . "th-orphans"))) (inputs (list ghc-th-compat ghc-th-lift ghc-th-reify-many ghc-generic-deriving ghc-th-lift-instances)) (native-inputs (list ghc-hspec)) (home-page "https://hackage.haskell.org/package/th-orphans") (synopsis "Orphan instances for TH datatypes") (description "This package provides orphan instances for Template Haskell datatypes. In particular, instances for @code{Ord} and @code{Lift}, as well as a few missing @code{Show} and @code{Eq} instances. These instances used to live in the haskell-src-meta package, and that's where the version number started.") (license license:bsd-3))) (define-public ghc-these (package (name "ghc-these") (version "1.1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "these" version)) (sha256 (base32 "027m1gd7i6jf2ppfkld9qrv3xnxg276587pmx10z9phpdvswk66p")))) (build-system haskell-build-system) (properties '((upstream-name . "these"))) (inputs (list ghc-hashable ghc-assoc)) (arguments `(#:cabal-revision ("6" "12ll5l8m482qkb8zn79vx51bqlwc89fgixf8jv33a32b4qzc3499"))) (home-page "https://github.com/isomorphism/these") (synopsis "Either-or-both data type") (description "This package provides a data type @code{These a b} which can hold a value of either type or values of each type. This is usually thought of as an \"inclusive or\" type (contrasting @code{Either a b} as \"exclusive or\") or as an \"outer join\" type (contrasting @code{(a, b)} as \"inner join\"). @code{data These a b = This a | That b | These a b} Since version 1, this package was split into parts: @itemize @item https://hackage.haskell.org/package/semialign For @code{Align} and @code{Zip} type-classes. @item https://hackage.haskell.org/package/semialign-indexed For @code{SemialignWithIndex} class, providing @code{ialignWith} and @code{izipWith} @item https://hackage.haskell.org/package/these-lens For lens combinators. @item http://hackage.haskell.org/package/monad-chronicle For transformers variant of @code{These}. @end itemize") (license license:bsd-3))) (define-public ghc-threads (package (name "ghc-threads") (version "0.5.1.7") (source (origin (method url-fetch) (uri (hackage-uri "threads" version)) (sha256 (base32 "1l226792dqlp772aaxqr3qzz8yq72702g708k16gi8lrkfhgxxp0")))) (build-system haskell-build-system) (properties '((upstream-name . "threads"))) (native-inputs (list ghc-concurrent-extra ghc-hunit ghc-test-framework ghc-test-framework-hunit)) (home-page "https://github.com/basvandijk/threads") (synopsis "Fork threads and wait for their result") (description "This package provides functions to fork threads and wait for their result, whether it's an exception or a normal value. Besides waiting for the termination of a single thread this package also provides functions to wait for a group of threads to terminate. This package is similar to the @code{threadmanager}, @code{async} and @code{spawn} packages. The advantages of this package are: @itemize @item Simpler API. @item More efficient in both space and time. @item No space-leak when forking a large number of threads. @item Correct handling of asynchronous exceptions. @item GHC specific functionality like @code{forkOn} and @code{forkIOWithUnmask}. @end itemize") (license license:bsd-3))) (define-public ghc-th-reify-many (package (name "ghc-th-reify-many") (version "0.1.10") (source (origin (method url-fetch) (uri (hackage-uri "th-reify-many" version)) (sha256 (base32 "19g4gc1q3zxbylmvrgk3dqjzychq2k02i7fwvs3vhbrg4ihhw9cx")))) (build-system haskell-build-system) (properties '((upstream-name . "th-reify-many"))) (inputs (list ghc-safe ghc-th-expand-syns)) (home-page "https://github.com/mgsloan/th-reify-many") (synopsis "Recurseively reify template haskell datatype info") (description "th-reify-many provides functions for recursively reifying top level declarations. The main intended use case is for enumerating the names of datatypes reachable from an initial datatype, and passing these names to some function which generates instances.") (license license:bsd-3))) (define-public ghc-time-compat (package (name "ghc-time-compat") (version "1.9.6.1") (source (origin (method url-fetch) (uri (hackage-uri "time-compat" version)) (sha256 (base32 "103b3vpn277kkccv6jv54b2wpi5c00mpb01ndl9w4y4nxc0bn1xd")))) (build-system haskell-build-system) (properties '((upstream-name . "time-compat"))) (inputs (list ghc-base-orphans ghc-hashable)) (native-inputs (list ghc-hunit ghc-base-compat ghc-quickcheck ghc-tagged ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("4" "1n39yfk21xz8y1xvkh01651yysk2zp5qac22l5pq2hi7scczmxaw"))) (home-page "https://github.com/haskellari/time-compat") (synopsis "Compatibility package for time") (description "This package tries to compat as many @code{time} features as possible.") (license license:bsd-3))) (define-public ghc-time-locale-compat (package (name "ghc-time-locale-compat") (version "0.1.1.5") (source (origin (method url-fetch) (uri (hackage-uri "time-locale-compat" version)) (sha256 (base32 "0b2hmj8wwrfkndwzgm11qr496ca2ahwdxcj3m0ii91bxvrk1bzq7")))) (build-system haskell-build-system) (properties '((upstream-name . "time-locale-compat"))) (inputs (list ghc-old-locale)) (home-page "https://github.com/khibino/haskell-time-locale-compat") (synopsis "Compatibility of TimeLocale between old-locale and time-1.5") (description "This package contains a wrapped name module for @code{TimeLocale}.") (license license:bsd-3))) (define-public ghc-time-manager (package (name "ghc-time-manager") (version "0.0.0") (source (origin (method url-fetch) (uri (hackage-uri "time-manager" version)) (sha256 (base32 "1nzwj0fxz370ks6vr1sylcidx33rnqq45y3q9yv9n4dj43nid9lh")))) (build-system haskell-build-system) (properties '((upstream-name . "time-manager"))) (inputs (list ghc-auto-update)) (home-page "https://github.com/yesodweb/wai") (synopsis "Scalable timer") (description "This library contains scalable timer functions provided by a timer manager.") (license license:expat))) (define-public ghc-timeit (package (name "ghc-timeit") (version "2.0") (source (origin (method url-fetch) (uri (hackage-uri "timeit" version)) (sha256 (base32 "1sliqpvl501rlcj6s0lhmsf5ym24j4h881wzc1f1wdyvg3jz8kd1")))) (build-system haskell-build-system) (properties '((upstream-name . "timeit"))) (home-page "https://github.com/merijn/timeit") (synopsis "Time monadic computations with an IO base") (description "This package provides a simple wrapper to show the used CPU time of monadic computation with an IO base.") (license license:bsd-3))) (define-public ghc-timezone-series (package (name "ghc-timezone-series") (version "0.1.13") (source (origin (method url-fetch) (uri (hackage-uri "timezone-series" version)) (sha256 (base32 "18n6w7jxwlysq5mvb1sp1z57nyrsgn2ans642fy5rhmpwcavgvr8")))) (build-system haskell-build-system) (properties '((upstream-name . "timezone-series"))) (arguments `(#:cabal-revision ("1" "1ak05p8z1q2nispv1xw32j7lhfmf3sfj2ibjrxpm347s37fmxnwc"))) (home-page "https://projects.haskell.org/time-ng/") (synopsis "Enhanced timezone handling for Time") (description "This package endows @code{Data.Time}, from the time package, with several data types and functions for enhanced processing of timezones. For one way to create timezone series, see the ghc-timezone-olson package.") (license license:bsd-3))) (define-public ghc-timezone-olson (package (name "ghc-timezone-olson") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "timezone-olson" version)) (sha256 (base32 "10f5843sza2ikj2sg9fjhf5dhnhcidad86cdjmrj1y6zclkiqmdc")))) (build-system haskell-build-system) (properties '((upstream-name . "timezone-olson"))) (inputs (list ghc-timezone-series ghc-extensible-exceptions)) (home-page "https://projects.haskell.org/time-ng/") (synopsis "Parser and renderer for binary Olson timezone files") (description "A parser and renderer for binary Olson timezone files whose format is specified by the tzfile(5) man page on Unix-like systems. For more information about this format, see @url{http://www.iana.org/time-zones/repository/tz-link.html}. Functions are provided for converting the parsed data into @code{TimeZoneSeries} objects from the timezone-series package.") (license license:bsd-3))) (define-public ghc-tldr (package (name "ghc-tldr") (version "0.9.2") (source (origin (method url-fetch) (uri (hackage-uri "tldr" version)) (sha256 (base32 "1yypb9zhsj9ks7bbw2sayqv3rn9y8z3w5p1xmsnwb4w99dqmvcx5")))) (build-system haskell-build-system) (properties '((upstream-name . "tldr"))) (inputs (list ghc-ansi-terminal ghc-attoparsec ghc-cmark ghc-http-conduit ghc-optparse-applicative ghc-semigroups ghc-zip-archive)) (native-inputs (list ghc-tasty ghc-tasty-golden)) (home-page "https://github.com/psibi/tldr-hs#readme") (synopsis "Haskell tldr client") (description "This package provides the @command{tldr} command and a Haskell client library allowing users to update and view @code{tldr} pages from a shell. The @code{tldr} pages are a community effort to simplify the man pages with practical examples.") (license license:bsd-3))) (define-public ghc-torrent (package (name "ghc-torrent") (version "10000.1.3") (source (origin (method url-fetch) (uri (hackage-uri "torrent" version)) (sha256 (base32 "1pp9qfpai7v8vlylw4zfgmnbznwjldqlbl3p6awlhzkpszvqzgny")))) (build-system haskell-build-system) (properties '((upstream-name . "torrent"))) (inputs (list ghc-bencode ghc-syb)) (home-page "https://hackage.haskell.org/package/torrent") (synopsis "BitTorrent file parser and generator") (description "This library provides support for parsing and generating BitTorrent files.") (license license:bsd-3))) (define-public ghc-transformers (package (name "ghc-transformers") (version "0.5.6.2") (source (origin (method url-fetch) (uri (hackage-uri "transformers" version)) (sha256 (base32 "0v66j5k0xqk51pmca55wq192qyw2p43s2mgxlz4f95q2c1fpjs5n")))) (build-system haskell-build-system) (properties '((upstream-name . "transformers"))) (home-page "https://hackage.haskell.org/package/transformers") (synopsis "Concrete functor and monad transformers") (description "Transformers provides functor and monad transformers, inspired by the paper \"Functional Programming with Overloading and Higher-Order Polymorphism\", by Mark P Jones, in Advanced School of Functional Programming, 1995 @url{http://web.cecs.pdx.edu/~mpj/pubs/springschool.html}. This package contains: @itemize @item the monad transformer class (in @code{Control.Monad.Trans.Class}) @item concrete functor and monad transformers, each with associated operations and functions to lift operations associated with other transformers. @end itemize This package can be used on its own in portable Haskell code, in which case operations need to be manually lifted through transformer stacks (see @code{Control.Monad.Trans.Class} for some examples). Alternatively, it can be used with the non-portable monad classes in the mtl or monads-tf packages, which automatically lift operations introduced by monad transformers through other transformers.") (license license:bsd-3))) (define-public ghc-transformers-base (package (name "ghc-transformers-base") (version "0.4.6") (source (origin (method url-fetch) (uri (hackage-uri "transformers-base" version)) (sha256 (base32 "146g69yxmlrmvqnzwcw4frxfl3z04lda9zqwcqib34dnkrlghfrj")))) (build-system haskell-build-system) (properties '((upstream-name . "transformers-base"))) (inputs (list ghc-transformers-compat)) (home-page "https://hackage.haskell.org/package/transformers-compat") (synopsis "Backported transformer library") (description "Backported versions of types that were added to transformers in transformers 0.3 and 0.4 for users who need strict transformers 0.2 or 0.3 compatibility to run on old versions of the platform.") (license license:bsd-3))) (define-public ghc-transformers-compat (package (name "ghc-transformers-compat") (version "0.7.2") (source (origin (method url-fetch) (uri (hackage-uri "transformers-compat" version)) (sha256 (base32 "0slxrkxi8xa1bmi9saq9x8bz52clrf2slf877m3ckjzkr4276b5n")))) (build-system haskell-build-system) (properties '((upstream-name . "transformers-compat"))) (inputs (list ghc-generic-deriving)) (home-page "https://github.com/ekmett/transformers-compat/") (synopsis "Small compatibility shim between transformers 0.3 and 0.4") (description "This package includes backported versions of types that were added to transformers in transformers 0.3 and 0.4 for users who need strict transformers 0.2 or 0.3 compatibility to run on old versions of the platform, but also need those types.") (license license:bsd-3))) (define-public ghc-exception-transformers (package (name "ghc-exception-transformers") (version "0.4.0.11") (source (origin (method url-fetch) (uri (hackage-uri "exception-transformers" version)) (sha256 (base32 "1zmd2s40m86c9mhv32l5bvvf5r52cgpxvb4v5phyc3pjwlr7m8g5")))) (build-system haskell-build-system) (properties '((upstream-name . "exception-transformers"))) (inputs (list ghc-fail ghc-transformers-compat)) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit)) (home-page "https://hackage.haskell.org/package/exception-transformers") (synopsis "Type classes and monads for unchecked extensible exceptions") (description "This package provides type classes, a monad and a monad transformer that support unchecked extensible exceptions as well as asynchronous exceptions. It is compatible with the transformers package.") (license license:bsd-3))) (define-public ghc-tree-diff (package (name "ghc-tree-diff") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "tree-diff" version)) (sha256 (base32 "0g3lsp067dq1ydvj2im4nlfxa65g9zjmjjkv91dhjhnrklir10q0")))) (build-system haskell-build-system) (properties '((upstream-name . "tree-diff"))) (inputs (list ghc-aeson ghc-ansi-terminal ghc-ansi-wl-pprint ghc-base-compat ghc-bytestring-builder ghc-hashable ghc-parsers ghc-primitive ghc-quickcheck ghc-scientific ghc-semialign ghc-strict ghc-tagged ghc-these ghc-unordered-containers ghc-uuid-types ghc-vector)) (native-inputs (list ghc-tasty ghc-tasty-golden ghc-tasty-quickcheck ghc-trifecta)) (home-page "https://github.com/phadej/tree-diff") (synopsis "Compute difference between (expression) trees") (description "This Haskell library provides a function for computing the difference between (expression) trees. It also provides a way to compute the difference between arbitrary abstract datatypes (ADTs) using @code{Generics}-derivable helpers.") (license license:bsd-3))) (define-public ghc-trifecta (package (name "ghc-trifecta") (version "2.1.2") (source (origin (method url-fetch) (uri (hackage-uri "trifecta" version)) (sha256 (base32 "1akx8m6mgskwsbhsf90cxlqjq23jk4pwaxagvm923dpncwrlwfla")))) (build-system haskell-build-system) (properties '((upstream-name . "trifecta"))) (inputs (list ghc-ansi-terminal ghc-blaze-builder ghc-blaze-html ghc-blaze-markup ghc-charset ghc-comonad ghc-fingertree ghc-hashable ghc-indexed-traversable ghc-lens ghc-parsers ghc-prettyprinter ghc-prettyprinter-ansi-terminal ghc-profunctors ghc-reducers ghc-unordered-containers ghc-utf8-string)) (native-inputs (list ghc-quickcheck)) (arguments `(#:cabal-revision ("1" "0a7cfbd04w3zbm234mmpib9mxar46ra5xvb62gcnbmixr7b343j9"))) (home-page "https://github.com/ekmett/trifecta/") (synopsis "Parser combinator library with convenient diagnostics") (description "Trifecta is a modern parser combinator library for Haskell, with slicing and Clang-style colored diagnostics.") (license license:bsd-3))) (define-public ghc-tuple-th (package (name "ghc-tuple-th") (version "0.2.5") (source (origin (method url-fetch) (uri (hackage-uri "tuple-th" version)) (sha256 (base32 "1mrl4vvxmby7sf1paf7hklzidnr6wq55822i73smqyz0xpf3gsjn")))) (build-system haskell-build-system) (properties '((upstream-name . "tuple-th"))) (home-page "https://github.com/DanielSchuessler/tuple-th") (synopsis "Generate utility functions for tuples of statically known size for Haskell") (description "This Haskell package contains Template Haskell functions for generating functions similar to those in @code{Data.List} for tuples of statically known size.") (license license:bsd-3))) (define-public ghc-turtle (package (name "ghc-turtle") (version "1.5.25") (source (origin (method url-fetch) (uri (hackage-uri "turtle" version)) (sha256 (base32 "1hh2rbwk3m4iklk67f1l1a8shsng9qzs9132j6lpag7cgqkrmqdk")))) (build-system haskell-build-system) (properties '((upstream-name . "turtle"))) (inputs (list ghc-ansi-wl-pprint ghc-async ghc-clock ghc-foldl ghc-hostname ghc-managed ghc-system-filepath ghc-system-fileio ghc-streaming-commons ghc-temporary ghc-optparse-applicative ghc-optional-args ghc-unix-compat)) (native-inputs (list ghc-doctest)) (home-page "https://hackage.haskell.org/package/turtle") (synopsis "Shell programming, Haskell-style") (description "Turtle is a reimplementation of the Unix command line environment in Haskell so that you can use Haskell as both a shell and a scripting language. Features include: @itemize @item Batteries included: Command an extended suite of predefined utilities. @item Interoperability: You can still run external shell commands. @item Portability: Works on Windows, OS X, and Linux. @item Exception safety: Safely acquire and release resources. @item Streaming: Transform or fold command output in constant space. @item Patterns: Use typed regular expressions that can parse structured values. @item Formatting: Type-safe printf-style text formatting. @item Modern: Supports text and system-filepath. @end itemize Read \"Turtle.Tutorial\" for a detailed tutorial or \"Turtle.Prelude\" for a quick-start guide. Turtle is designed to be beginner-friendly, but as a result lacks certain features, like tracing commands. If you feel comfortable using turtle then you should also check out the Shelly library which provides similar functionality.") (license license:bsd-3))) (define-public ghc-typed-process (package (name "ghc-typed-process") (version "0.2.11.0") (source (origin (method url-fetch) (uri (hackage-uri "typed-process" version)) (sha256 (base32 "09gnj7m3jcl145fhslwzd30kwwc6hvdmqa4yr4smzn3m0ra5k34l")))) (build-system haskell-build-system) (properties '((upstream-name . "typed-process"))) (inputs (list ghc-async ghc-unliftio-core)) (native-inputs (list ghc-base64-bytestring ghc-hspec ghc-temporary ghc-base64-bytestring ghc-hspec ghc-temporary hspec-discover)) (home-page "https://github.com/fpco/typed-process") (synopsis "Run external processes with strong typing of streams") (description "This library provides the ability to launch and interact with external processes. It wraps around the @code{process} library, and intends to improve upon it.") (license license:expat))) (define-public ghc-uglymemo (package (name "ghc-uglymemo") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "uglymemo" version)) (sha256 (base32 "0ixqg5d0ly1r18jbgaa89i6kjzgi6c5hanw1b1y8c5fbq14yz2gy")))) (build-system haskell-build-system) (properties '((upstream-name . "uglymemo"))) (home-page "https://hackage.haskell.org/package/uglymemo") (synopsis "Simple memoization function for Haskell") (description "This package provides a simple (but internally ugly) memoization function.") (license license:public-domain))) (define-public ghc-unagi-chan (package (name "ghc-unagi-chan") (version "0.4.1.4") (source (origin (method url-fetch) (uri (hackage-uri "unagi-chan" version)) (sha256 (base32 "1d98a6s7rydjlf2p3jv6j7wglq8ahf8kgcibji5fiy6y0ymz9mnr")))) (build-system haskell-build-system) (properties '((upstream-name . "unagi-chan"))) (inputs (list ghc-atomic-primops ghc-primitive)) (arguments (list #:tests? #f)) ; counter is atomic... test: Counter broken: expecting 10000000 got 9999996 (home-page "https://hackage.haskell.org/package/unagi-chan") (synopsis "Fast concurrent queues with a Chan-like API, and more") (description "This library provides implementations of concurrent FIFO queues (for both general boxed and primitive unboxed values) that are fast, perform well under contention, and offer a Chan-like interface. The library may be of limited usefulness outside of x86 architectures where the fetch-and-add instruction is not available.") (license license:bsd-3))) (define-public ghc-unbounded-delays (package (name "ghc-unbounded-delays") (version "0.1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "unbounded-delays" version)) (sha256 (base32 "11b1vmlfv4pmmpl4kva58w7cf50xsj819cq3wzqgnbz3px9pxbar")))) (build-system haskell-build-system) (properties '((upstream-name . "unbounded-delays"))) (home-page "https://github.com/basvandijk/unbounded-delays") (synopsis "Unbounded thread delays and timeouts") (description "The @code{threadDelay} and @code{timeout} functions from the Haskell base library use the bounded @code{Int} type for specifying the delay or timeout period. This package provides alternative functions which use the unbounded @code{Integer} type.") (license license:bsd-3))) (define-public ghc-unexceptionalio (package (name "ghc-unexceptionalio") (version "0.5.1") (source (origin (method url-fetch) (uri (hackage-uri "unexceptionalio" version)) (sha256 (base32 "07py2nffdgxpz8sryvqcghzb2kiiagpdf5ja1dia4z0rpwi79smh")))) (build-system haskell-build-system) (properties '((upstream-name . "unexceptionalio"))) (native-inputs (list ghc-hunit ghc-test-framework ghc-test-framework-hunit)) (home-page "https://github.com/singpolyma/unexceptionalio") (synopsis "IO without any non-error, synchronous exceptions") (description "When you've caught all the exceptions that can be handled safely, this is what you're left with.") (license license:isc))) (define-public ghc-unicode-data (package (name "ghc-unicode-data") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "unicode-data" version)) (sha256 (base32 "0q2wygqg0z9b22gzi083cxm73a8iz14zqvdsjmix9i57jxa827xy")))) (build-system haskell-build-system) (properties '((upstream-name . "unicode-data"))) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/composewell/unicode-data") (synopsis "Access Unicode Character Database (UCD)") (description "This package provides Haskell APIs to efficiently access the <https://www.unicode.org/ucd/ Unicode character database> (UCD). Performance is the primary goal in the design of this package. The Haskell data structures are generated programmatically from the UCD files.") (license license:asl2.0))) (define-public ghc-unicode-transforms (package (name "ghc-unicode-transforms") (version "0.4.0.1") (source (origin (method url-fetch) (uri (hackage-uri "unicode-transforms" version)) (sha256 (base32 "1z29jvli2rqkynfxni1gibl81458j7h8lrb8fg6lpnj8svhy2y1j")))) (build-system haskell-build-system) (properties '((upstream-name . "unicode-transforms"))) (inputs (list ghc-unicode-data)) (native-inputs (list ghc-quickcheck ghc-quickcheck ghc-hspec ghc-split)) (arguments `(#:cabal-revision ("2" "1imm3svpz2shilj2kmmmcyy5yd4c1mpmz5v1gvjrr98hrab2i9x7"))) (home-page "https://github.com/composewell/unicode-transforms") (synopsis "Unicode normalization") (description "This library provides tools for fast Unicode 12.1.0 normalization in Haskell (normalization forms C, KC, D, and KD).") (license license:bsd-3))) (define-public ghc-union-find (package (name "ghc-union-find") (version "0.2") (source (origin (method url-fetch) (uri (hackage-uri "union-find" version)) (sha256 (base32 "1v7hj42j9w6jlzi56jg8rh4p58gfs1c5dx30wd1qqvn0p0mnihp6")))) (build-system haskell-build-system) (properties '((upstream-name . "union-find"))) (home-page "https://github.com/nominolo/union-find") (synopsis "Efficient union and equivalence testing of sets") (description "The Union/Find algorithm implements these operations in (effectively) constant-time: @enumerate @item Check whether two elements are in the same equivalence class. @item Create a union of two equivalence classes. @item Look up the descriptor of the equivalence class. @end enumerate\n") (license license:bsd-3))) (define-public ghc-uniplate (package (name "ghc-uniplate") (version "1.6.13") (source (origin (method url-fetch) (uri (hackage-uri "uniplate" version)) (sha256 (base32 "1lis5qcb5j7yzd1cqjaqpb6bmkyjfb7l4nhk3ykmcma4513cjxz7")))) (build-system haskell-build-system) (properties '((upstream-name . "uniplate"))) (inputs (list ghc-syb ghc-hashable ghc-unordered-containers)) (home-page "https://github.com/ndmitchell/uniplate") (synopsis "Simple, concise and fast generic operations") (description "Uniplate is a library for writing simple and concise generic operations. Uniplate has similar goals to the original Scrap Your Boilerplate work, but is substantially simpler and faster.") (license license:bsd-3))) (define-public ghc-unique (package (name "ghc-unique") (version "0.4.7.9") (source (origin (method url-fetch) (uri (hackage-uri "Unique" version)) (sha256 (base32 "14f1qnmhdmbam8qis725dhwq1mk9h86fsnzhkwhsx73ny9z29s1l")) (patches (search-patches "ghc-unique-support-newer-hashable.patch")))) (build-system haskell-build-system) (properties '((upstream-name . "Unique"))) (inputs (list ghc-extra ghc-hashable ghc-unordered-containers)) (native-inputs (list ghc-hspec ghc-quickcheck)) (arguments `(#:cabal-revision ("1" "10s0npnfkh7naj49afmyrvnilikp6426fbhi49f97pxrgcmy4dvw"))) (home-page "https://hackage.haskell.org/package/Unique") (synopsis "Haskell functionality like \"uniq\" tool") (description "This library provides the functions to find unique and duplicate elements in a list.") (license license:bsd-3))) (define-public ghc-unix-compat (package (name "ghc-unix-compat") (version "0.5.4") (source (origin (method url-fetch) (uri (hackage-uri "unix-compat" version)) (sha256 (base32 "1cd4lh2c16h7y5hzrcn5l9vir8aq2wcizwksppnagklsdsfmf942")))) (build-system haskell-build-system) (properties '((upstream-name . "unix-compat"))) (arguments `(#:cabal-revision ("2" "0mik6xb1jdmb2jlxlmzf0517mxfj0c1j2i4r6h5212m4q6znqqcm"))) (home-page "https://github.com/jacobstanley/unix-compat") (synopsis "Portable POSIX-compatibility layer") (description "This package provides portable implementations of parts of the @code{unix} package. This package re-exports the @code{unix} package when available. When it isn't available, portable implementations are used.") (license license:bsd-3))) (define-public ghc-unix-compat-7 (package (name "ghc-unix-compat") (version "0.7.1") (source (origin (method url-fetch) (uri (hackage-uri "unix-compat" version)) (sha256 (base32 "0gz30f4g3gyjz60jbcg072ms67pwdn4by6wvdkg63hjshgl0cj60")))) (build-system haskell-build-system) (properties '((upstream-name . "unix-compat"))) (native-inputs (list ghc-monad-parallel ghc-hspec ghc-hunit ghc-extra ghc-temporary)) (home-page "https://github.com/haskell-pkg-janitors/unix-compat") (synopsis "Portable POSIX-compatibility layer") (description "This package provides portable implementations of parts of the unix package. This package re-exports the unix package when available. When it isn't available, portable implementations are used.") (license license:bsd-3))) (define-public ghc-unix-time (package (name "ghc-unix-time") (version "0.4.9") (source (origin (method url-fetch) (uri (hackage-uri "unix-time" version)) (sha256 (base32 "024bmjy16mwdyf4rkyy6l2s63ym5gg04vxdk5ylml1hfhva381s9")))) (build-system haskell-build-system) (properties '((upstream-name . "unix-time"))) (inputs (list ghc-old-time)) (native-inputs (list ghc-old-locale ghc-quickcheck ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/unix-time") (synopsis "Unix time parser/formatter and utilities") (description "This library provides fast parsing and formatting utilities for Unix time in Haskell.") (license license:bsd-3))) (define-public ghc-unliftio (package (name "ghc-unliftio") (version "0.2.25.0") (source (origin (method url-fetch) (uri (hackage-uri "unliftio" version)) (sha256 (base32 "0aqiia15p5y0jddk6fsb00das035f8x5cpkzrmc9x3z7j4ia51gv")))) (build-system haskell-build-system) (properties '((upstream-name . "unliftio"))) (inputs (list ghc-async ghc-safe-exceptions ghc-unliftio-core ghc-nats)) (native-inputs (list ghc-quickcheck ghc-hspec hspec-discover)) (home-page "https://github.com/fpco/unliftio/tree/master/unliftio#readme") (synopsis "Provides MonadUnliftIO typecplass for unlifting monads to IO") (description "This Haskell package provides the core @code{MonadUnliftIO} typeclass, a number of common instances, and a collection of common functions working with it.") (license license:expat))) (define-public ghc-unliftio-core (package (name "ghc-unliftio-core") (version "0.2.1.0") (source (origin (method url-fetch) (uri (hackage-uri "unliftio-core" version)) (sha256 (base32 "1qz3gxcq1x8fjgq6fqsnws5vgkgbjcx332p3hldxdnaninx4qf4r")))) (build-system haskell-build-system) (properties '((upstream-name . "unliftio-core"))) (arguments `(#:cabal-revision ("4" "0ah7x2k1p5d43iwr2xr12z5fk5jdxb9l7jjd73cr0lwbhmpp78pn"))) (home-page "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme") (synopsis "The MonadUnliftIO typeclass for unlifting monads to IO") (description "This Haskell package provides the core @code{MonadUnliftIO} typeclass, instances for base and transformers, and basic utility functions.") (license license:expat))) (define-public ghc-unordered-containers (package (name "ghc-unordered-containers") (version "0.2.19.1") (source (origin (method url-fetch) (uri (hackage-uri "unordered-containers" version)) (sha256 (base32 "1li8s6qw8mgv6a7011y7hg0cn2nllv2g9sr9c1xb48nmw32vw9qv")))) (build-system haskell-build-system) (properties '((upstream-name . "unordered-containers"))) (inputs (list ghc-hashable)) (native-inputs (list ghc-chasingbottoms ghc-hunit ghc-quickcheck ghc-random ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-nothunks-bootstrap)) (arguments `(#:cabal-revision ("1" "0fcax3apnpxxy9maymclr6s2b4c28d3pkl3plbg0lv1mn0mh84fv"))) (home-page "https://github.com/haskell-unordered-containers/unordered-containers") (synopsis "Efficient hashing-based container types") (description "Efficient hashing-based container types. The containers have been optimized for performance critical use, both in terms of large data quantities and high speed.") (license license:bsd-3))) (define-public ghc-unordered-containers-bootstrap (package (inherit ghc-unordered-containers) (name "ghc-unordered-containers-bootstrap") (arguments `(#:tests? #f)) (inputs `(("ghc-hashable" ,ghc-hashable-bootstrap))) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-commutative-semigroups (package (name "ghc-commutative-semigroups") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "commutative-semigroups" version)) (sha256 (base32 "1bmafx363gfsd9wwrf3xyrw9mnw6anmc1zdfv0p8597y4lxxach7")))) (build-system haskell-build-system) (properties '((upstream-name . "commutative-semigroups"))) (home-page "https://hackage.haskell.org/package/commutative-semigroups") (synopsis "Commutative semigroups") (description "This package provides a commutative semigroup is a semigroup where the order of arguments to mappend does not matter.") (license license:bsd-3))) (define-public ghc-dependent-sum (package (name "ghc-dependent-sum") (version "0.7.2.0") (source (origin (method url-fetch) (uri (hackage-uri "dependent-sum" version)) (sha256 (base32 "1frw5965v8i6xqdgs95gg8asgdqcqnmfahz0pmbwiaw5ybn62rc2")))) (build-system haskell-build-system) (properties '((upstream-name . "dependent-sum"))) (inputs (list ghc-constraints-extras ghc-some)) (arguments `(#:cabal-revision ("1" "0qybk8x6gyvg8pgf84mywlfajlcvg9pp4rs1wfn9fa7ns6sms88n"))) (home-page "https://github.com/obsidiansystems/dependent-sum") (synopsis "Dependent sum type") (description "This package provides a dependent sum is a generalization of a particular way of thinking about the @code{Either} type. @code{Either a b} can be thought of as a 2-tuple @code{(tag, value)}, where the value of the tag determines the type of the value. In particular, either @code{tag = Left} and @code{value :: a} or @code{tag = Right} and @code{value :: b}. This package allows you to define your own dependent sum types by using your own \"tag\" types.") (license license:public-domain))) (define-public ghc-dependent-map (package (name "ghc-dependent-map") (version "0.4.0.0") (source (origin (method url-fetch) (uri (hackage-uri "dependent-map" version)) (sha256 (base32 "0b0zhyl3wkl4kkrxvq7vwjz3gn0ndxjjgyw9cky8a6xyv190pkjk")))) (build-system haskell-build-system) (properties '((upstream-name . "dependent-map"))) (inputs (list ghc-dependent-sum ghc-constraints-extras)) (arguments `(#:cabal-revision ("1" "160p9crvlx1sn60inkwxa6mv1h2d4fgqnpsb2km67zrkpdfyd2s2"))) (home-page "https://github.com/obsidiansystems/dependent-map") (synopsis "Dependent finite maps (partial dependent products)") (description "This package provides a type called @@DMap@@ which generalizes @@Data.Map.Map@@, allowing keys to specify the type of value that can be associated with them.") ;; XXX: The 'LICENSE' file lists several licenses, stating "I have no idea ;; which, if any, of the following licenses apply […]. Any modifications ;; by myself I release into the public domain […]"." (license license:public-domain))) (define-public ghc-unsafe (package (name "ghc-unsafe") (version "0.0") (source (origin (method url-fetch) (uri (hackage-uri "unsafe" version)) (sha256 (base32 "0hc6xr1i3hkz25gdgfx1jqgpsc9mwa05bkfynp0mcfdlyz6782nz")))) (build-system haskell-build-system) (properties '((upstream-name . "unsafe"))) (home-page "https://hackage.haskell.org/package/unsafe") (synopsis "Unified interface to unsafe functions") (description "Safe Haskell introduced the notion of safe and unsafe modules. In order to make as many as possible modules ``safe'', the well-known unsafe functions were moved to distinguished modules. This makes it hard to write packages that work with both old and new versions of GHC. This package provides a single module System.Unsafe that exports the unsafe functions from the base package. It provides them in a style ready for qualification, that is, you should import them by @code{import qualified System.Unsafe as Unsafe}.") (license license:bsd-3))) (define-public ghc-uri-bytestring (package (name "ghc-uri-bytestring") (version "0.3.3.1") (source (origin (method url-fetch) (uri (hackage-uri "uri-bytestring" version)) (sha256 (base32 "0s0k26v5x6601rbpkjkl5vp3dkp9xwj1dlgy4xkl470i4sna1rzk")))) (build-system haskell-build-system) (properties '((upstream-name . "uri-bytestring"))) (inputs (list ghc-attoparsec ghc-blaze-builder ghc-th-lift-instances)) (native-inputs (list ghc-hunit ghc-tasty ghc-tasty-hunit ghc-hedgehog ghc-tasty-hedgehog ghc-base-compat ghc-semigroups ghc-safe)) (home-page "https://github.com/Soostone/uri-bytestring") (synopsis "Haskell URI parsing as ByteStrings") (description "This Haskell package aims to be an RFC3986 compliant URI parser that uses ByteStrings for parsing and representing the URI data.") (license license:bsd-3))) (define-public ghc-utf8-light (package (name "ghc-utf8-light") (version "0.4.4.0") (source (origin (method url-fetch) (uri (hackage-uri "utf8-light" version)) (sha256 (base32 "0415hapndlsnzvmm3bk2fl42h4vn1izky7jb3lbby3mzzzd8d1fx")))) (build-system haskell-build-system) (properties '((upstream-name . "utf8-light"))) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/utf8-light") (synopsis "Lightweight unicode support for Haskell") (description "This package profides a class for encoding and decoding UTF8 strings with instances for several common types. It also includes several functions for working with UTF8. It aims to be lightweight, depending only on Base and including only one module.") (license license:bsd-3))) (define-public ghc-utf8-string (package (name "ghc-utf8-string") (version "1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "utf8-string" version)) (sha256 (base32 "16mh36ffva9rh6k37bi1046pgpj14h0cnmj1iir700v0lynxwj7f")))) (build-system haskell-build-system) (properties '((upstream-name . "utf8-string"))) (native-inputs (list ghc-hunit)) (home-page "https://github.com/glguy/utf8-string/") (synopsis "Support for reading and writing UTF8 Strings") (description "A UTF8 layer for Strings. The utf8-string package provides operations for encoding UTF8 strings to Word8 lists and back, and for reading and writing UTF8 without truncation.") (license license:bsd-3))) (define-public ghc-utility-ht (package (name "ghc-utility-ht") (version "0.0.17") (source (origin (method url-fetch) (uri (hackage-uri "utility-ht" version)) (sha256 (base32 "164sy6vdq5vspvfcj59hsmynn97x0wimw4xa5jyzkl4b0vp8lhb2")))) (build-system haskell-build-system) (properties '((upstream-name . "utility-ht"))) (native-inputs (list ghc-quickcheck ghc-doctest-exitcode-stdio ghc-doctest-lib)) (arguments `(#:cabal-revision ("1" "11i3n06rg580c87br6ic3m75bd83p9incz1nmkkqrawpr7s2fk5f"))) (home-page "https://hackage.haskell.org/package/utility-ht") (synopsis "Haskell helper functions for Lists, Maybes, Tuples, Functions") (description "This package includes Hakell modules providing various helper functions for Lists, Maybes, Tuples, Functions.") (license license:bsd-3))) (define-public ghc-uuid (package (name "ghc-uuid") (version "1.3.15") (source (origin (method url-fetch) (uri (hackage-uri "uuid" version)) (sha256 (base32 "0r05h16gd7fgfpq9iz43jcn9jzrgfa0gk4cv1xy0p4rli66rb1gq")))) (build-system haskell-build-system) (properties '((upstream-name . "uuid"))) (inputs (list ghc-cryptohash-sha1 ghc-cryptohash-md5 ghc-entropy ghc-network-info ghc-random ghc-uuid-types)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://github.com/hvr/uuid") (synopsis "Haskell library to create, compare, parse, and print UUIDs") (description "This Haskell library provides utilities creating, comparing, parsing and printing @dfn{Universally Unique Identifiers} or UUIDs.") (license license:bsd-3))) (define-public ghc-uuid-types (package (name "ghc-uuid-types") (version "1.0.5") (source (origin (method url-fetch) (uri (hackage-uri "uuid-types" version)) (sha256 (base32 "1pd7xd6inkmmwjscf7pmiwqjks9y0gi1p8ahqbapvh34gadvhs5d")))) (build-system haskell-build-system) (properties '((upstream-name . "uuid-types"))) (inputs (list ghc-hashable ghc-random)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (arguments `(#:tests? #f ; Missing GHC internal library ghc-byteorder. #:cabal-revision ("3" "10hpjshw6z8xnjpga47cazfdd4i27qvy4ash13lza2lmwf36k9ww"))) (home-page "https://github.com/hvr/uuid") (synopsis "Haskell type definitions for UUIDs") (description "This Haskell library contains type definitions for @dfn{Universally Unique Identifiers} or @uref{https://en.wikipedia.org/wiki/UUID, UUIDs}, and basic conversion functions.") (license license:bsd-3))) (define-public ghc-validation (package (name "ghc-validation") (version "1.1.2") (source (origin (method url-fetch) (uri (hackage-uri "validation" version)) (sha256 (base32 "15hhz2kj6h9zv568bvq79ymck3s3b89fpkasdavbwvyhfyjm5k8x")))) (build-system haskell-build-system) (properties '((upstream-name . "validation"))) (inputs (list ghc-assoc ghc-semigroups ghc-semigroupoids ghc-bifunctors ghc-lens)) (native-inputs (list ghc-hedgehog ghc-hunit)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "validation.cabal" (("\\b(hedgehog|lens)\\s+[^,]+" all dep) dep))))))) (home-page "https://github.com/qfpl/validation") (synopsis "Data-type like Either but with an accumulating Applicative") (description "A data-type like Either but with differing properties and type-class instances. Library support is provided for this different representation, including @code{lens}-related functions for converting between each and abstracting over their similarities. The @code{Validation} data type is isomorphic to @code{Either}, but has an instance of @code{Applicative} that accumulates on the error side. That is to say, if two (or more) errors are encountered, they are appended using a @{Semigroup} operation. As a consequence of this @code{Applicative} instance, there is no corresponding @code{Bind} or @code{Monad} instance. @code{Validation} is an example of, \"An applicative functor that is not a monad.\"") (license license:bsd-3))) (define-public ghc-validity (package (name "ghc-validity") (version "0.12.0.1") (source (origin (method url-fetch) (uri (hackage-uri "validity" version)) (sha256 (base32 "1j9yswqas9dpb9mv132myfn1rky5vbh5gdvcxbb7p93k5c2y4g0w")))) (build-system haskell-build-system) (properties '((upstream-name . "validity"))) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/NorfairKing/validity#readme") (synopsis "Validity typeclass") (description "Values of custom types usually have invariants imposed upon them. This package provides the @code{Validity} type class, which makes these invariants explicit by providing a function to check whether the invariants hold.") (license license:expat))) (define-public ghc-vault (package (name "ghc-vault") (version "0.3.1.5") (source (origin (method url-fetch) (uri (hackage-uri "vault" version)) (sha256 (base32 "181ksk1yixjg0jiggw5jvm8am8m8c7lim4xaixf8qnaqvxm6namc")))) (build-system haskell-build-system) (properties '((upstream-name . "vault"))) (inputs (list ghc-unordered-containers ghc-hashable ghc-semigroups)) (arguments `(#:cabal-revision ("2" "1bjwv3nv8jfhrdxa5kn3gvgxmyalpq7592bvyl7bpvcc7bbkfkf3"))) (home-page "https://github.com/HeinrichApfelmus/vault") (synopsis "Persistent store for arbitrary values") (description "This package provides vaults for Haskell. A vault is a persistent store for values of arbitrary types. It's like having first-class access to the storage space behind @code{IORefs}. The data structure is analogous to a bank vault, where you can access different bank boxes with different keys; hence the name. Also provided is a @code{locker} type, representing a store for a single element.") (license license:bsd-3))) (define-public ghc-vector (package (name "ghc-vector") (version "0.12.3.1") (outputs '("out" "doc")) (source (origin (method url-fetch) (uri (hackage-uri "vector" version)) (sha256 (base32 "0dczbcisxhhix859dng5zhxkn3xvlnllsq60apqzvmyl5g056jpv")))) (build-system haskell-build-system) (properties '((upstream-name . "vector"))) ;; FIXME: To simplify upgrading all Haskell packages, we leave the tests ;; disabled for now. (arguments `(#:tests? #f)) (inputs (list ghc-primitive ;; ("ghc-hunit" ,ghc-hunit) ;; ("ghc-test-framework" ,ghc-test-framework) ;; ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) ;; ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2) )) (home-page "https://github.com/haskell/vector") (synopsis "Efficient Arrays") (description "This library provides an efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework.") (license license:bsd-3))) (define-public ghc-vector-algorithms (package (name "ghc-vector-algorithms") (version "0.8.0.4") (source (origin (method url-fetch) (uri (hackage-uri "vector-algorithms" version)) (sha256 (base32 "0fxg6w0vh5g2vzw4alajj9ywdijfn9nyx28hbckhmwwbfxb6l5vn")))) (build-system haskell-build-system) (properties '((upstream-name . "vector-algorithms"))) (inputs (list ghc-vector)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/bos/math-functions") (synopsis "Algorithms for vector arrays in Haskell") (description "This Haskell library algorithms for vector arrays.") (license license:bsd-3))) (define-public ghc-vector-binary-instances (package (name "ghc-vector-binary-instances") (version "0.2.5.2") (source (origin (method url-fetch) (uri (hackage-uri "vector-binary-instances" version)) (sha256 (base32 "0kgmlb4rf89b18d348cf2k06xfhdpamhmvq7iz5pab5014hknbmp")))) (build-system haskell-build-system) (properties '((upstream-name . "vector-binary-instances"))) (inputs (list ghc-vector)) (native-inputs (list ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("3" "0av0k2gn90mf5ai74575bd368x73ljnr7xlkwsqmrs6zdzkw0i83"))) (home-page "https://github.com/bos/vector-binary-instances") (synopsis "Instances of Data.Binary and Data.Serialize for vector") (description "This library provides instances of @code{Binary} for the types defined in the @code{vector} package, making it easy to serialize vectors to and from disk. We use the generic interface to vectors, so all vector types are supported. Specific instances are provided for unboxed, boxed and storable vectors.") (license license:bsd-3))) (define-public ghc-vector-builder (package (name "ghc-vector-builder") (version "0.3.8.4") (source (origin (method url-fetch) (uri (hackage-uri "vector-builder" version)) (sha256 (base32 "0gc2n5j1ca07hd50shy7l5xybs1y720zrarzs5dj74dsdcpvmjxw")))) (build-system haskell-build-system) (properties '((upstream-name . "vector-builder"))) (inputs (list ghc-vector)) (native-inputs (list ghc-attoparsec ghc-quickcheck ghc-quickcheck-instances ghc-rerebase ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://github.com/nikita-volkov/vector-builder") (synopsis "Vector builder for Haskell") (description "This Haskell package provides an API for constructing vectors. It provides the composable @code{Builder} abstraction, which has instances of the @code{Monoid} and @code{Semigroup} classes. You would first use the @code{Builder} abstraction to specify the structure of the vector; then you can execute the builder to actually produce the vector.") (license license:expat))) (define-public ghc-vector-hashtables (package (name "ghc-vector-hashtables") (version "0.1.1.2") (source (origin (method url-fetch) (uri (hackage-uri "vector-hashtables" version)) (sha256 (base32 "0hrjvy9qg1m5g3w91zxy4syqmp8jk7ajjbxbzkhy282dwfigkyd2")))) (build-system haskell-build-system) (inputs (list ghc-primitive ghc-vector ghc-hashable)) (native-inputs (list ghc-hspec ghc-quickcheck ghc-quickcheck-instances hspec-discover)) (home-page "https://github.com/klapaucius/vector-hashtables#readme") (synopsis "Efficient vector-based mutable hashtables implementation") (description "This package provides efficient vector-based hashtable implementation similar to .NET Generic Dictionary implementation (at the time of 2015).") (license license:bsd-3))) (define-public ghc-vector-th-unbox (package (name "ghc-vector-th-unbox") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "vector-th-unbox" version)) (sha256 (base32 "0j81m09xxv24zziv0nanfppckzmas5184jr3npjhc9w49r3cm94a")))) (build-system haskell-build-system) (properties '((upstream-name . "vector-th-unbox"))) (inputs (list ghc-vector)) (native-inputs (list ghc-data-default)) (arguments `(#:cabal-revision ("3" "0ki133sixq8pkfys36nl25jzdvnw40qq2bnskdmk2zyjhckdjcna"))) (home-page "https://github.com/tsurucapital/vector-th-unbox") (synopsis "Deriver for Data.Vector.Unboxed using Template Haskell") (description "This Haskell library provides a Template Haskell deriver for unboxed vectors, given a pair of coercion functions to and from some existing type with an Unbox instance.") (license license:bsd-3))) (define-public ghc-void (package (name "ghc-void") (version "0.7.3") (source (origin (method url-fetch) (uri (hackage-uri "void" version)) (sha256 (base32 "05vk3x1r9a2pqnzfji475m5gdih2im1h7rbi2sc67p1pvj6pbbsk")))) (build-system haskell-build-system) (properties '((upstream-name . "void"))) (inputs (list ghc-semigroups ghc-hashable)) (home-page "https://github.com/ekmett/void") (synopsis "Logically uninhabited data type") (description "A Haskell 98 logically uninhabited data type, used to indicate that a given term should not exist.") (license license:bsd-3))) (define-public ghc-vty (package (name "ghc-vty") (version "5.37") (source (origin (method url-fetch) (uri (hackage-uri "vty" version)) (sha256 (base32 "1w6dc25npvlaflxcyzdssnymgi7x03zkwg7swyjw6cjjfdmkgqb7")))) (build-system haskell-build-system) (properties '((upstream-name . "vty"))) (inputs (list ghc-blaze-builder ghc-microlens ghc-microlens-mtl ghc-microlens-th ghc-hashable ghc-parallel ghc-utf8-string ghc-vector ghc-ansi-terminal)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-quickcheck-assertions ghc-random ghc-smallcheck ghc-string-qq ghc-test-framework ghc-test-framework-hunit ghc-test-framework-smallcheck)) (home-page "https://github.com/jtdaugherty/vty") (synopsis "Simple terminal UI library") (description "vty is a terminal GUI library in the niche of ncurses, intended to be easy to use and to provide good support for common terminal types.") (license license:bsd-3))) (define-public ghc-vty-6 (package (inherit ghc-vty) (name "ghc-vty") (version "6.2") (source (origin (method url-fetch) (uri (hackage-uri "vty" version)) (sha256 (base32 "0ywqfdngfv5pnsk5pa99yizpbhdq856sy3z70q2hmpmlc2r4h7vg")))) (properties '((upstream-name . "vty"))) (inputs (list ghc-blaze-builder ghc-microlens ghc-microlens-mtl ghc-utf8-string ghc-vector)))) (define-public ghc-vty-crossplatform (package (name "ghc-vty-crossplatform") (version "0.4.0.0") (source (origin (method url-fetch) (uri (hackage-uri "vty-crossplatform" version)) (sha256 (base32 "06iwxgqrqzz05hmic7z5hxd48x0i49sk935vm0xfi0xq28sl7r9m")))) (build-system haskell-build-system) (properties '((upstream-name . "vty-crossplatform"))) (inputs (list ghc-vty-6 ghc-vty-unix ghc-random ghc-string-qq)) (home-page "https://hackage.haskell.org/package/vty-crossplatform") (synopsis "Cross-platform support for Vty") (description "This package provides a generic interface for multiple Vty platforms in one package so you don't have to conditionally depend on them in your cabal file.") (license license:bsd-3))) (define-public ghc-vty-unix (package (name "ghc-vty-unix") (version "0.2.0.0") (source (origin (method url-fetch) (uri (hackage-uri "vty-unix" version)) (sha256 (base32 "1hfxc7qw884vlq8qshhyndl3zs10jc2xr6i69vhasjywkvh6gay2")))) (build-system haskell-build-system) (properties '((upstream-name . "vty-unix"))) (inputs (list ghc-blaze-builder ghc-vty-6 ghc-vector ghc-utf8-string ghc-microlens ghc-microlens-mtl ghc-microlens-th ghc-ansi-terminal)) (home-page "https://hackage.haskell.org/package/vty-unix") (synopsis "Unix backend for Vty") (description "This package provides Unix terminal support for Vty.") (license license:bsd-3))) (define-public ghc-wave (package (name "ghc-wave") (version "0.2.0") (source (origin (method url-fetch) (uri (hackage-uri "wave" version)) (sha256 (base32 "149kgwngq3qxc7gxpkqb16j669j0wpv2f3gnvfwp58yg6m4259ki")))) (build-system haskell-build-system) (properties '((upstream-name . "wave"))) (arguments `(#:cabal-revision ("1" "19rxhnqhhv1qs35y723c15c8nifj8pakcrd09jlvg5271zg4qb0b"))) (inputs (list ghc-cereal ghc-data-default-class ghc-quickcheck ghc-temporary)) (native-inputs (list hspec-discover ghc-hspec)) (home-page "https://github.com/mrkkrp/wave") (synopsis "Work with WAVE and RF64 files in Haskell") (description "This package allows you to work with WAVE and RF64 files in Haskell.") (license license:bsd-3))) (define-public ghc-wcwidth (package (name "ghc-wcwidth") (version "0.0.2") (source (origin (method url-fetch) (uri (hackage-uri "wcwidth" version)) (sha256 (base32 "1n1fq7v64b59ajf5g50iqj9sa34wm7s2j3viay0kxpmvlcv8gipz")))) (build-system haskell-build-system) (properties '((upstream-name . "wcwidth"))) (inputs (list ghc-setlocale ghc-utf8-string ghc-attoparsec)) (home-page "https://github.com/solidsnack/wcwidth/") (synopsis "Haskell bindings to wcwidth") (description "This package provides Haskell bindings to your system's native wcwidth and a command line tool to examine the widths assigned by it. The command line tool can compile a width table to Haskell code that assigns widths to the Char type.") (license license:bsd-3))) (define-public ghc-weigh (package (name "ghc-weigh") (version "0.0.16") (source (origin (method url-fetch) (uri (hackage-uri "weigh" version)) (sha256 (base32 "13pbjr7fzqy3s9c1nd2jhfwzbpccmpfwdn7y46z9k2bfkch1jam9")))) (build-system haskell-build-system) (properties '((upstream-name . "weigh"))) (inputs (list ghc-split ghc-temporary)) (home-page "https://github.com/fpco/weigh#readme") (synopsis "Measure allocations of a Haskell functions/values") (description "This package provides tools to measure the memory usage of a Haskell value or function.") (license license:bsd-3))) (define-public ghc-wizards (package (name "ghc-wizards") (version "1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "wizards" version)) (sha256 (base32 "1clvbd1ckhvy29qrbmpkn7bya7300fq6znnps23nn3nxyrxhsr85")))) (build-system haskell-build-system) (properties '((upstream-name . "wizards"))) (inputs (list ghc-control-monad-free)) (arguments `(#:cabal-revision ("1" "095qd17zrdhqmcvmslbyzfa5sh9glvvsnsvnlz31gzsmi8nnsgim"))) (home-page "https://hackage.haskell.org/package/wizards") (synopsis "High level, generic library for interrogative user interfaces") (description "@code{wizards} is a package designed for the quick and painless development of @emph{interrogative} programs, which revolve around a dialogue with the user, who is asked a series of questions in a sequence much like an installation wizard. Everything from interactive system scripts, to installation wizards, to full-blown shells can be implemented with the support of @code{wizards}. It is developed transparently on top of a free monad, which separates out the semantics of the program from any particular interface. A variety of backends exist, including console-based @code{System.Console.Wizard.Haskeline} and @code{System.Console.Wizard.BasicIO}, and the pure @code{System.Console.Wizard.Pure}. It is also possible to write your own backends, or extend existing back-ends with new features. While both built-in IO backends operate on a console, there is no reason why @code{wizards} cannot also be used for making GUI wizard interfaces.") (license license:bsd-3))) (define-public ghc-wl-pprint (package (name "ghc-wl-pprint") (version "1.2.1") (source (origin (method url-fetch) (uri (hackage-uri "wl-pprint" version)) (sha256 (base32 "0kn7y8pdrv8f87zhd5mifcl8fy3b2zvnzmzwhdqhxxlyzwiq6z0c")))) (build-system haskell-build-system) (properties '((upstream-name . "wl-pprint"))) (home-page "https://hackage.haskell.org/package/wl-pprint") (synopsis "Wadler/Leijen pretty printer") (description "This is a pretty printing library based on Wadler's paper @i{A Prettier Printer}. This version allows the library user to declare overlapping instances of the @code{Pretty} class.") (license license:bsd-3))) (define-public ghc-wl-pprint-annotated (package (name "ghc-wl-pprint-annotated") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "wl-pprint-annotated" version)) (sha256 (base32 "1br7qyf27iza213inwhf9bm2k6in0zbmfw6w4clqlc9f9cj2nrkb")))) (build-system haskell-build-system) (properties '((upstream-name . "wl-pprint-annotated"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/minad/wl-pprint-annotated#readme") (synopsis "Wadler/Leijen pretty printer with annotation support") (description "Annotations are useful for coloring. This is a limited version of @code{wl-pprint-extras} without support for point effects and without the free monad. Like in @code{annotated-wl-pprint}, only annotations are supported. Compared to @code{annotated-wl-pprint} this library provides a slightly modernized interface.") (license license:bsd-3))) (define-public ghc-wl-pprint-text (package (name "ghc-wl-pprint-text") (version "1.2.0.2") (source (origin (method url-fetch) (uri (hackage-uri "wl-pprint-text" version)) (sha256 (base32 "0axivwh7bxmljxpfnccs66knxzrqck07byxmp2j737xbb26pf5cj")))) (build-system haskell-build-system) (properties '((upstream-name . "wl-pprint-text"))) (inputs (list ghc-base-compat)) (home-page "https://hackage.haskell.org/package/wl-pprint-text") (synopsis "Wadler/Leijen Pretty Printer for Text values") (description "A clone of wl-pprint for use with the text library.") (license license:bsd-3))) (define-public ghc-word-wrap (package (name "ghc-word-wrap") (version "0.5") (source (origin (method url-fetch) (uri (hackage-uri "word-wrap" version)) (sha256 (base32 "0i57233g4p9p8c0jf9mp3pvknwgv1lsrxm4mxjay38rw0372jpzq")))) (build-system haskell-build-system) (properties '((upstream-name . "word-wrap"))) (native-inputs (list ghc-hspec)) (home-page "https://github.com/jtdaugherty/word-wrap/") (synopsis "Haskell library for word-wrapping text") (description "The @code{word-wrap} Haskell library wraps long lines of text.") (license license:bsd-3))) (define-public ghc-word8 (package (name "ghc-word8") (version "0.1.3") (source (origin (method url-fetch) (uri (hackage-uri "word8" version)) (sha256 (base32 "12jx7f13d2h1djq4fh4dyrab61sm49mj1w61j3rzp2vjfm696c16")))) (build-system haskell-build-system) (properties '((upstream-name . "word8"))) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://hackage.haskell.org/package/word8") (synopsis "Word8 library for Haskell") (description "Word8 library to be used with @code{Data.ByteString}.") (license license:bsd-3))) (define-public ghc-wordexp (package (name "ghc-wordexp") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "wordexp" version)) (sha256 (base32 "1mbcrq89jz0dcibw66w0jdy4f4bfpx4zwjfs98rm3jjgdikwdzb4")))) (build-system haskell-build-system) (properties '((upstream-name . "wordexp"))) (native-inputs (list ghc-c2hs)) (inputs (list ghc-semigroups)) (home-page "https://hackage.haskell.org/package/wordexp") (synopsis "Library wrapping @code{wordexp} for Haskell") (description "@code{wordexp(3)} wrapper library for Haskell to perform word expansion like a posix-shell.") (license license:bsd-3))) (define-public ghc-x11 (package (name "ghc-x11") (version "1.10.3") (source (origin (method url-fetch) (uri (hackage-uri "X11" version)) (sha256 (base32 "0hnj2q310a6s0h479hq8jsmywymvxdjxg13zw46mmdndynwd2jnq")))) (build-system haskell-build-system) (properties '((upstream-name . "X11"))) (arguments `(#:extra-directories ("libx11" "libxrandr" "libxinerama" "libxscrnsaver"))) (inputs (list libx11 libxrandr libxinerama libxscrnsaver ghc-data-default-class)) (home-page "https://github.com/xmonad/X11") (synopsis "Bindings to the X11 graphics library") (description "This package provides Haskell bindings to the X11 graphics library. The bindings are a direct translation of the C bindings.") (license license:bsd-3))) (define-public ghc-x11-xft (package (name "ghc-x11-xft") (version "0.3.4") (source (origin (method url-fetch) (uri (hackage-uri "X11-xft" version)) (sha256 (base32 "05m988r45jiqpxqsw3vafz158whlwfcl7v8z9nnqnqz9mggd4032")))) (build-system haskell-build-system) (properties '((upstream-name . "X11-xft"))) (arguments `(#:extra-directories ("libx11" "libxft" "xorgproto"))) (inputs (list ghc-x11 ghc-utf8-string libx11 libxft xorgproto)) (native-inputs (list pkg-config)) (home-page "https://hackage.haskell.org/package/X11-xft") (synopsis "Bindings to Xft") (description "Bindings to the Xft, X Free Type interface library, and some Xrender parts.") (license license:bsd-3))) (define-public ghc-xdg-basedir (package (name "ghc-xdg-basedir") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "xdg-basedir" version)) (sha256 (base32 "0azlzaxp2dn4l1nr7shsxah2magk1szf6fx0mv75az00qsjw6qg4")))) (build-system haskell-build-system) (properties '((upstream-name . "xdg-basedir"))) (home-page "https://github.com/willdonnelly/xdg-basedir") (synopsis "XDG Base Directory library for Haskell") (description "This package provides a library implementing the XDG Base Directory spec.") (license license:bsd-3))) (define-public ghc-xml (package (name "ghc-xml") (version "1.3.14") (source (origin (method url-fetch) (uri (hackage-uri "xml" version)) (sha256 (base32 "0g814lj7vaxvib2g3r734221k80k7ap9czv9hinifn8syals3l9j")))) (build-system haskell-build-system) (properties '((upstream-name . "xml"))) (home-page "https://github.com/GaloisInc/xml") (synopsis "Simple XML library for Haskell") (description "This package provides a simple XML library for Haskell.") (license license:bsd-3))) (define-public ghc-xml-conduit (package (name "ghc-xml-conduit") (version "1.9.1.2") (source (origin (method url-fetch) (uri (hackage-uri "xml-conduit" version)) (sha256 (base32 "1pa8arh2s7ql61pap9599j9ll94rb4j70c11vpgqymm01gx4d6wm")))) (build-system haskell-build-system) (properties '((upstream-name . "xml-conduit"))) (inputs (list ghc-conduit ghc-conduit-extra ghc-resourcet ghc-xml-types ghc-attoparsec ghc-data-default-class ghc-blaze-markup ghc-blaze-html)) (native-inputs (list ghc-hspec ghc-hunit ghc-doctest ghc-cabal-doctest)) (home-page "https://github.com/snoyberg/xml") (synopsis "Utilities for dealing with XML with the conduit package") (description "This package provides pure-Haskell utilities for dealing with XML with the @code{conduit} package.") (license license:expat))) (define-public ghc-xml-types (package (name "ghc-xml-types") (version "0.3.8") (source (origin (method url-fetch) (uri (hackage-uri "xml-types" version)) (sha256 (base32 "102cm0nvfmf9gn8hvn5z8qvmg931laczs33wwd5iyz9bc37f9mfs")))) (build-system haskell-build-system) (properties '((upstream-name . "xml-types"))) (home-page "https://john-millikin.com/software/haskell-xml/") (synopsis "Basic types for representing XML") (description "This package provides basic types for representing XML documents.") (license license:expat))) (define-public ghc-xml-hamlet (package (name "ghc-xml-hamlet") (version "0.5.0.2") (source (origin (method url-fetch) (uri (hackage-uri "xml-hamlet" version)) (sha256 (base32 "109fck1626d74s00ssjffg837584wf7dxpswkil37wqqfy94mw2z")))) (build-system haskell-build-system) (properties '((upstream-name . "xml-hamlet"))) (inputs (list ghc-shakespeare ghc-xml-conduit)) (native-inputs (list ghc-hspec ghc-hunit)) (home-page "http://www.yesodweb.com/") (synopsis "Hamlet-style quasiquoter for XML content") (description "This package provides a type-safe tool for generating XML code via quasi-quoting built on top of @code{ghc-shakespeare}.") (license license:bsd-3))) (define-public ghc-yaml (package (name "ghc-yaml") (version "0.11.11.1") (source (origin (method url-fetch) (uri (hackage-uri "yaml" version)) (sha256 (base32 "0j7xa3bgznaj35x3x184c0dy6hjflxkdwp3iprfnhmz2ds2dr790")))) (build-system haskell-build-system) (properties '((upstream-name . "yaml"))) (inputs (list ghc-aeson ghc-attoparsec ghc-conduit ghc-libyaml ghc-resourcet ghc-scientific ghc-unordered-containers ghc-vector ghc-optparse-applicative)) (native-inputs (list ghc-hunit ghc-base-compat ghc-hspec ghc-mockery ghc-raw-strings-qq ghc-temporary hspec-discover)) (arguments `(#:cabal-revision ("1" "1pqiq7x2ccjjx4ibf6l1fgvc673k2ny9cwh9061mf9pn5qhg51n5"))) (home-page "https://github.com/snoyberg/yaml#readme") (synopsis "Parsing and rendering YAML documents") (description "This package provides a library to parse and render YAML documents.") (license license:bsd-3))) (define-public ghc-zip-archive (package (name "ghc-zip-archive") (version "0.4.3") (source (origin (method url-fetch) (uri (hackage-uri "zip-archive" version)) (sha256 (base32 "01ax0idyvggizbdbg38nynmm5dk53apsjbj2xaq8v11ry6h0y1b8")))) (build-system haskell-build-system) (properties '((upstream-name . "zip-archive"))) (inputs (list ghc-zlib ghc-digest)) (native-inputs (list ghc-hunit ghc-temporary which unzip)) (arguments `(#:phases (modify-phases %standard-phases (add-before 'check 'set-PATH-for-tests (lambda* (#:key inputs #:allow-other-keys) (let ((unzip (assoc-ref inputs "unzip")) (which (assoc-ref inputs "which")) (path (getenv "PATH"))) (setenv "PATH" (string-append unzip "/bin:" which "/bin:" path)) #t)))))) (home-page "https://github.com/jgm/zip-archive") (synopsis "Zip archive library for Haskell") (description "The zip-archive library provides functions for creating, modifying, and extracting files from zip archives in Haskell.") (license license:bsd-3))) (define-public ghc-zlib (package (name "ghc-zlib") (version "0.6.3.0") (source (origin (method url-fetch) (uri (hackage-uri "zlib" version)) (sha256 (base32 "1nh4xsm3kgsg76jmkcphvy7hhslg9hx1s75mpsskhi2ksjd9ialy")))) (build-system haskell-build-system) (properties '((upstream-name . "zlib"))) (arguments `(#:extra-directories ("zlib"))) (inputs (list zlib)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-quickcheck)) (home-page "https://hackage.haskell.org/package/zlib") (synopsis "Compression and decompression in the gzip and zlib formats") (description "This package provides a pure interface for compressing and decompressing streams of data represented as lazy @code{ByteString}s. It uses the zlib C library so it has high performance. It supports the @code{zlib}, @code{gzip} and @code{raw} compression formats. It provides a convenient high level API suitable for most tasks and for the few cases where more control is needed it provides access to the full zlib feature set.") (license license:bsd-3))) (define-public ghc-zlib-bindings (package (name "ghc-zlib-bindings") (version "0.1.1.5") (source (origin (method url-fetch) (uri (hackage-uri "zlib-bindings" version)) (sha256 (base32 "02ciywlz4wdlymgc3jsnicz9kzvymjw1www2163gxidnz4wb8fy8")))) (build-system haskell-build-system) (properties '((upstream-name . "zlib-bindings"))) (inputs (list ghc-zlib)) (native-inputs (list ghc-hspec ghc-quickcheck)) (arguments `(#:cabal-revision ("2" "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"))) (home-page "https://github.com/snapframework/zlib-bindings") (synopsis "Low-level bindings to the @code{zlib} package") (description "This package provides low-level bindings to the @code{zlib} package.") (license license:bsd-3))) (define-public ghc-zstd (package (name "ghc-zstd") (version "0.1.3.0") (source (origin (method url-fetch) (uri (hackage-uri "zstd" version)) (sha256 (base32 "0vghl48cxcqy72sqk2gpi7rvy5ya36j13vndaxi6kck6bqivbhm0")))) (build-system haskell-build-system) (properties '((upstream-name . "zstd"))) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2)) (home-page "https://github.com/luispedro/hs-zstd") (synopsis "Haskell bindings to the Zstandard compression algorithm") (description "This library provides Haskell bindings to the Zstandard compression algorithm, a fast lossless compression algorithm targeting real-time compression scenarios at zlib-level and better compression ratios.") (license license:bsd-3))) (define-public ghc-indexed-traversable (package (name "ghc-indexed-traversable") (version "0.1.2.1") (source (origin (method url-fetch) (uri (hackage-uri "indexed-traversable" version)) (sha256 (base32 "1926yzk0gc2vd6p12addj70fnh57504xl29yzvbcgssx5084r1gy")))) (build-system haskell-build-system) (properties '((upstream-name . "indexed-traversable"))) (inputs (list ghc-generic-deriving)) (home-page "https://hackage.haskell.org/package/indexed-traversable") (synopsis "Indexed Functor, Foldable, and Traversable typeclasses") (description "This Haskell package provides three useful generalizations: @example class Functor f => FunctorWithIndex i f | f -> i where imap :: (i -> a -> b) -> f a -> f b @end example @example class Foldable f => FoldableWithIndex i f | f -> i where ifoldMap :: Monoid m => (i -> a -> m) -> f a -> m @end example @example class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t) => TraversableWithIndex i t | t -> i where itraverse :: Applicative f => (i -> a -> f b) -> t a -> f (t b) @end example The @code{ghc-keys} package provides similar functionality, but uses associated @code{TypeFamilies} instead of @code{FunctionalDependencies}.") (license license:bsd-2))) (define-public ghc-type-equality (package (name "ghc-type-equality") (version "1") (source (origin (method url-fetch) (uri (hackage-uri "type-equality" version)) (sha256 (base32 "1s4cl11rvvv7n95i3pq9lmmx08kwh4z7l3d1hbv4wi8il81baa27")))) (build-system haskell-build-system) (properties '((upstream-name . "type-equality"))) (arguments `(#:cabal-revision ("4" "0sajw67mmk5syhbrwx4bz82j5cjhm04n4kjl0pp3dnphxg1m5nbw"))) (home-page "https://github.com/hesselink/type-equality") (synopsis "@code{Data.Type.Equality} compatibility package") (description "This library defines a propositional equality data type, shims @code{Data.Type.Equality} as well as possible for older GHC versions (< 7.8). @example data a :~: b where Refl :: a :~: a @end example The module @code{Data.Type.Equality.Hetero} shims @@code{:~~:} equality, and for compilers with @code{PolyKinds}.") (license license:bsd-3))) (define-public ghc-selective (package (name "ghc-selective") (version "0.5") (source (origin (method url-fetch) (uri (hackage-uri "selective" version)) (sha256 (base32 "18wd5wn8xaw0ilx34j292l06cqn6r2rri1wvxng8ygd8141sizdh")))) (build-system haskell-build-system) (properties '((upstream-name . "selective"))) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/snowleopard/selective") (synopsis "Selective applicative functors") (description "This package implements selective applicative functors, which allow you to declare your effects statically, and select which to execute dynamically. See the @uref{https://www.staff.ncl.ac.uk/andrey.mokhov/selective-functors.pdf, paper on selective functors} for more details.") (license license:expat))) (define-public ghc-keys (package (name "ghc-keys") (version "3.12.3") (source (origin (method url-fetch) (uri (hackage-uri "keys" version)) (sha256 (base32 "0ik6wsff306dnbz0v3gpiajlj5b558hrk9176fzcb2fclf4447nm")))) (build-system haskell-build-system) (properties '((upstream-name . "keys"))) (inputs (list ghc-comonad ghc-free ghc-hashable ghc-semigroupoids ghc-semigroups ghc-tagged ghc-transformers-compat ghc-unordered-containers)) (arguments `(#:cabal-revision ("2" "1sb7ii9mhx77rhviqbmdc5r6wlimkmadxi1pyk7k3imdqcdzgjlp"))) (home-page "https://github.com/ekmett/keys/") (synopsis "Keyed functors and containers") (description "This package provides a bunch of ad hoc classes for accessing parts of a container. In practice this package is largely subsumed by the @code{ghc-lens}, but it is maintained for now as it has much simpler dependencies.") (license license:bsd-3))) (define-public ghc-pointed (package (name "ghc-pointed") (version "5.0.4") (source (origin (method url-fetch) (uri (hackage-uri "pointed" version)) (sha256 (base32 "1mv06x2hscs220w4acm5jwg96vi4faky6ir9hnljfry3n2r2xix3")))) (build-system haskell-build-system) (properties '((upstream-name . "pointed"))) (inputs (list ghc-data-default-class ghc-comonad ghc-kan-extensions ghc-semigroupoids ghc-semigroups ghc-tagged ghc-transformers-compat ghc-hashable ghc-unordered-containers)) (home-page "https://github.com/ekmett/pointed/") (synopsis "Pointed and copointed data types") (description "This Haskell library provides pointed and copointed data types.") (license license:bsd-3))) (define-public ghc-vector-instances (package (name "ghc-vector-instances") (version "3.4.2") (source (origin (method url-fetch) (uri (hackage-uri "vector-instances" version)) (sha256 (base32 "0rynfy4agx66mwslj50bfqdyrylr2zba3r6dg5yqykpnfxp2vn9l")))) (build-system haskell-build-system) (properties '((upstream-name . "vector-instances"))) (inputs (list ghc-vector ghc-semigroupoids ghc-comonad ghc-pointed ghc-keys ghc-hashable)) (home-page "https://github.com/ekmett/vector-instances") (synopsis "Orphan instances for @code{Data.Vector}") (description "This Haskell library provides a place for lots of orphan instances for the @code{ghc-vector} package.") (license license:bsd-3))) (define-public ghc-th-compat (package (name "ghc-th-compat") (version "0.1.4") (source (origin (method url-fetch) (uri (hackage-uri "th-compat" version)) (sha256 (base32 "1f5ssi24mnhmmi91dl5ddg2jwci6akwlznqggf56nyxl9b0pmyfq")))) (build-system haskell-build-system) (properties '((upstream-name . "th-compat"))) (native-inputs (list ghc-base-compat ghc-hspec hspec-discover)) (home-page "https://github.com/haskell-compat/th-compat") (synopsis "Backward- and forward-compatible @code{Quote} and @code{Code} types") (description "This package defines a @code{Language.Haskell.TH.Syntax.Compat} module, which backports the @code{Quote} and @code{Code} types to work across a wide range of @code{template-haskell} versions. On recent versions of @code{template-haskell} (2.17.0.0 or later), this module simply re-exports @code{Quote} and @code{Code} from @code{Language.Haskell.TH.Syntax}.") (license license:bsd-3))) (define-public ghc-filepattern (package (name "ghc-filepattern") (version "0.1.3") (source (origin (method url-fetch) (uri (hackage-uri "filepattern" version)) (sha256 (base32 "0dlnwnwhsfdkwm69z66wj5d2x9n3la55glq4fsn5rxm2kr1msi6c")))) (build-system haskell-build-system) (properties '((upstream-name . "filepattern"))) (inputs (list ghc-extra)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/ndmitchell/filepattern#readme") (synopsis "File path glob-like matching") (description "This package provides Haskell library for matching files using patterns such as @code{\\\"src\\/**\\/*.png\\\"} for all @@file{.png} files recursively under the @@file{src} directory. Some of its features include: @itemize @item All matching is O(n). @item Most functions pre-compute some information given only one argument. @item Uses @code{match} and @code{substitute} to extract suitable strings from the @code{*} and @code{**} matches, and substitutes them back into other patterns. @item Uses @code{step} and @code{matchMany} to perform bulk matching of many patterns against many paths simultaneously. @item Uses @code{System.FilePattern.Directory} to perform optimised directory traverals using patterns. @end itemize") (license license:bsd-3))) (define-public ghc-lib-parser-ex (package (name "ghc-lib-parser-ex") (version "9.2.0.4") (source (origin (method url-fetch) (uri (hackage-uri "ghc-lib-parser-ex" version)) (sha256 (base32 "138wkpy7qpdkp07028flab3lwq4b3mns0qcrkfrhclixlz8pi74v")))) (build-system haskell-build-system) (properties '((upstream-name . "ghc-lib-parser-ex"))) (inputs (list ghc-uniplate)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-extra)) (home-page "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme") (synopsis "Algorithms on GHC parse trees") (description "The @code{ghc-lib-parser-ex} package contains GHC API parse tree utilities.") (license license:bsd-3))) (define-public ghc-lift-type (package (name "ghc-lift-type") (version "0.1.1.1") (source (origin (method url-fetch) (uri (hackage-uri "lift-type" version)) (sha256 (base32 "039psym2ghkydk4qyycs3cxndrf85ab5hwzrqv0ajxcilqr11n0h")))) (build-system haskell-build-system) (properties '((upstream-name . "lift-type"))) (home-page "https://github.com/parsonsmatt/lift-type#readme") (synopsis "Lift a type from a Typeable constraint to a Template Haskell type") (description "This library provides a utility function @code{liftType}, which accepts a type application argument and returns the Template Haskell @code{Type} representation of it.") (license license:bsd-3))) (define-public ghc-unicode-collation (package (name "ghc-unicode-collation") (version "0.1.3.4") (source (origin (method url-fetch) (uri (hackage-uri "unicode-collation" version)) (sha256 (base32 "0afllqpds1ak3gailsn18r7pjdp1mqycdpwwcfifvmk9nadvx3dh")))) (build-system haskell-build-system) (properties '((upstream-name . "unicode-collation"))) (inputs (list ghc-th-lift-instances)) (native-inputs (list ghc-tasty ghc-tasty-quickcheck ghc-tasty-hunit ghc-unicode-transforms ghc-doctest)) (home-page "https://github.com/jgm/unicode-collation") (synopsis "Haskell implementation of the Unicode Collation Algorithm") (description "This library provides a pure Haskell implementation of the Unicode Collation Algorithm described at @uref{http://www.unicode.org/reports/tr10/}. It is not as fully-featured or as performant as @code{text-icu}, but it avoids a dependency on a large C library. Locale-specific tailorings are also provided.") (license license:bsd-3))) (define-public ghc-citeproc (package (name "ghc-citeproc") (version "0.8.1") (source (origin (method url-fetch) (uri (hackage-uri "citeproc" version)) (sha256 (base32 "003488k6ckfknh62lkxy07w72h95jcdx20kfc1njrxrqijyknlik")))) (build-system haskell-build-system) (properties '((upstream-name . "citeproc"))) (inputs (list ghc-safe ghc-case-insensitive ghc-vector ghc-scientific ghc-uniplate ghc-xml-conduit ghc-attoparsec ghc-data-default ghc-aeson ghc-file-embed ghc-pandoc-types ghc-unicode-collation ghc-base-compat ghc-aeson-pretty)) (native-inputs (list ghc-timeit ghc-diff)) (home-page "https://hackage.haskell.org/package/citeproc") (synopsis "Generate citations and bibliography from CSL styles") (description "@code{ghc-citeproc} parses @acronym{Citation Style Language, CSL} style files and uses them to generate a list of formatted citations and bibliography entries. For more information about CSL, see @uref{https://citationstyles.org/}.") (license license:bsd-2))) (define-public ghc-commonmark (package (name "ghc-commonmark") (version "0.2.2") (source (origin (method url-fetch) (uri (hackage-uri "commonmark" version)) (sha256 (base32 "0kmjc9xgzy33kxz842mw5rdywip3lmk7v3ambrs87nakawgl42xp")))) (build-system haskell-build-system) (properties '((upstream-name . "commonmark"))) (inputs (list ghc-unicode-transforms ghc-unicode-data)) (native-inputs (list ghc-tasty ghc-tasty-quickcheck ghc-tasty-hunit)) (home-page "https://github.com/jgm/commonmark-hs") (synopsis "Pure Haskell Commonmark parser") (description "This library provides the core data types and functions for parsing @uref{https://spec.commonmark.org, Commonmark}. The parser is fully Commonmark-compliant and passes the test suite. It is designed to be customizable and easily extensible. To customize the output, create an AST, or support a new output format, one need only define some new typeclass instances. It is also easy to add new syntax elements or modify existing ones. Accurate information about source positions is available for all block and inline elements. Thus the library can be used to create an accurate syntax highlighter or an editor with live preview. The parser has been designed for robust performance even in pathological cases that tend to cause stack overflows or exponential slowdowns in other parsers, with parsing speed that varies linearly with input length.") (license license:bsd-3))) (define-public ghc-commonmark-extensions (package (name "ghc-commonmark-extensions") (version "0.2.3.4") (source (origin (method url-fetch) (uri (hackage-uri "commonmark-extensions" version)) (sha256 (base32 "0pk6ckpb01pr9i2xyx2bm1sbkzbxy5vfy8l67pca1y0i0glyz150")))) (build-system haskell-build-system) (properties '((upstream-name . "commonmark-extensions"))) (inputs (list ghc-network-uri ghc-commonmark ghc-emojis)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://github.com/jgm/commonmark-hs") (synopsis "Extensions for @code{ghc-commonmark}") (description "This library provides some useful extensions for @code{ghc-commonmark} to parser core commonmark syntax: smart quotes, definition lists, tables, footnotes, math, and more.") (license license:bsd-3))) (define-public ghc-commonmark-pandoc (package (name "ghc-commonmark-pandoc") (version "0.2.1.3") (source (origin (method url-fetch) (uri (hackage-uri "commonmark-pandoc" version)) (sha256 (base32 "08bzi6q3jma7xy1ygbpj8li06zwsykmmgl01i4qmp6i9fj8czbbp")))) (build-system haskell-build-system) (properties '((upstream-name . "commonmark-pandoc"))) (inputs (list ghc-commonmark ghc-commonmark-extensions ghc-pandoc-types)) (home-page "https://github.com/jgm/commonmark-hs") (synopsis "Bridge between Commonmark and Pandoc AST") (description "This library provides typeclasses for rendering @code{ghc-commonmark} to Pandoc types.") (license license:bsd-3))) (define-public ghc-hclip (package (name "ghc-hclip") (version "3.0.0.4") (source (origin (method url-fetch) (uri (hackage-uri "Hclip" version)) (sha256 (base32 "04ppwm7vfzndrys8x1n8vfb41vzwx59r9xp4dkbiqmrms390pj6q")))) (build-system haskell-build-system) (properties '((upstream-name . "Hclip"))) (inputs (list ghc-strict)) (home-page "https://github.com/jetho/Hclip") (synopsis "Small cross-platform library for reading and modifying the system clipboard") (description "This package provides a small cross-platform library for reading and modifying the system clipboard. It uses @code{xclip} or @code{xsel} at runtime.") (license license:bsd-3))) (define-public ghc-hslua-module-path (package (name "ghc-hslua-module-path") (version "1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "hslua-module-path" version)) (sha256 (base32 "1sy2k4mb263kg85vkf39ja84xz5kvm6z61xn62jy1swhrvvd96sr")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-module-path"))) (inputs (list ghc-hslua-core ghc-hslua-marshalling ghc-hslua-packaging)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-lua)) (home-page "https://hslua.org/") (synopsis "Lua module to work with file paths") (description "This Haskell library provides a Lua module to work with file paths in a platform independent way.") (license license:expat))) (define-public ghc-template-haskell (package (name "ghc-template-haskell") (version "2.18.0.0") (source (origin (method url-fetch) (uri (hackage-uri "template-haskell" version)) (sha256 (base32 "0mcb7psdkyx9ddwkny0ymvadrsy2dnj82d6jdm23c63zv99z3g1r")))) (build-system haskell-build-system) (properties '((upstream-name . "template-haskell"))) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "template-haskell.cabal" (("ghc-boot-th == 9.2.1") "ghc-boot-th"))))))) (home-page "https://hackage.haskell.org/package/template-haskell") (synopsis "Support library for Template Haskell") (description "This package provides modules containing facilities for manipulating Haskell source code using Template Haskell. See @uref{http://www.haskell.org/haskellwiki/Template_Haskell} for more information.") (license license:bsd-3))) (define-public ghc-genvalidity-hspec (package (name "ghc-genvalidity-hspec") (version "1.0.0.2") (source (origin (method url-fetch) (uri (hackage-uri "genvalidity-hspec" version)) (sha256 (base32 "00sv0mzlvny5ch7c9fnd19szqd0pjrkvi080x1i62qa5fdzs5yc4")))) (build-system haskell-build-system) (properties '((upstream-name . "genvalidity-hspec"))) (inputs (list ghc-quickcheck ghc-genvalidity ghc-genvalidity-property ghc-hspec ghc-hspec-core ghc-validity)) (native-inputs (list hspec-discover)) (home-page "https://github.com/NorfairKing/validity#readme") (synopsis "Standard spec's for @code{GenValidity} instances") (description "This haskell library provides validity and validity-based testing for @code{ghc-hspec}.") (license license:expat))) (define-public ghc-binary-orphans (package (name "ghc-binary-orphans") (version "1.0.4.1") (source (origin (method url-fetch) (uri (hackage-uri "binary-orphans" version)) (sha256 (base32 "1lphlb7nar3d9db87wl0sh6srx03dad2ssxqak8bn9bdr2dphnsz")))) (build-system haskell-build-system) (properties '((upstream-name . "binary-orphans"))) (inputs (list ghc-data-array-byte)) (native-inputs (list ghc-onetuple ghc-quickcheck ghc-quickcheck-instances ghc-tagged ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("3" "085flwx82nvvyb479jma9j62q8i9sbz65rarsqhasgz4vczxqawx"))) (home-page "https://hackage.haskell.org/package/binary-orphans") (synopsis "Compatibility package for binary") (description "This package provides instances defined in later versions of @code{ghc-binary} package.") (license license:bsd-3))) (define-public ghc-netlink (package (name "ghc-netlink") (version "1.1.1.0") (source (origin (method url-fetch) (uri (hackage-uri "netlink" version)) (sha256 (base32 "1q8sxycv93sap6dgbw70scklnpjj5vav6qlvsxm5500jlvb3jnf0")))) (build-system haskell-build-system) (properties '((upstream-name . "netlink"))) (inputs (list ghc-cereal ghc-monad-loops ghc-pretty-hex ghc-language-c ghc-regex-pcre)) (home-page "https://github.com/Ongy/netlink-hs") (synopsis "Netlink communication for Haskell") (description "This is library provides utility to use Netlink from Haskell. The scope of this package extends over general Netlink support to specific implementations of Netlink families.") (license license:bsd-3))) (define-public ghc-doctest-driver-gen (package (name "ghc-doctest-driver-gen") (version "0.3.0.7") (source (origin (method url-fetch) (uri (hackage-uri "doctest-driver-gen" version)) (sha256 (base32 "0xxfp1x92qi8p5xkhyymylm8m3s56c7ivc82mv13sw14msds8miq")))) (build-system haskell-build-system) (properties '((upstream-name . "doctest-driver-gen"))) (native-inputs (list ghc-doctest)) (arguments (list #:tests? #f)) ; Test executable fails to run. (home-page "https://github.com/Hexirp/doctest-driver-gen#readme") (synopsis "Generate driver file for Doctest's Cabal integration") (description "@code{ghc-doctest-driver-gen} is a Doctest's driver file generator. It lets you automatically generate driver file for Doctest's Cabal integration.") (license license:bsd-3))) (define-public ghc-template-haskell-compat-v0208 (package (name "ghc-template-haskell-compat-v0208") (version "0.1.9.2") (source (origin (method url-fetch) (uri (hackage-uri "template-haskell-compat-v0208" version)) (sha256 (base32 "1sfp8bzkxqbk7cjc70sz51mm2mcq9lz6cqk9pch8g3qgcscf02f0")))) (build-system haskell-build-system) (properties '((upstream-name . "template-haskell-compat-v0208"))) (home-page "https://github.com/nikita-volkov/template-haskell-compat-v0208") (synopsis "Backwards compatibility layer for Template Haskell newer than 2.8") (description "This package provides a backwards compatibility layer for Template Haskell newer than 2.8.") (license license:expat))) (define-public ghc-mysql (package (name "ghc-mysql") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "mysql" version)) (sha256 (base32 "051w428arxbix06a52dacqjpnkfx42zbazxsd3l9d857dsd0kl3g")))) (build-system haskell-build-system) (properties '((upstream-name . "mysql"))) (arguments `(#:tests? #f)) ; TODO: Fails to connect to server. (inputs (list (list mariadb "dev") zlib openssl)) (native-inputs (list ghc-hspec)) (home-page "https://github.com/paul-rouse/mysql") (synopsis "Low-level MySQL client library") (description "This library provides Haskell bindings to the MySQL @code{mysqlclient} client library. It is a fairly faithful, low level library that implements most of the MySQL client API. The major departure from the C API is that in Haskell, resource management is mostly automatic and safe. This library deliberately avoids the question of providing a ``good'' API. Its purpose is to serve as a base upon which higher-level libraries can be built.") (license license:bsd-3))) (define-public ghc-blaze-textual (package (name "ghc-blaze-textual") (version "0.2.3.1") (source (origin (method url-fetch) (uri (hackage-uri "blaze-textual" version)) (sha256 (base32 "1chpaynfqiykqdk4jrmwxczj01wph8qfb411600l0gj3g34wlanx")))) (build-system haskell-build-system) (properties '((upstream-name . "blaze-textual"))) (inputs (list ghc-blaze-builder ghc-old-locale ghc-vector)) (native-inputs (list ghc-quickcheck ghc-double-conversion ghc-test-framework ghc-test-framework-quickcheck2)) (home-page "https://github.com/swamp-agr/blaze-textual") (synopsis "Fast rendering of common datatypes") (description "@code{ghc-blaze-textual} is a fast Haskell library for rendering common Haskell datatypes in text form using the @code{ghc-blaze-builder} library.") (license license:bsd-3))) (define-public ghc-mysql-simple (package (name "ghc-mysql-simple") (version "0.4.9") (source (origin (method url-fetch) (uri (hackage-uri "mysql-simple" version)) (sha256 (base32 "0hwv1hlr65m5l2zrrj5zmvrjz9y2814jy05l17l5jb4j4j5xw3z2")))) (build-system haskell-build-system) (properties '((upstream-name . "mysql-simple"))) (inputs (list ghc-attoparsec ghc-base16-bytestring ghc-blaze-builder ghc-mysql ghc-pcre-light ghc-old-locale ghc-vector openssl zlib)) (native-inputs (list ghc-hspec)) (arguments (list #:tests? #f)) ; Fail to build. (home-page "https://github.com/paul-rouse/mysql-simple") (synopsis "Mid-level MySQL client library") (description "This library implements mid-level Haskell bindings to the MySQL @code{mysqlclient} client library. It is aimed at speed and ease of use.") (license license:bsd-3))) (define-public ghc-persistent-qq (package (name "ghc-persistent-qq") (version "2.12.0.2") (source (origin (method url-fetch) (uri (hackage-uri "persistent-qq" version)) (sha256 (base32 "0pzlhwl4h9q358zc6d0m5zv0ii2yhf2lzw0a3v2spfc1ch4a014a")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-qq"))) (inputs (list ghc-haskell-src-meta ghc-persistent)) (native-inputs (list ghc-hunit ghc-aeson ghc-fast-logger ghc-hspec ghc-monad-logger ghc-persistent-sqlite ghc-resourcet ghc-unliftio)) (home-page "https://github.com/yesodweb/persistent#readme") (synopsis "Quasi-quoter for raw SQL for @code{ghc-persistent}") (description "This package provides a quasi-quoter for raw @acronym{SQL, Structured Query Language} for @code{ghc-persistent}.") (license license:expat))) (define-public ghc-persistent-mysql (package (name "ghc-persistent-mysql") (version "2.13.1.4") (source (origin (method url-fetch) (uri (hackage-uri "persistent-mysql" version)) (sha256 (base32 "10i8x5byqjqgqmjwfjj56dgjhnkv7wf4bg1pad9dd1ld3crlaf8d")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-mysql"))) (inputs (list ghc-persistent ghc-aeson ghc-blaze-builder ghc-conduit ghc-monad-logger ghc-mysql ghc-mysql-simple ghc-resourcet ghc-resource-pool ghc-unliftio-core)) (native-inputs (list ghc-fast-logger ghc-hspec ghc-http-api-data ghc-hunit ghc-path-pieces ghc-persistent-qq ghc-persistent-test ghc-quickcheck ghc-quickcheck-instances)) (arguments (list #:tests? #f)) ; Tests fail to build. (home-page "http://www.yesodweb.com/book/persistent") (synopsis "Backend for the @code{ghc-persistent} library using MySQL database server") (description "This package contains a backend for @code{ghc-persistent} using the MySQL database server. Internally it uses the @code{ghc-mysql-simple} and @code{mysql} packages in order to access the database. This package supports only MySQL 5.1 and above. However, it has been tested only on MySQL 5.5. Only the InnoDB storage engine is officially supported.") (license license:expat))) (define-public ghc-hspec-expectations-lifted (package (name "ghc-hspec-expectations-lifted") (version "0.10.0") (source (origin (method url-fetch) (uri (hackage-uri "hspec-expectations-lifted" version)) (sha256 (base32 "0a1qwz0n80lph8m9cq6cb06m8bsmqgg8ifx0acpylvrrkd8g3k92")))) (build-system haskell-build-system) (properties '((upstream-name . "hspec-expectations-lifted"))) (inputs (list ghc-hspec-expectations)) (home-page "https://hackage.haskell.org/package/hspec-expectations-lifted") (synopsis "Version of @code{ghc-hspec-expectations} generalized to @code{MonadIO}") (description "This package provides a version of @code{ghc-hspec-expectations} generalized to @code{MonadIO}.") (license license:expat))) (define-public ghc-string-conversions (package (name "ghc-string-conversions") (version "0.4.0.1") (source (origin (method url-fetch) (uri (hackage-uri "string-conversions" version)) (sha256 (base32 "150rdank90h7v08x0wq4dffjbxv2daf5v9sqfs5mab76kinwxg26")))) (build-system haskell-build-system) (properties '((upstream-name . "string-conversions"))) (inputs (list ghc-utf8-string)) (native-inputs (list hspec-discover ghc-hspec ghc-quickcheck-instances ghc-quickcheck)) (home-page "https://github.com/soenkehahn/string-conversions") (synopsis "Simplify dealing with different types for strings") (description "This package provides a simple type class for converting values of different string types into values of other string types.") (license license:bsd-3))) (define-public ghc-postgresql-libpq (package (name "ghc-postgresql-libpq") (version "0.9.5.0") (source (origin (method url-fetch) (uri (hackage-uri "postgresql-libpq" version)) (sha256 (base32 "0w2l687r9z92snvd0cjyv3dxghgr5alyw0vc2c6bp2600pc2nnfi")))) (build-system haskell-build-system) (properties '((upstream-name . "postgresql-libpq"))) (native-inputs (list postgresql)) (arguments `(#:cabal-revision ("1" "02g69cm1nqvvakyjs7ps2q9nkl4vpcdcxl41s7hzpy3vjhyar036"))) (home-page "https://github.com/haskellari/postgresql-libpq") (synopsis "Low-level bindings to @code{libpq}") (description "This package provides bindings to @code{libpq}: the C application programmer's interface to PostgreSQL. @code{libpq} is a set of library functions that allow client programs to pass queries to the PostgreSQL backend server and to receive the results of these queries.") (license license:bsd-3))) (define-public ghc-postgresql-simple (package (name "ghc-postgresql-simple") (version "0.6.4") (source (origin (method url-fetch) (uri (hackage-uri "postgresql-simple" version)) (sha256 (base32 "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d")))) (build-system haskell-build-system) (properties '((upstream-name . "postgresql-simple"))) (inputs (list ghc-time-compat ghc-aeson ghc-attoparsec ghc-bytestring-builder ghc-case-insensitive ghc-hashable ghc-only ghc-postgresql-libpq ghc-scientific ghc-uuid-types ghc-vector)) (native-inputs (list ghc-inspection-testing ghc-tasty ghc-tasty-hunit ghc-base16-bytestring ghc-cryptohash-md5 ghc-hunit ghc-tasty ghc-tasty-golden ghc-tasty-hunit)) (arguments `(#:cabal-revision ("8" "1qavb3qs1g307pc19k9y3yvqp0c1srwsplijvayn9ldp0bxdy6q8"))) (home-page "https://hackage.haskell.org/package/postgresql-simple") (synopsis "Mid-Level PostgreSQL client library") (description "This package provides a mid-Level PostgreSQL client library, forked from @code{ghc-mysql-simple}.") (license license:bsd-3))) (define-public ghc-persistent-postgresql (package (name "ghc-persistent-postgresql") (version "2.13.5.2") (source (origin (method url-fetch) (uri (hackage-uri "persistent-postgresql" version)) (sha256 (base32 "0p8hikvynl6yfdv030pk6vpczpw52ys8m4vba1qb9h2w1vkr4a3i")))) (build-system haskell-build-system) (properties '((upstream-name . "persistent-postgresql"))) (inputs (list ghc-persistent ghc-aeson ghc-attoparsec ghc-blaze-builder ghc-conduit ghc-monad-logger ghc-postgresql-simple ghc-postgresql-libpq ghc-resourcet ghc-resource-pool ghc-string-conversions ghc-unliftio-core ghc-vault ghc-unliftio)) (native-inputs (list ghc-persistent-qq ghc-persistent-test ghc-fast-logger ghc-hunit ghc-hspec ghc-hspec-expectations ghc-hspec-expectations-lifted ghc-quickcheck ghc-quickcheck-instances ghc-path-pieces ghc-http-api-data ghc-unordered-containers ghc-vector)) (arguments `(#:cabal-revision ("1" "1qbd3s0nyii6s69jvn8bw9hmxrqs41wimy9jn6j359w4rl1xslqc") #:tests? #f)) ; Tests fail to build. (home-page "http://www.yesodweb.com/book/persistent") (synopsis "Backend for the @code{ghc-persistent library} using Postgresql") (description "This package provides a backend for the @code{ghc-persistent} library using the @code{ghc-postgresql-simple} package.") (license license:expat))) (define-public ghc-filtrable (package (name "ghc-filtrable") (version "0.1.6.0") (source (origin (method url-fetch) (uri (hackage-uri "filtrable" version)) (sha256 (base32 "058jl7wjaxzvcayc9qzpikxvi9x42civ4sb02jh66rcvpndbfh5y")))) (build-system haskell-build-system) (properties '((upstream-name . "filtrable"))) (arguments `(#:tests? #f)) ; TODO: Needs tasty >=1.3.1 && <1.4 (native-inputs (list ghc-smallcheck ghc-tasty ghc-tasty-smallcheck)) (home-page "https://github.com/strake/filtrable.hs") (synopsis "Class of filtrable containers") (description "This package provides filtrable containers.") (license license:bsd-3))) (define-public ghc-filelock (package (name "ghc-filelock") (version "0.1.1.6") (source (origin (method url-fetch) (uri (hackage-uri "filelock" version)) (sha256 (base32 "122v6nv13rgi7nprdcpz8zc534i85yz6lshx0jx5mfqjam4zcx5g")))) (build-system haskell-build-system) (properties '((upstream-name . "filelock"))) (native-inputs (list ghc-async)) (home-page "https://github.com/haskell-pkg-janitors/filelock") (synopsis "Portable interface to file locking") (description "This package provides an interface to file locking functionalities.") (license license:public-domain))) (define-public ghc-hsyaml-aeson (package (name "ghc-hsyaml-aeson") (version "0.2.0.1") (source (origin (method url-fetch) (uri (hackage-uri "HsYAML-aeson" version)) (sha256 (base32 "139hqd07hkr8ykvrgmcshh9f3vp9dnrj6ks5nl8hgrpi990jsy5r")))) (build-system haskell-build-system) (properties '((upstream-name . "HsYAML-aeson"))) (inputs (list ghc-hsyaml ghc-aeson ghc-scientific ghc-unordered-containers ghc-vector)) (arguments `(#:cabal-revision ("5" "06v8vkn58d67yx4v59rhvxpc0sjrpi6k8krvjrvbyl0fn0v0jd14"))) (home-page "https://hackage.haskell.org/package/HsYAML-aeson") (synopsis "JSON to YAML adapter") (description "The @uref{https://yaml.org/spec/1.2/spec.html, YAML 1.2} format provides a much richer data-model and feature-set than the @uref{https://tools.ietf.org/html/rfc7159, @acronym{JavaScript Object Notation, JSON}} format. However, sometimes it's desirable to ignore the extra capabilities and treat YAML as if it was merely a more convenient markup format for humans to write JSON data. To this end this module provides a compatibility layer atop @code{ghc-hsyaml} ,which allows decoding YAML documents in the more limited JSON data-model while also providing convenience by reusing @code{ghc-aeson}'s @code{FromJSON} instances for decoding the YAML data into native Haskell data types.") (license license:gpl2+))) (define-public ghc-lukko (package (name "ghc-lukko") (version "0.1.1.3") (source (origin (method url-fetch) (uri (hackage-uri "lukko" version)) (sha256 (base32 "07xb926kixqv5scqdl8w34z42zjzdpbq06f0ha3f3nm3rxhgn3m8")))) (build-system haskell-build-system) (properties '((upstream-name . "lukko"))) (native-inputs (list ghc-async ghc-singleton-bool ghc-tasty ghc-tasty-expected-failure ghc-tasty-hunit ghc-temporary)) (arguments `(#:cabal-revision ("3" "1a6spmbiv3ias40sjrnsxfgr1d5mwg039a2q7113zb7i9n6c1m7g"))) (home-page "https://hackage.haskell.org/package/lukko") (synopsis "File locking") (description "This package provides access to platform dependent file locking APIs. There are alternative file locking packages: @itemize @item @code{GHC.IO.Handle.Lock} in @code{base >= 4.10} is good enough for most use cases. However, uses only @code{Handle}s so these locks cannot be used for intra-process locking. @item @code{ghc-filelock} doesn't support @acronym{OFD, open file descriptor} locking. @end itemize") (license (list license:gpl2+ license:bsd-3)))) (define-public ghc-dec (package (name "ghc-dec") (version "0.0.5") (source (origin (method url-fetch) (uri (hackage-uri "dec" version)) (sha256 (base32 "126z70ij9hhy8pajw0d5fl0hrppy5sh22j8nkx46i0g6qz3l7071")))) (build-system haskell-build-system) (properties '((upstream-name . "dec"))) (inputs (list ghc-boring)) (home-page "https://github.com/phadej/vec") (synopsis "Decidable propositions") (description "This package provides a @code{Dec} type for representing deciable relations. @example type Neg a = a -> Void data Dec a = Yes a | No (Neg a) @end example") (license license:bsd-3))) (define-public ghc-ansi2html (package (name "ghc-ansi2html") (version "0.9") (source (origin (method url-fetch) (uri (hackage-uri "Ansi2Html" version)) (sha256 (base32 "1dqq1rnx1w0cn4w11knmxvn7qy4lg4m39dgw4rs6r2pjqzgrwarh")))) (build-system haskell-build-system) (properties '((upstream-name . "Ansi2Html"))) (home-page "http://janzzstimmpfle.de/~jens/software/Ansi2Html/") (synopsis "Convert ANSI Terminal Sequences to nice HTML markup") (description "This package enables integration of terminal screen state in html pages.") (license license:bsd-3))) (define-public ghc-open-browser (package (name "ghc-open-browser") (version "0.2.1.0") (source (origin (method url-fetch) (uri (hackage-uri "open-browser" version)) (sha256 (base32 "0rna8ir2cfp8gk0rd2q60an51jxc08lx4gl0liw8wwqgh1ijxv8b")))) (build-system haskell-build-system) (properties '((upstream-name . "open-browser"))) (arguments (list #:phases #~(modify-phases %standard-phases (add-before 'configure 'patch-xdg-open (lambda* (#:key inputs #:allow-other-keys) (let ((xdg-open (assoc-ref inputs "xdg-utils"))) (substitute* "lib/Web/Browser/Linux.hs" (("xdg-open") (search-input-file inputs "/bin/xdg-open"))))))))) (inputs (list xdg-utils)) (home-page "https://github.com/rightfold/open-browser") (synopsis "Open a web browser from Haskell") (description "Haskell library for opening the web browser.") (license license:bsd-3))) (define-public ghc-singleton-bool (package (name "ghc-singleton-bool") (version "0.1.6") (source (origin (method url-fetch) (uri (hackage-uri "singleton-bool" version)) (sha256 (base32 "1pc34dbzx5g3vw5w03zifvqva3whyvxzfy3yh78qkpd05f0g98sw")))) (build-system haskell-build-system) (properties '((upstream-name . "singleton-bool"))) (inputs (list ghc-boring ghc-dec ghc-some)) (arguments `(#:cabal-revision ("2" "1l4nx664awgwzk3ih5idsgnj220jqdr1c55241xjv7fz7lwyhh5r"))) (home-page "https://github.com/phadej/singleton-bool#readme") (synopsis "Type-level booleans") (description "This package provides Type-level booleans.") (license license:bsd-3))) (define-public ghc-breakpoint (package (name "ghc-breakpoint") (version "0.1.2.1") (source (origin (method url-fetch) (uri (hackage-uri "breakpoint" version)) (sha256 (base32 "1bj3bccmrk5c7zxb29rwzz39l0ph6qk0crw1vdhhsrcybmdc96h5")))) (build-system haskell-build-system) (properties '((upstream-name . "breakpoint"))) (inputs (list ghc-pretty-simple ghc-ansi-terminal)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://hackage.haskell.org/package/breakpoint") (synopsis "Set breakpoints using a GHC plugin") (description "This package provides a plugin that allows you to set breakpoints for debugging purposes. See the [README](https://github.com/aaronallen8455/breakpoint#breakpoint) for details.") (license license:expat))) (define-public ghc-brick (package (name "ghc-brick") (version "2.3.1") (source (origin (method url-fetch) (uri (hackage-uri "brick" version)) (sha256 (base32 "160np0bz1mcfkp077yc936i026s3zv1czn8lj3k3qr6scldavw35")))) (build-system haskell-build-system) (properties '((upstream-name . "brick"))) (inputs (list ghc-vty-6 ghc-vty-crossplatform ghc-bimap ghc-data-clist ghc-microlens ghc-microlens-th ghc-microlens-mtl ghc-config-ini ghc-vector ghc-text-zipper ghc-unix-compat-7 ghc-word-wrap ghc-random)) (native-inputs (list ghc-quickcheck)) (home-page "https://github.com/jtdaugherty/brick/") (synopsis "Declarative terminal user interface library") (description "Brick helps you write @dfn{terminal user interfaces} (TUIs). You write an event handler and a drawing function and the library does the rest.") (license license:bsd-3))) (define-public ghc-brick-skylighting (package (name "ghc-brick-skylighting") (version "1.0") (source (origin (method url-fetch) (uri (hackage-uri "brick-skylighting" version)) (sha256 (base32 "1nw2x9zn0jlvykm89v80fh4187bxgn8l4cljgnf4mp4ci7aqjmkr")))) (build-system haskell-build-system) (properties '((upstream-name . "brick-skylighting"))) (inputs (list ghc-brick ghc-vty-6 ghc-skylighting-core)) (home-page "https://github.com/jtdaugherty/brick-skylighting/") (synopsis "Show syntax-highlighted text in your Brick UI") (description "This package provides a module to use Skylighting to perform syntax highlighting and display the results in Brick-based interfaces.") (license license:bsd-3))) (define-public ghc-githash (package (name "ghc-githash") (version "0.1.6.3") (source (origin (method url-fetch) (uri (hackage-uri "githash" version)) (sha256 (base32 "06zg1rif1rcxni1vacmr2bh1nbm6i62rjbikfr4xsyzq1sv7kfpw")))) (build-system haskell-build-system) (properties '((upstream-name . "githash"))) (inputs (list ghc-th-compat git)) (native-inputs (list ghc-hspec ghc-temporary ghc-unliftio hspec-discover)) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-git-path (lambda _ (substitute* "src/GitHash.hs" (("\"git\"") (string-append "\"" #$git "/bin/git\"")))))))) (home-page "https://github.com/snoyberg/githash#readme") (synopsis "Compile git revision info into Haskell projects") (description "Please see the README and documentation at <https://www.stackage.org/package/githash>") (license license:bsd-3))) (define-public ghc-git-lfs (package (name "ghc-git-lfs") (version "1.2.0") (source (origin (method url-fetch) (uri (hackage-uri "git-lfs" version)) (sha256 (base32 "1iv3s1c7gwmsima9z3rsphjligpnf7h3vc5c96zgq9b71cx81lba")))) (build-system haskell-build-system) (properties '((upstream-name . "git-lfs"))) (inputs (list ghc-http-client ghc-http-types ghc-aeson ghc-network-uri ghc-case-insensitive)) (home-page "https://hackage.haskell.org/package/git-lfs") (synopsis "Git Large File Storage protocol") (description "An implementation of the git-lfs protocol.") (license license:agpl3))) (define-public ghc-nothunks (package (name "ghc-nothunks") (version "0.1.3") (source (origin (method url-fetch) (uri (hackage-uri "nothunks" version)) (sha256 (base32 "0lqfhnyxhmhajvsgmz5h428pb5zrdy9zvbc5inzhd83cv31yk4f1")))) (build-system haskell-build-system) (properties '((upstream-name . "nothunks"))) (inputs (list ghc-vector)) ;(native-inputs (list ghc-hedgehog ghc-random ghc-tasty ghc-tasty-hedgehog)) (arguments (list #:tests? #f)) ; Fail to compile. (home-page "https://hackage.haskell.org/package/nothunks") (synopsis "Examine values for unexpected thunks") (description "Long lived application data typically should not contain any thunks. This library can be used to examine values for unexpected thunks, which can then be used in assertions. This can be invaluable in avoiding memory leaks, or tracking down existing ones.") (license license:expat))) (define-public ghc-nothunks-bootstrap (package (inherit ghc-nothunks) (name "ghc-nothunks-bootstrap") (arguments `(#:tests? #f)) (native-inputs '()) (properties '((hidden? #t))))) (define-public ghc-barbies (package (name "ghc-barbies") (version "2.0.4.0") (source (origin (method url-fetch) (uri (hackage-uri "barbies" version)) (sha256 (base32 "0v8bckxi58fkqgf1i1xd3100wp792pzd319xlfvmmw8z0ii1g872")))) (build-system haskell-build-system) (properties '((upstream-name . "barbies"))) (inputs (list ghc-distributive)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://github.com/jcpetruzza/barbies#readme") (synopsis "Classes for working with types that can change clothes") (description "Types that are parametric on a functor are like Barbies that have an outfit for each role. This package provides the basic abstractions to work with them comfortably.") (license license:bsd-3))) (define-public ghc-onetuple (package (name "ghc-onetuple") (version "0.3.1") (source (origin (method url-fetch) (uri (hackage-uri "OneTuple" version)) (sha256 (base32 "1vry21z449ph9k61l5zm7mfmdwkwszxqdlawlhvwrd1gsn13d1cq")))) (build-system haskell-build-system) (properties '((upstream-name . "OneTuple"))) (native-inputs (list ghc-hashable)) (arguments `(#:cabal-revision ("3" "0g4siv8s6dlrdsivap2qy6ig08y5bjbs93jk192zmgkp8iscncpw"))) (home-page "https://hackage.haskell.org/package/OneTuple") (synopsis "Singleton Tuple") (description "This package is a compatibility package for a singleton data type . > data Solo a = Solo a . Note: it's not a @@newtype@@ . @@Solo@@ is available in @@base-4.16@@ (GHC-9.2).") (license license:bsd-3))) (define-public ghc-indexed-traversable-instances (package (name "ghc-indexed-traversable-instances") (version "0.1.1.2") (source (origin (method url-fetch) (uri (hackage-uri "indexed-traversable-instances" version)) (sha256 (base32 "0jippsyqg8ss61z5vc6vfjmlrirwc69kr4azs5s9z0fcbj4lx6qg")))) (build-system haskell-build-system) (properties '((upstream-name . "indexed-traversable-instances"))) (inputs (list ghc-indexed-traversable ghc-onetuple ghc-tagged ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("2" "0yrww1y9zrnqwymik9kkdqkx81n3jhr0kq27lpvy1gp297hy7m80"))) (home-page "https://hackage.haskell.org/package/indexed-traversable-instances") (synopsis "More instances of FunctorWithIndex, FoldableWithIndex, TraversableWithIndex") (description "This package provides extra instances for type-classes in the [indexed-traversable](https://hackage.haskell.org/package/indexed-traversable) package. . The intention is to keep this package minimal; it provides instances that formely existed in @@lens@@ or @@optics-extra@@. We recommend putting other instances directly into their defining packages. The @@indexed-traversable@@ package is light, having only GHC boot libraries as its dependencies.") (license license:bsd-2))) (define-public ghc-witherable (package (name "ghc-witherable") (version "0.4.2") (source (origin (method url-fetch) (uri (hackage-uri "witherable" version)) (sha256 (base32 "0121ic4xkv3k568j23zp22a5lrv0k11h94fq7cbijd18fjr2n3br")))) (build-system haskell-build-system) (properties '((upstream-name . "witherable"))) (inputs (list ghc-base-orphans ghc-hashable ghc-unordered-containers ghc-vector ghc-indexed-traversable ghc-indexed-traversable-instances)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("3" "1f2bvl41by904lnr0dk6qgasqwadq2w48l7fj51bp2h8bqbkdjyc"))) (home-page "https://github.com/fumieval/witherable") (synopsis "Filterable traversable") (description "This package provides a stronger variant of `traverse` which can remove elements and generalised mapMaybe, catMaybes, filter") (license license:bsd-3))) (define-public ghc-hspec-discover (package (name "ghc-hspec-discover") (version "2.9.7") (source (origin (method url-fetch) (uri (hackage-uri "hspec-discover" version)) (sha256 (base32 "0536kdxjw6p8b6gcwvmr22jbmb6cgzbddi0fkd01b2m847z37sb5")))) (build-system haskell-build-system) (properties '((upstream-name . "hspec-discover"))) (native-inputs (list ghc-quickcheck ghc-hspec-meta ghc-mockery)) (home-page "http://hspec.github.io/") (synopsis "Automatically discover and run Hspec tests") (description "Automatically discover and run Hspec tests . <http://hspec.github.io/hspec-discover.html>") (license license:expat))) (define-public ghc-doctest-parallel (package (name "ghc-doctest-parallel") (version "0.2.6") (source (origin (method url-fetch) (uri (hackage-uri "doctest-parallel" version)) (sha256 (base32 "13hjwhdjw8jrj07zxkrrfbzr0mrk8gwyis1rbdi4ld4jbq3rr1z7")))) (build-system haskell-build-system) (properties '((upstream-name . "doctest-parallel"))) (inputs (list ghc-glob ghc-base-compat ghc-code-page ghc-extra ghc-paths ghc-random ghc-syb ghc-unordered-containers)) (native-inputs (list ghc-hunit ghc-quickcheck ghc-hspec ghc-hspec-core ghc-hspec-discover ghc-mockery ghc-setenv ghc-silently ghc-stringbuilder)) (arguments `(#:haddock? #f)) ; Setup.lhs: internal error when calculating transitive package dependencies. (home-page "https://github.com/martijnbastiaan/doctest-parallel#readme") (synopsis "Test interactive Haskell examples") (description "The doctest program checks examples in source code comments. It is modeled after doctest for Python (<https://docs.python.org/3/library/doctest.html>). . Documentation is at <https://github.com/martijnbastiaan/doctest-parallel#readme>.") (license license:expat))) (define-public ghc-pcg-random (package (name "ghc-pcg-random") (version "0.1.4.0") (source (origin (method url-fetch) (uri (hackage-uri "pcg-random" version)) (sha256 (base32 "09hnckb3xzb3spn79jvqlsbg05zm9r1l3dqq44ka07ik4zbagjbf")))) (build-system haskell-build-system) (properties '((upstream-name . "pcg-random"))) (inputs (list ghc-primitive ghc-random ghc-entropy)) (native-inputs (list ghc-doctest ghc-cabal-doctest)) (arguments `(#:cabal-revision ("1" "1f8h0lv34cmqaxccg2yf6q4s8r5g2s8q8s9kql212iggd2l3vv77"))) (home-page "https://github.com/cchalmers/pcg-random") (synopsis "Haskell bindings to the PCG random number generator") (description "PCG is a family of simple fast space-efficient statistically good algorithms for random number generation. Unlike many general-purpose RNGs, they are also hard to predict. . This library implements bindings to the standard C implementation. This includes the standard, unique, fast and single variants in the pcg family. There is a pure implementation that can be used as a generator with the random package as well as a faster primitive api that includes functions for generating common types. . The generators in this module are suitable for use in parallel but make sure threads don't share the same generator or things will go horribly wrong.") (license license:bsd-3))) (define-public ghc-random-bytestring (package (name "ghc-random-bytestring") (version "0.1.4") (source (origin (method url-fetch) (uri (hackage-uri "random-bytestring" version)) (sha256 (base32 "0f4n41gqxxggadysvx3vg2iq89z7i7692ccrfmiajq73lbp6y34j")))) (build-system haskell-build-system) (properties '((upstream-name . "random-bytestring"))) (inputs (list ghc-mwc-random ghc-nats ghc-pcg-random)) (home-page "https://www.github.com/larskuhtz/random-bytestring") (synopsis "Efficient generation of random bytestrings") (description "__This package is deprecated__. Please, use genByteString from the [random package (version >=1.2)](https://hackage.haskell.org/package/random) instead. . Efficient generation of random bytestrings. The implementation populates uninitialized memory with uniformily distributed random 64 bit words (and 8 bit words for remaining bytes at the end of the bytestring). . Random words are generated using the PRNG from the [mwc-random](https://hackage.haskell.org/package/mwc-random) package or the [pcg-random](https://hackage.haskell.org/package/pcg-random) package. It is also possible to use a custom PRNG by providing an instance for the RandomWords type class and using the function generate from the module \"Data.ByteString.Random.Internal\". . The generated byte strings are suitable for statistical applications. They are /not/ suitable for cryptographic applications. . ![benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.3.2/src/benchmarks.png) . ![detailed benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.3.2/src/benchmarks-details.png)") (license license:expat))) (define-public ghc-base64 (package (name "ghc-base64") (version "0.4.2.4") (source (origin (method url-fetch) (uri (hackage-uri "base64" version)) (sha256 (base32 "119mpqcv1rwkhwm69ga2b4f7hr825fa5wfm1w3i1szmhzh52s2k4")))) (build-system haskell-build-system) (properties '((upstream-name . "base64"))) (inputs (list ghc-text-short)) (native-inputs (list ghc-base64-bytestring ghc-quickcheck ghc-random-bytestring ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("4" "1lc32d5nxk0ry1pfn3ss55hi4cv6qj5nkkdn3j4y3lrdwyv7kbw2") #:tests? ,(not (or (%current-target-system) (target-x86-32?))))) (home-page "https://github.com/emilypi/base64") (synopsis "Modern RFC 4648-compliant Base64 library") (description "RFC 4648-compliant Base64 with an eye towards performance and modernity (additional support for RFC 7049 standards)") (license license:bsd-3))) (define-public ghc-ordered-containers (package (name "ghc-ordered-containers") (version "0.2.3") (source (origin (method url-fetch) (uri (hackage-uri "ordered-containers" version)) (sha256 (base32 "18w1dasny6xffbjlvmz9861l2xbkqlg2w5qxz9kw6frgfl2rg11n")))) (build-system haskell-build-system) (properties '((upstream-name . "ordered-containers"))) (home-page "https://hackage.haskell.org/package/ordered-containers") (synopsis "Haskell types") (description "Set- and Map-like types that remember the order elements were inserted") (license license:bsd-3))) (define-public ghc-cabal-syntax (package (name "ghc-cabal-syntax") (version "3.6.0.0") (source (origin (method url-fetch) (uri (hackage-uri "Cabal-syntax" version)) (sha256 (base32 "0lcj4g55sj5iv727g7k57pscgyj0fx3smwapm1gmd5qkc3yfa9fa")))) (build-system haskell-build-system) (properties '((upstream-name . "Cabal-syntax"))) (home-page "https://www.haskell.org/cabal/") (synopsis "Library for working with .cabal files") (description "This library provides tools for reading and manipulating the .cabal file format. . Version 3.6 (unlike the following versions) is a dummy package that prevents module name clases between Cabal and Cabal-syntax if used together with a Cabal flag as described below. . In Cabal-3.7 this package was split off. To avoid module name clashes, you can add this to your .cabal file: . > flag Cabal-syntax > description: Use the new Cabal-syntax package > default: False > manual: False > > library > -- ... > if flag(Cabal-syntax) > build-depends: Cabal-syntax >= 3.7 > else > build-depends: Cabal < 3.7, Cabal-syntax < 3.7 . This will default to the older build, but will allow consumers to opt-in to the newer libraries by requiring Cabal or Cabal-syntax >= 3.7") (license license:bsd-3))) (define-public ghc-tasty-hslua (package (name "ghc-tasty-hslua") (version "1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "tasty-hslua" version)) (sha256 (base32 "0ibdxwaclghcgcyf9zx4b1dnp4b708ydwli4clmb0a0mp1lwdp98")))) (build-system haskell-build-system) (properties '((upstream-name . "tasty-hslua"))) (inputs (list ghc-hslua-core ghc-tasty ghc-tasty-hunit)) (home-page "https://hslua.org/") (synopsis "Tasty helpers to test HsLua") (description "Various tasty helpers and utilities to test HsLua oparations. Built on top of tasty-hunit.") (license license:expat))) (define-public ghc-hslua-marshalling (package (name "ghc-hslua-marshalling") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-marshalling" version)) (sha256 (base32 "1xmix1frfcyv4p51rnshrg02gba7di7nrrc6chsq71d3mbwhyask")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-marshalling"))) (inputs (list ghc-hslua-core)) (native-inputs (list ghc-lua-arbitrary ghc-quickcheck ghc-quickcheck-instances ghc-tasty-hslua ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://hslua.org/") (synopsis "Marshalling of values between Haskell and Lua") (description "This package provides functions to marshal values from Haskell to Lua, and /vice versa/. . This package is part of HsLua, a Haskell framework built around the embeddable scripting language <https://lua.org Lua>.") (license license:expat))) (define-public ghc-lua-arbitrary (package (name "ghc-lua-arbitrary") (version "1.0.1.1") (source (origin (method url-fetch) (uri (hackage-uri "lua-arbitrary" version)) (sha256 (base32 "0kbvcgi54ycl8zfdkc80ap5yhz0dml9bjdgmzx9l9m4rkhyi9xnm")))) (build-system haskell-build-system) (properties '((upstream-name . "lua-arbitrary"))) (inputs (list ghc-lua ghc-quickcheck)) (home-page "https://hslua.org/") (synopsis "Arbitrary instances for Lua types") (description "This package provides instances for QuickCheck's \\\"Arbitrary\\\" typeclass.") (license license:expat))) (define-public ghc-lua (package (name "ghc-lua") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "lua" version)) (sha256 (base32 "07wni3ji46ndqabwffgwzij2jk34dq2d66z15hcd6jg33sqnym45")))) (build-system haskell-build-system) (properties '((upstream-name . "lua"))) (arguments ;; Allow creating fully static binaries. Avoids issues with linking pandoc statically. `(#:configure-flags (list "-f-export-dynamic"))) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://hslua.org/") (synopsis "Lua, an embeddable scripting language") (description "This package provides bindings and types to bridge Haskell and <https://www.lua.org/ Lua>. . The full Lua interpreter version 5.4.4 is included. Alternatively, a system-wide Lua installation can be linked instead.") (license license:expat))) (define-public ghc-hslua-core (package (name "ghc-hslua-core") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-core" version)) (sha256 (base32 "0hy3a7rn940bcj0shxyk75dndwl23wwmmvbnwnay36py60hy3rbq")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-core"))) (inputs (list ghc-lua)) (native-inputs (list ghc-lua-arbitrary ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://hslua.org/") (synopsis "Bindings to Lua, an embeddable scripting language") (description "Wrappers and helpers to bridge Haskell and <https://www.lua.org/ Lua>. . It builds upon the /lua/ package, which allows bundling a Lua interpreter with a Haskell program.") (license license:expat))) (define-public ghc-hslua-aeson (package (name "ghc-hslua-aeson") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-aeson" version)) (sha256 (base32 "0igmkay5bf3wg1n6rqm20kjv1xq36x552lgdvr1vlpwikgsiq8mb")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-aeson"))) (inputs (list ghc-aeson ghc-hashable ghc-hslua-core ghc-hslua-marshalling ghc-scientific ghc-unordered-containers ghc-vector)) (native-inputs (list ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-quickcheck)) (home-page "https://hslua.org/") (synopsis "Allow aeson data types to be used with Lua") (description "This package provides instances to push and receive any datatype encodable as JSON to and from the Lua stack.") (license license:expat))) (define-public ghc-gridtables (package (name "ghc-gridtables") (version "0.0.3.0") (source (origin (method url-fetch) (uri (hackage-uri "gridtables" version)) (sha256 (base32 "1akix9flnax6dx3s9c7yyzb19nw13y8rmh0kz7y3hpjlkaz659xy")))) (build-system haskell-build-system) (properties '((upstream-name . "gridtables"))) (inputs (list ghc-doclayout)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (arguments `(#:cabal-revision ("1" "0m2651z81n8s6hb8id7y6k2kprsgwnj7pcd6p8lmdpkzzz3wwd0c"))) (home-page "https://github.com/tarleb/gridtables") (synopsis "Parser for reStructuredText-style grid tables") (description "This package provides a parser for plain-text representations of tables. This package supports table headers, cells spanning multiple columns or rows, as well as a way to specfiy column alignments.") (license license:expat))) (define-public ghc-lpeg (package (name "ghc-lpeg") (version "1.0.4") (source (origin (method url-fetch) (uri (hackage-uri "lpeg" version)) (sha256 (base32 "1fsl43m4p1h40npwd51qn2vafzjwyvs5yb5159l37w95l8hlf214")))) (build-system haskell-build-system) (properties '((upstream-name . "lpeg"))) (inputs (list ghc-lua)) (native-inputs (list ghc-tasty ghc-tasty-hunit)) (home-page "https://hslua.org/") (synopsis "LPeg – Parsing Expression Grammars For Lua") (description "This package contains the C sources of LPeg, as well as some tiny Haskell helper to load the package. . <http://www.inf.puc-rio.br/~roberto/lpeg/>") (license license:expat))) (define-public ghc-pandoc-lua-marshal (package (name "ghc-pandoc-lua-marshal") (version "0.1.7") (source (origin (method url-fetch) (uri (hackage-uri "pandoc-lua-marshal" version)) (sha256 (base32 "0pn9b7f8dln049k76zb4znscl01qms751y1ln4j8irs50rc1b55j")))) (build-system haskell-build-system) (properties '((upstream-name . "pandoc-lua-marshal"))) (inputs (list ghc-lua ghc-hslua ghc-hslua-marshalling ghc-pandoc-types ghc-safe)) (native-inputs (list ghc-quickcheck ghc-tasty ghc-tasty-hunit ghc-tasty-lua ghc-tasty-quickcheck)) (home-page "https://github.com/pandoc/pandoc-lua-marshal") (synopsis "Use pandoc types in Lua") (description "This package provides functions to marshal and unmarshal pandoc document types to and from Lua. . The values of most types are pushed to pandoc as \"userdata\" objects that wrap a stable pointer to the Haskell value; these objects come with methods to access and modify their properties. . Sequences are pushed as normal Lua tables, but are augmented with convenience functions.") (license license:expat))) (define-public ghc-should-not-typecheck (package (name "ghc-should-not-typecheck") (version "2.1.0") (source (origin (method url-fetch) (uri (hackage-uri "should-not-typecheck" version)) (sha256 (base32 "14fmv0mv2v4fqzynamlrmdj6d1l65aw1srf1wv19nrq7rrqaqf7m")))) (build-system haskell-build-system) (properties '((upstream-name . "should-not-typecheck"))) (inputs (list ghc-hunit)) (native-inputs (list ghc-hspec ghc-hspec-expectations)) (home-page "https://github.com/CRogers/should-not-typecheck") (synopsis "HUnit/hspec assertion library to verify that an expression does not typecheck") (description "For examples and an introduction to the library please take a look at the <https://github.com/CRogers/should-not-typecheck#should-not-typecheck- README> on github.") (license license:bsd-3))) (define-public ghc-hspec-wai (package (name "ghc-hspec-wai") (version "0.11.1") (source (origin (method url-fetch) (uri (hackage-uri "hspec-wai" version)) (sha256 (base32 "03wiksic5y9a2g6a86nsxrnajdgdvpv17w02h5qla0zp9zs6pa1j")))) (build-system haskell-build-system) (properties '((upstream-name . "hspec-wai"))) (inputs (list ghc-quickcheck ghc-base-compat ghc-case-insensitive ghc-hspec-core ghc-hspec-expectations ghc-http-types ghc-wai ghc-wai-extra)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/hspec/hspec-wai#readme") (synopsis "Experimental Hspec support for testing WAI applications") (description "Experimental Hspec support for testing WAI applications") (license license:expat))) (define-public ghc-http-media (package (name "ghc-http-media") (version "0.8.0.0") (source (origin (method url-fetch) (uri (hackage-uri "http-media" version)) (sha256 (base32 "0lww5cxrc9jlvzsysjv99lca33i4rb7cll66p3c0rdpmvz8pk0ir")))) (build-system haskell-build-system) (properties '((upstream-name . "http-media"))) (inputs (list ghc-case-insensitive ghc-utf8-string)) (native-inputs (list ghc-quickcheck ghc-test-framework ghc-test-framework-quickcheck2)) (arguments `(#:cabal-revision ("7" "1sm8bnrqvwkj7f60x4s8vfsj6lfi0knq38im35x88wk8s9whg6jd") #:phases (modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "http-media.cabal" (("QuickCheck >= 2.8 && < 2.14") "QuickCheck") (("base >= 4.7 && < 4.13") "base"))))))) (home-page "https://github.com/zmthy/http-media") (synopsis "Processing HTTP Content-Type and Accept headers") (description "This library is intended to be a comprehensive solution to parsing and selecting quality-indexed values in HTTP headers. It is capable of parsing both media types and language parameters from the Accept and Content header families, and can be extended to match against other accept headers as well. Selecting the appropriate header value is achieved by comparing a list of server options against the quality-indexed values supplied by the client. . In the following example, the Accept header is parsed and then matched against a list of server options to serve the appropriate media using mapAcceptMedia': . > getHeader >>= maybe send406Error sendResourceWith . mapAcceptMedia > [ (\"text/html\", asHtml) > , (\"application/json\", asJson) > ] . Similarly, the Content-Type header can be used to produce a parser for request bodies based on the given content type with mapContentMedia': . > getContentType >>= maybe send415Error readRequestBodyWith . mapContentMedia > [ (\"application/json\", parseJson) > , (\"text/plain\", parseText) > ] . The API is agnostic to your choice of server.") (license license:expat))) (define-public ghc-servant (package (name "ghc-servant") (version "0.19.1") (source (origin (method url-fetch) (uri (hackage-uri "servant" version)) (sha256 (base32 "1gk6j39rcjpjacs351lknhrwj86yr4ifyp3qwlmiig27dxqlig3q")))) (build-system haskell-build-system) (properties '((upstream-name . "servant"))) (inputs (list ghc-constraints ghc-sop-core ghc-http-api-data ghc-singleton-bool ghc-base-compat ghc-aeson ghc-attoparsec ghc-bifunctors ghc-case-insensitive ghc-http-media ghc-http-types ghc-mmorph ghc-network-uri ghc-quickcheck ghc-string-conversions ghc-tagged ghc-vault)) (native-inputs (list ghc-hspec ghc-quickcheck-instances hspec-discover)) (home-page "http://docs.servant.dev/") (synopsis "Family of combinators for defining webservices APIs") (description "This package provides a family of combinators for defining webservices APIs and serving them . You can learn about the basics in the <http://docs.servant.dev/en/stable/tutorial/index.html tutorial>. . <https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md CHANGELOG>") (license license:bsd-3))) (define-public ghc-servant-client (package (name "ghc-servant-client") (version "0.19") (source (origin (method url-fetch) (uri (hackage-uri "servant-client" version)) (sha256 (base32 "1bdapsr6il0f019ss8wsxndpc8cd5czj40xczay5qhl7fqnxg5pa")))) (build-system haskell-build-system) (properties '((upstream-name . "servant-client"))) (inputs (list ghc-servant ghc-servant-client-core ghc-base-compat ghc-http-client ghc-http-media ghc-http-types ghc-kan-extensions ghc-monad-control ghc-semigroupoids ghc-transformers-base ghc-transformers-compat)) (native-inputs (list ghc-aeson ghc-http-api-data ghc-sop-core ghc-wai ghc-warp ghc-entropy ghc-hspec ghc-hspec-discover ghc-hunit ghc-network ghc-quickcheck ghc-servant-server ghc-tdigest ghc-markdown-unlit)) (arguments `(#:cabal-revision ("6" "0lakjnpvsiai08c5nddgzrnr0a139rr37cyq31hqcbwnsy553l1y"))) (home-page "http://docs.servant.dev/") (synopsis "Automatic derivation of querying functions for servant") (description "This library lets you derive automatically Haskell functions that let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice. . See <http://docs.servant.dev/en/stable/tutorial/Client.html the client section of the tutorial>. . <https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>.") (license license:bsd-3))) (define-public ghc-servant-client-core (package (name "ghc-servant-client-core") (version "0.19") (source (origin (method url-fetch) (uri (hackage-uri "servant-client-core" version)) (sha256 (base32 "0cisc5cyl367cwrch1gr812aspd36a21hkwi6mwj708rpspwvrmc")))) (build-system haskell-build-system) (properties '((upstream-name . "servant-client-core"))) (inputs (list ghc-constraints ghc-servant ghc-aeson ghc-base-compat ghc-base64-bytestring ghc-free ghc-http-media ghc-http-types ghc-network-uri ghc-safe ghc-sop-core)) (native-inputs (list ghc-hspec ghc-hspec-discover ghc-quickcheck)) (arguments `(#:cabal-revision ("5" "147ws71hwp8zck7ph8kcyh18524s8g0b7qvxjsvsm1yvw77c60gh"))) (home-page "http://docs.servant.dev/") (synopsis "Core functionality and class for client function generation for servant APIs") (description "This library provides backend-agnostic generation of client functions. For more information, see the README.") (license license:bsd-3))) (define-public ghc-servant-server (package (name "ghc-servant-server") (version "0.19.2") (source (origin (method url-fetch) (uri (hackage-uri "servant-server" version)) (sha256 (base32 "1a7msh8p59v5mgsnj5li9s3jg0jwq2zjsznr0cg7g0fncn7r1axy")))) (build-system haskell-build-system) (properties '((upstream-name . "servant-server"))) (inputs (list ghc-constraints ghc-servant ghc-http-api-data ghc-base-compat ghc-base64-bytestring ghc-http-media ghc-http-types ghc-network-uri ghc-monad-control ghc-network ghc-sop-core ghc-string-conversions ghc-resourcet ghc-tagged ghc-transformers-base ghc-wai ghc-wai-app-static ghc-word8 ghc-aeson ghc-warp)) (native-inputs (list ghc-safe ghc-transformers-compat ghc-hspec ghc-hspec-wai ghc-quickcheck ghc-should-not-typecheck ghc-temporary ghc-wai-extra hspec-discover)) (home-page "http://docs.servant.dev/") (synopsis "Family of combinators for defining webservices APIs and serving them") (description "This package provides a family of combinators for defining webservices APIs and serving them . You can learn about the basics in the <http://docs.servant.dev/en/stable/tutorial/index.html tutorial>. . <https://github.com/haskell-servant/servant/blob/master/servant-server/example/greet.hs Here> is a runnable example, with comments, that defines a dummy API and implements a webserver that serves this API, using this package. . <https://github.com/haskell-servant/servant/blob/master/servant-server/CHANGELOG.md CHANGELOG>") (license license:bsd-3))) (define-public ghc-boring (package (name "ghc-boring") (version "0.2.1") (source (origin (method url-fetch) (uri (hackage-uri "boring" version)) (sha256 (base32 "0m1imbkvwfjz7cz7ibksiz63fyfmaq42f6x059sch2nmz7qdvzxi")))) (build-system haskell-build-system) (properties '((upstream-name . "boring"))) (inputs (list ghc-tagged)) (arguments `(#:cabal-revision ("1" "0jrfhidd91k0bkb98qm8nvv9wizqa906mgr8qjkhxc4d7vcnc9cy"))) (home-page "https://github.com/phadej/boring") (synopsis "Boring and Absurd types") (description "* @@Boring@@ types are isomorphic to @@()@@. . * @@Absurd@@ types are isomorphic to @@Void@@. . See [What does () mean in Haskell -answer by Conor McBride](https://stackoverflow.com/questions/33112439/what-does-mean-in-haskell/33115522#33115522)") (license license:bsd-3))) (define-public ghc-some (package (name "ghc-some") (version "1.0.4.1") (source (origin (method url-fetch) (uri (hackage-uri "some" version)) (sha256 (base32 "1qy840b2f58f0jxmw4q9sfgbx64kypzdlqnwc72md5wwv84b9b1d")))) (build-system haskell-build-system) (properties '((upstream-name . "some"))) (home-page "https://github.com/haskellari/some") (synopsis "Existential type: Some") (description "This library defines an existential type Some'. . @@ data Some f where \\ Some :: f a -> Some f @@ . in few variants, and utilities to work with it. . If you are unsure which variant to use, use the one in \"Data.Some\" module.") (license license:bsd-3))) (define-public ghc-hslua-classes (package (name "ghc-hslua-classes") (version "2.2.0") (source (origin (method url-fetch) (uri (hackage-uri "hslua-classes" version)) (sha256 (base32 "1z7ym3whcq16k2cm9jf7sf0vwmp52iv1f0iicvv4jk6xks9d6ia1")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-classes"))) (inputs (list ghc-hslua-core ghc-hslua-marshalling)) (native-inputs (list ghc-lua-arbitrary ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-hslua ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://hslua.org/") (synopsis "Type classes for HsLua") (description "Type classes for convenient marshalling and calling of Lua functions.") (license license:expat))) (define-public ghc-hslua-objectorientation (package (name "ghc-hslua-objectorientation") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-objectorientation" version)) (sha256 (base32 "13011yzz6lrgl2gasn9w5ggdqgrdz49hhqk1h259qd9gq29jnq3y")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-objectorientation"))) (inputs (list ghc-hslua-core ghc-hslua-marshalling)) (native-inputs (list ghc-lua-arbitrary ghc-quickcheck ghc-quickcheck-instances ghc-tasty ghc-tasty-hslua ghc-tasty-hunit ghc-tasty-quickcheck)) (home-page "https://hslua.org/") (synopsis "Object orientation tools for HsLua") (description "Expose Haskell objects to Lua with an object oriented interface.") (license license:expat))) (define-public ghc-hslua-packaging (package (name "ghc-hslua-packaging") (version "2.2.1") (source (origin (method url-fetch) (uri (hackage-uri "hslua-packaging" version)) (sha256 (base32 "1yxfrsxmmsb96lyfihlk9ks53l2z2aln3whfqaha7grs3gx1yaib")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-packaging"))) (inputs (list ghc-hslua-core ghc-hslua-marshalling ghc-hslua-objectorientation)) (native-inputs (list ghc-tasty-hslua ghc-tasty ghc-tasty-hunit)) (home-page "https://hslua.org/") (synopsis "Utilities to build Lua modules") (description "Utilities to package up Haskell functions and values into a Lua module. . This package is part of HsLua, a Haskell framework built around the embeddable scripting language <https://lua.org Lua>.") (license license:expat))) (define-public ghc-hslua-module-version (package (name "ghc-hslua-module-version") (version "1.0.3") (source (origin (method url-fetch) (uri (hackage-uri "hslua-module-version" version)) (sha256 (base32 "1v24lbbagvaz0hacq4525snp6smz8yc5ifrxg89z1y5bbn7v46f5")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-module-version"))) (inputs (list ghc-hslua-core ghc-hslua-marshalling ghc-hslua-packaging)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-lua)) (home-page "https://hslua.org/") (synopsis "Lua module to work with version specifiers") (description "Wrapper for the Data.Version.Version Haskell type.") (license license:expat))) (define-public ghc-recv (package (name "ghc-recv") (version "0.0.0") (source (origin (method url-fetch) (uri (hackage-uri "recv" version)) (sha256 (base32 "1yz9b95m9yxcwbbwdvp288y47ycn4yq9g7ixlw0sf98h5rjp4s2w")))) (build-system haskell-build-system) (properties '((upstream-name . "recv"))) (inputs (list ghc-network)) (native-inputs (list ghc-hspec hspec-discover)) (home-page "https://github.com/yesodweb/wai") (synopsis "Efficient netowrk recv") (description "Network recv based on buffer pools") (license license:bsd-3))) (define-public ghc-glib (package (name "ghc-glib") (version "0.13.10.0") (source (origin (method url-fetch) (uri (hackage-uri "glib" version)) (sha256 (base32 "149y33ddv8vkvak0042ismiwh6lgc706n3n3bvnmrgw67fmi57m1")))) (build-system haskell-build-system) (properties '((upstream-name . "glib"))) (inputs (list ghc-utf8-string glib)) (native-inputs (list ghc-gtk2hs-buildtools pkg-config)) (arguments `(#:cabal-revision ("2" "19zg675zvyi87415yyfyl1s7i65rz8hx8hw4scxwalcq50axj99s"))) (home-page "https://projects.haskell.org/gtk2hs/") (synopsis "GLib bindings for for Gtk2Hs") (description "GLib is a collection of C data structures and utility functions for the GObject system, main loop implementation, for strings and common data structures dealing with Unicode. This package only binds as much functionality as required to support the packages that wrap libraries that are themselves based on GLib.") (license license:lgpl2.1))) (define-public ghc-pango (package (name "ghc-pango") (version "0.13.10.0") (source (origin (method url-fetch) (uri (hackage-uri "pango" version)) (sha256 (base32 "0qdk18vj07qivyyd0limjprni77q2xvydx748lsxsrw2ws8hb1ax")))) (build-system haskell-build-system) (properties '((upstream-name . "pango"))) (inputs (list ghc-glib ghc-cairo pango)) (native-inputs (list ghc-gtk2hs-buildtools pkg-config)) (arguments `(#:cabal-revision ("2" "064bpj5mmxc31snkfysb9c52v1695kxyqbj617m933mgjrw13q91"))) (home-page "https://projects.haskell.org/gtk2hs/") (synopsis "Haskell bindings to the Pango text rendering engine") (description "This package provides a wrapper around the Pango C library that allows high-quality rendering of Unicode text. It can be used either with Cairo to output text in PDF, PS or other documents or with Gtk+ to display text on-screen.") (license license:lgpl2.1))) (define-public ghc-monoidal-containers (package (name "ghc-monoidal-containers") (version "0.6.4.0") (source (origin (method url-fetch) (uri (hackage-uri "monoidal-containers" version)) (sha256 (base32 "09sg4gsrvgnsy12819sps2l0j97baanbsq2w1pvypnrkanzrw083")))) (build-system haskell-build-system) (properties '((upstream-name . "monoidal-containers"))) (inputs (list ghc-aeson ghc-hashable ghc-lens ghc-newtype ghc-unordered-containers ghc-witherable ghc-semialign ghc-these)) (arguments `(#:cabal-revision ("3" "0ip71g8nd07vinwlynhbq0iaxmzzwjz9gx15k1d9p7llv961rc74"))) (home-page "https://github.com/bgamari/monoidal-containers") (synopsis "Containers with monoidal accumulation") (description "Containers with merging via monoidal accumulation. The Monoid instances provided by the @code{containers} and @code{unordered-containers} packages merge structures in a left-biased manner instead of using the underlying monoidal structure of the value. This package wraps the types provided by these packages, but provides @code{Monoid} instances implemented in terms of the value type's mappend'.") (license license:bsd-3))) (define-public ghc-newtype (package (name "ghc-newtype") (version "0.2.2.0") (source (origin (method url-fetch) (uri (hackage-uri "newtype" version)) (sha256 (base32 "1b7bamnd0p8vmxvlg39g5d4a2av49kx10rdyz04ixa28pg8zy01s")))) (build-system haskell-build-system) (properties '((upstream-name . "newtype"))) (arguments `(#:cabal-revision ("3" "0yll88ydchd2gqcvdk28fchf2vygpd42ky2bigg4ga08jan2nacx"))) (home-page "https://hackage.haskell.org/package/newtype") (synopsis "Typeclass and set of functions for working with newtypes") (description "Per Conor McBride, the Newtype typeclass represents the packing and unpacking of a @code{newtype}, and allows you to operate under that @code{newtype} with functions such as ala'.") (license license:bsd-3))) (define-public ghc-hspec-hedgehog (package (name "ghc-hspec-hedgehog") (version "0.0.1.2") (source (origin (method url-fetch) (uri (hackage-uri "hspec-hedgehog" version)) (sha256 (base32 "17gbr4ssnzjk7nvpsnh47av6vd9wz27ax92xvr4jwyw0z7h2wn13")))) (build-system haskell-build-system) (properties '((upstream-name . "hspec-hedgehog"))) (inputs (list ghc-hspec ghc-hspec-core ghc-hedgehog ghc-hunit ghc-quickcheck ghc-splitmix)) (arguments `(#:cabal-revision ("1" "1qv2gap0775d2zg8wbd3kq4ypziz05qlz5jfisvl3jfd6jzcf2ad"))) (home-page "https://github.com/parsonsmatt/hspec-hedgehog#readme") (synopsis "Integrate Hedgehog and Hspec") (description "An integration library for hspec and hedgehog.") (license license:bsd-3))) (define-public ghc-validation-selective (package (name "ghc-validation-selective") (version "0.1.0.2") (source (origin (method url-fetch) (uri (hackage-uri "validation-selective" version)) (sha256 (base32 "1gsvcm8gjp8kdfprd1i4h9si8f2ym1gj3hqfwz7x1ylsa8qxwvq1")))) (build-system haskell-build-system) (properties '((upstream-name . "validation-selective"))) (inputs (list ghc-selective)) (native-inputs (list ghc-hedgehog ghc-hspec ghc-hspec-hedgehog ghc-doctest)) (home-page "https://github.com/kowainik/validation-selective") (synopsis "Data validation based on Applicative and Selective functors") (description "Lighweight pure data validation based on Applicative and Selective functors.") (license license:mpl2.0))) (define-public ghc-tdigest (package (name "ghc-tdigest") (version "0.2.1.1") (source (origin (method url-fetch) (uri (hackage-uri "tdigest" version)) (sha256 (base32 "1dvkf7cs8dcr13wza5iyq2qgvz75r33mzgfmhdihw62xzxsqb6d3")))) (build-system haskell-build-system) (properties '((upstream-name . "tdigest"))) (inputs (list ghc-base-compat ghc-reducers ghc-semigroupoids ghc-vector ghc-vector-algorithms)) (native-inputs (list ghc-semigroups ghc-tasty ghc-tasty-quickcheck)) (arguments `(#:cabal-revision ("3" "0a39vwf37hkh06rn79blr3bw7ij05pgpxrkc9cldgdd5p4gvn1qn"))) (home-page "https://github.com/phadej/haskell-tdigest#readme") (synopsis "On-line accumulation of rank-based statistics") (description "This package provides a new data structure for accurate on-line accumulation of rank-based statistics such as quantiles and trimmed means. . See original paper: \"Computing extremely accurate quantiles using t-digest\" by Ted Dunning and Otmar Ertl for more details <https://github.com/tdunning/t-digest/blob/07b8f2ca2be8d0a9f04df2feadad5ddc1bb73c88/docs/t-digest-paper/histo.pdf>.") (license license:bsd-3))) (define-public ghc-tomland (package (name "ghc-tomland") (version "1.3.3.2") (source (origin (method url-fetch) (uri (hackage-uri "tomland" version)) (sha256 (base32 "152jqjv6n7n2hdysn903wfhpwh6vp8wmjiymzasazprasdcxpywm")))) (build-system haskell-build-system) (properties '((upstream-name . "tomland"))) (inputs (list ghc-hashable ghc-megaparsec ghc-parser-combinators ghc-unordered-containers ghc-validation-selective)) (native-inputs (list ghc-hedgehog ghc-hspec ghc-hspec-hedgehog ghc-hspec-megaparsec)) (home-page "https://github.com/kowainik/tomland") (synopsis "Bidirectional TOML serialization") (description "Implementation of bidirectional TOML serialization.") (license license:mpl2.0))) (define-public ghc-hslua-module-doclayout (package (name "ghc-hslua-module-doclayout") (version "1.0.4") (source (origin (method url-fetch) (uri (hackage-uri "hslua-module-doclayout" version)) (sha256 (base32 "14sqffgcrhhrv7k4j8b1l41mn5gqlp8yzggd727746kjl0n56hqq")))) (build-system haskell-build-system) (properties '((upstream-name . "hslua-module-doclayout"))) (inputs (list ghc-doclayout ghc-hslua)) (native-inputs (list ghc-tasty ghc-tasty-hunit ghc-tasty-lua)) (home-page "https://github.com/hslua/hslua-module-doclayout") (synopsis "Lua module wrapping Text.DocLayout") (description "Lua module wrapping @code{Text.DocLayout}.") (license license:expat))) (define-public ghc-random-shuffle (package (name "ghc-random-shuffle") (version "0.0.4") (source (origin (method url-fetch) (uri (hackage-uri "random-shuffle" version)) (sha256 (base32 "0586bnlh0g2isc44jbjvafkcl4yw6lp1db8x6vr0pza0y08l8w2j")))) (build-system haskell-build-system) (properties '((upstream-name . "random-shuffle"))) (inputs (list ghc-random ghc-monadrandom)) (home-page "https://hackage.haskell.org/package/random-shuffle") (synopsis "Random shuffle implementation") (description "Random shuffle implementation, on immutable lists. Based on @url{http://okmij.org/ftp/Haskell/perfect-shuffle.txt, perfect shuffle implementation by Oleg Kiselyov}.") (license license:bsd-3))) (define-public ghc-deriving-aeson (package (name "ghc-deriving-aeson") (version "0.2.9") (source (origin (method url-fetch) (uri (hackage-uri "deriving-aeson" version)) (sha256 (base32 "0cqq4ri9dgqkdh9wybf3wf5zxb9nihql591bk1lacnzdyxfrgcn0")))) (build-system haskell-build-system) (properties '((upstream-name . "deriving-aeson"))) (inputs (list ghc-aeson)) (arguments `(#:cabal-revision ("1" "14iqkk7vs0lb0sgq159z0xw95pa87r60i1f4m17gfh2gbbddcywm"))) (home-page "https://hackage.haskell.org/package/deriving-aeson") (synopsis "Type driven generic aeson instance customisation") (description "This package provides a newtype wrapper with FromJSON/ToJSON instances customisable via a phantom type parameter. The instances can be rendered to the original type using DerivingVia.") (license license:bsd-3))) (define-public ghc-leancheck (package (name "ghc-leancheck") (version "0.9.12") (source (origin (method url-fetch) (uri (hackage-uri "leancheck" version)) (sha256 (base32 "15wpklkbr03dciai4mk8bm1yk9svxxmbsl22wsvwk3ns7aiamrkj")))) (build-system haskell-build-system) (properties '((upstream-name . "leancheck"))) (home-page "https://github.com/rudymatela/leancheck#readme") (synopsis "Enumerative property-based testing") (description "LeanCheck is a simple enumerative property-based testing library. Properties are defined as Haskell functions returning a boolean value which should be true for all possible choices of argument values. LeanCheck applies enumerated argument values to these properties in search for a counterexample. Properties can be viewed as parameterized unit tests. LeanCheck works by producing tiers of test values: a possibly infinite list of finite sublists of same-and-increasingly-sized values.") (license license:bsd-3))) (define-public ghc-test-framework-leancheck (package (name "ghc-test-framework-leancheck") (version "0.0.4") (source (origin (method url-fetch) (uri (hackage-uri "test-framework-leancheck" version)) (sha256 (base32 "0aa21r999jj59plzkn1px02k3a87znwhagdjmdsik2xvy5wrzgzv")))) (build-system haskell-build-system) (properties '((upstream-name . "test-framework-leancheck"))) (inputs (list ghc-test-framework ghc-leancheck)) (home-page "https://github.com/rudymatela/test-framework-leancheck#readme") (synopsis "LeanCheck support for test-framework") (description "LeanCheck support for @code{test-framework}. This package can be used to incorporate LeanCheck tests into test-framework test suites.") (license license:bsd-3))) (define-public ghc-prim-uniq (package (name "ghc-prim-uniq") (version "0.2") (source (origin (method url-fetch) (uri (hackage-uri "prim-uniq" version)) (sha256 (base32 "1l7jlv3pfasn89n2wpgff972npy423vqsidkkn5crxfyqjyzxbdv")))) (build-system haskell-build-system) (properties '((upstream-name . "prim-uniq"))) (inputs (list ghc-dependent-sum ghc-primitive)) (home-page "https://github.com/obsidiansystems/prim-uniq") (synopsis "Opaque unique identifiers in primitive state monads") (description "This library provides opaque unique identifiers in primitive state monads and a GADT-like type using them as witnesses of type equality.") (license license:public-domain))) (define-public ghc-patch (package (name "ghc-patch") (version "0.0.8.2") (source (origin (method url-fetch) (uri (hackage-uri "patch" version)) (sha256 (base32 "15r2sjlpvp22iwd7qa1lqdq7n8nvqv2klvzrlm3phqq3j5n5x5y5")))) (build-system haskell-build-system) (properties '((upstream-name . "patch"))) (inputs (list ghc-constraints-extras ghc-commutative-semigroups ghc-dependent-map ghc-dependent-sum ghc-lens ghc-indexed-traversable ghc-semigroupoids ghc-witherable ghc-these ghc-semialign ghc-monoidal-containers)) (native-inputs (list ghc-hedgehog ghc-hunit ghc-filemanip hlint)) (home-page "https://obsidian.systems") (synopsis "Data structures for describing changes to other data structures") (description "This library provides data structures for describing changes to other data structures. In this library, a patch is something that can be applied, analogous to a function, and which distinguishes returning the argument it was provided from returning something else.") (license license:bsd-3))) (define-public ghc-ref-tf (package (name "ghc-ref-tf") (version "0.5.0.1") (source (origin (method url-fetch) (uri (hackage-uri "ref-tf" version)) (sha256 (base32 "0isilgcbw12zyh8s2liaj5r9r5m3yg1xskyhag6f36qi60y29hx5")))) (build-system haskell-build-system) (properties '((upstream-name . "ref-tf"))) (home-page "https://hackage.haskell.org/package/ref-tf") (synopsis "Type class for monads with references using type families") (description "This package contains a @code{MonadRef} type class that abstracts over the details of manipulating references, allowing one to write code that can operate in either the @code{ST} monad or the @code{IO} monad.") (license license:bsd-3))) (define-public ghc-data-array-byte (package (name "ghc-data-array-byte") (version "0.1.0.1") (source (origin (method url-fetch) (uri (hackage-uri "data-array-byte" version)) (sha256 (base32 "002n0af7q08q3fmgsc5b47s1clirxy0lrqglwxzhabg0nfhfrdhv")))) (build-system haskell-build-system) (properties '((upstream-name . "data-array-byte"))) ;(native-inputs (list ghc-quickcheck-classes-base ghc-tasty ; ghc-tasty-quickcheck)) (arguments `(#:tests? #f ; Avoid dependency cycle. #:cabal-revision ("3" "136rjhg0m49d2l8z7kp46hc8q7bkipvkwnn40nv8kqkpvrgrg8d4"))) (home-page "https://github.com/Bodigrim/data-array-byte") (synopsis "Compatibility layer for Data.Array.Byte") (description "Compatibility layer for @url{https://hackage.haskell.org/package/base/docs/Data-Array-Byte.html,Data.Array.Byte} providing boxed wrappers for @code{ByteArray} and @code{MutableByteArray} and relevant instances for GHC < 9.4.") (license license:bsd-3))) ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar ;;; functionality or similar names. ;;;