lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
b0b48819 3328bc96

+1031 -563
+6
maintainers/maintainer-list.nix
··· 1544 1544 githubId = 410028; 1545 1545 name = "Tobias Bergkvist"; 1546 1546 }; 1547 + berryp = { 1548 + email = "berryphillips@gmail.com"; 1549 + github = "berryp"; 1550 + githubId = 19911; 1551 + name = "Berry Phillips"; 1552 + }; 1547 1553 betaboon = { 1548 1554 email = "betaboon@0x80.ninja"; 1549 1555 github = "betaboon";
-101
pkgs/applications/audio/axoloti/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, makeWrapper, unzip 2 - , gnumake, gcc-arm-embedded, binutils-arm-embedded 3 - , dfu-util-axoloti, jdk, ant, libfaketime }: 4 - 5 - stdenv.mkDerivation rec { 6 - version = "1.0.12-2"; 7 - pname = "axoloti"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "axoloti"; 11 - repo = "axoloti"; 12 - rev = version; 13 - sha256 = "1qffis277wshldr3i939b0r2x3a2mlr53samxqmr2nk1sfm2b4w9"; 14 - }; 15 - 16 - chibi_version = "2.6.9"; 17 - chibi_name = "ChibiOS_${chibi_version}"; 18 - 19 - chibios = fetchurl { 20 - url = "mirror://sourceforge/project/chibios/ChibiOS_RT%20stable/Version%20${chibi_version}/${chibi_name}.zip"; 21 - sha256 = "0lb5s8pkj80mqhsy47mmq0lqk34s2a2m3xagzihalvabwd0frhlj"; 22 - }; 23 - 24 - nativeBuildInputs = [ 25 - makeWrapper 26 - unzip 27 - gcc-arm-embedded 28 - binutils-arm-embedded 29 - dfu-util-axoloti 30 - ant 31 - ]; 32 - buildInputs = [jdk libfaketime ]; 33 - 34 - patchPhase = '' 35 - unzip ${chibios} 36 - mv ${chibi_name} chibios 37 - (cd chibios/ext; unzip -q -o fatfs-0.9-patched.zip) 38 - 39 - # Remove source of non-determinism in ChibiOS 40 - substituteInPlace "chibios/os/various/shell.c" \ 41 - --replace "#ifdef __DATE__" "#if 0" 42 - 43 - # Hardcode path to "make" 44 - for f in "firmware/compile_firmware_linux.sh" \ 45 - "firmware/compile_patch_linux.sh"; do 46 - substituteInPlace "$f" \ 47 - --replace "make" "${gnumake}/bin/make" 48 - done 49 - 50 - # Hardcode dfu-util path 51 - substituteInPlace "platform_linux/upload_fw_dfu.sh" \ 52 - --replace "/bin/dfu-util" "" 53 - substituteInPlace "platform_linux/upload_fw_dfu.sh" \ 54 - --replace "./dfu-util" "${dfu-util-axoloti}/bin/dfu-util" 55 - 56 - # Fix build version 57 - substituteInPlace "build.xml" \ 58 - --replace "(git missing)" "${version}" 59 - 60 - # Remove build time 61 - substituteInPlace "build.xml" \ 62 - --replace "<tstamp>" "" 63 - substituteInPlace "build.xml" \ 64 - --replace \ 65 - '<format property="build.time" pattern="dd/MM/yyyy HH:mm:ss z"/>' \ 66 - '<property name="build.time" value=""/>' 67 - substituteInPlace "build.xml" \ 68 - --replace "</tstamp>" "" 69 - substituteInPlace "build.xml" \ 70 - --replace \ 71 - '{line.separator}</echo>' \ 72 - '{line.separator}</echo> <touch file="src/main/java/axoloti/Version.java" millis="0" />' 73 - ''; 74 - 75 - buildPhase = '' 76 - find . -exec touch -d '1970-01-01 00:00' {} \; 77 - (cd platform_linux; sh compile_firmware.sh) 78 - faketime "1970-01-01 00:00:00" ant -Dbuild.runtime=true 79 - ''; 80 - 81 - installPhase = '' 82 - mkdir -p $out/bin $out/share/axoloti 83 - 84 - cp -r doc firmware chibios platform_linux CMSIS *.txt $out/share/axoloti/ 85 - install -vD dist/Axoloti.jar $out/share/axoloti/ 86 - 87 - makeWrapper ${jdk}/bin/java $out/bin/axoloti --add-flags "-Daxoloti_release=$out/share/axoloti -Daxoloti_runtime=$out/share/axoloti -jar $out/share/axoloti/Axoloti.jar" 88 - ''; 89 - 90 - meta = with lib; { 91 - homepage = "http://www.axoloti.com"; 92 - description = '' 93 - Sketching embedded digital audio algorithms. 94 - 95 - To fix permissions of the Axoloti USB device node, add a similar udev rule to <literal>services.udev.extraRules</literal>: 96 - <literal>SUBSYSTEM=="usb", ATTR{idVendor}=="16c0", ATTR{idProduct}=="0442", OWNER="someuser", GROUP="somegroup"</literal> 97 - ''; 98 - license = licenses.gpl3; 99 - maintainers = with maintainers; [ ]; 100 - }; 101 - }
-31
pkgs/applications/audio/axoloti/dfu-util.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libusb1-axoloti }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "dfu-util"; 5 - version = "0.8"; 6 - 7 - nativeBuildInputs = [ pkg-config ]; 8 - buildInputs = [ libusb1-axoloti ]; 9 - 10 - src = fetchurl { 11 - url = "http://dfu-util.sourceforge.net/releases/${pname}-${version}.tar.gz"; 12 - sha256 = "0n7h08avlzin04j93m6hkq9id6hxjiiix7ff9gc2n89aw6dxxjsm"; 13 - }; 14 - 15 - meta = with lib; { 16 - description = "Device firmware update (DFU) USB programmer"; 17 - longDescription = '' 18 - dfu-util is a program that implements the host (PC) side of the USB 19 - DFU 1.0 and 1.1 (Universal Serial Bus Device Firmware Upgrade) protocol. 20 - 21 - DFU is intended to download and upload firmware to devices connected over 22 - USB. It ranges from small devices like micro-controller boards up to mobile 23 - phones. With dfu-util you are able to download firmware to your device or 24 - upload firmware from it. 25 - ''; 26 - homepage = "http://dfu-util.sourceforge.net"; 27 - license = licenses.gpl2Plus; 28 - platforms = platforms.unix; 29 - maintainers = [ ]; 30 - }; 31 - }
-39
pkgs/applications/audio/axoloti/libusb1.nix
··· 1 - { stdenv, lib, fetchurl, pkg-config, systemd, libobjc, IOKit, fetchpatch }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libusb"; 5 - version = "1.0.19"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/libusb/libusb-${version}.tar.bz2"; 9 - sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c"; 10 - }; 11 - 12 - outputs = [ "out" "dev" ]; # get rid of propagating systemd closure 13 - 14 - buildInputs = [ pkg-config ]; 15 - propagatedBuildInputs = lib.optional stdenv.isLinux systemd 16 - ++ lib.optionals stdenv.isDarwin [ libobjc IOKit ]; 17 - 18 - patches = [ 19 - (fetchpatch { 20 - name = "libusb.stdfu.patch"; 21 - url = "https://raw.githubusercontent.com/axoloti/axoloti/1.0.12/platform_linux/src/libusb.stdfu.patch"; 22 - sha256 = "194j7j61i4q6x0ihm9ms8dxd4vliw20n2rj6cm9h17qzdl9xr33d"; 23 - }) 24 - ]; 25 - 26 - NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lgcc_s"; 27 - 28 - preFixup = lib.optionalString stdenv.isLinux '' 29 - sed 's,-ludev,-L${lib.getLib systemd}/lib -ludev,' -i $out/lib/libusb-1.0.la 30 - ''; 31 - 32 - meta = with lib; { 33 - homepage = "http://www.libusb.info"; 34 - description = "User-space USB library"; 35 - maintainers = with maintainers; [ ]; 36 - platforms = platforms.unix; 37 - license = licenses.lgpl21; 38 - }; 39 - }
+8 -5
pkgs/applications/audio/sptlrx/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, testers, sptlrx }: 1 + { lib, buildGoModule, fetchFromGitHub, nix-update-script, testers, sptlrx }: 2 2 3 3 buildGoModule rec { 4 4 pname = "sptlrx"; ··· 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17 18 - passthru.tests.version = testers.testVersion { 19 - package = sptlrx; 20 - # TODO Wrong version in `0.2.0`. Has been fixed upstream. 21 - version = "v0.1.0"; 18 + passthru = { 19 + updateScript = nix-update-script { attrPath = pname; }; 20 + tests.version = testers.testVersion { 21 + package = sptlrx; 22 + # TODO Wrong version in `0.2.0`. Has been fixed upstream. 23 + version = "v0.1.0"; 24 + }; 22 25 }; 23 26 24 27 meta = with lib; {
+5 -5
pkgs/applications/blockchains/btcdeb/default.nix
··· 7 7 8 8 with lib; 9 9 stdenv.mkDerivation rec { 10 - pname = "btcdeb-unstable"; 11 - version = "200806"; 10 + pname = "btcdeb"; 11 + version = "unstable-2022-04-03"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bitcoin-core"; 15 15 repo = "btcdeb"; 16 - rev = "f6708c397c64894c9f9e31bea2d22285d9462de7"; 17 - sha256 = "0qkmf89z2n7s95vhw3n9vh9dbi14zy4vqw3ffdh1w911jwm5ry3z"; 16 + rev = "3ba1ec7f4d37f7d2ff0544403465004c6e12036e"; 17 + hash = "sha256-l/PGXXX288mnoSFZ32t2Xd13dC6JCU5wDHoDxb+fcp0="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config autoreconfHook ]; ··· 22 22 23 23 meta = { 24 24 description = "Bitcoin Script Debugger"; 25 - homepage = "https://github.com/kallewoof/btcdeb"; 25 + homepage = "https://github.com/bitcoin-core/btcdeb"; 26 26 license = licenses.mit; 27 27 maintainers = with maintainers; [ akru ]; 28 28 platforms = platforms.unix;
+15 -15
pkgs/applications/blockchains/zcash/default.nix
··· 1 1 { rust, rustPlatform, stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook 2 - , makeWrapper, cargo, pkg-config, curl, coreutils, boost178, db62, hexdump 3 - , libsodium, libevent, utf8cpp, util-linux, withDaemon ? true, withMining ? true 4 - , withUtils ? true, withWallet ? true, withZmq ? true, zeromq 2 + , makeWrapper, cargo, pkg-config, curl, coreutils, boost179, db62, hexdump 3 + , libsodium, libevent, testers, utf8cpp, util-linux, withDaemon ? true 4 + , withMining ? true, withUtils ? true, withWallet ? true, withZmq ? true, zcash 5 + , zeromq 5 6 }: 6 7 7 8 rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec { 8 9 pname = "zcash"; 9 - version = "4.7.0"; 10 + version = "5.0.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "zcash"; 13 14 repo = "zcash"; 14 15 rev = "v${version}"; 15 - sha256 = "sha256-yF+/QepSiZwsdZydWjvxDIFeFyJbJyqZmCdMyQHmrzI="; 16 + sha256 = "sha256-5PlqFs2njqNeZgmNz0VKMWcRY5lPaF9oTsoh/uLEWi8="; 16 17 }; 17 18 18 19 prePatch = lib.optionalString stdenv.isAarch64 '' ··· 21 22 --replace "linker = \"aarch64-linux-gnu-gcc\"" "" 22 23 ''; 23 24 24 - cargoPatches = [ 25 - (fetchpatch { 26 - url = "https://github.com/zcash/zcash/commit/61cd19a52d41d60c1987ecf269f7aa8e4d527310.diff"; 27 - sha256 = "sha256-/7T2yCSVlRN7qfFjrZlfBNMlbVHb/KRjtUBY2xFr0mo="; 28 - }) 29 - ]; 30 - 31 - cargoSha256 = "sha256-+BLfO5OnCBqQTIqMXKJdoPCRgtENa+m0WOHKG9gkdMk="; 25 + cargoSha256 = "sha256-eRRRjUbOieRC88wf+f1jAYvqGFmogBEla67NnImicEc="; 32 26 33 27 nativeBuildInputs = [ autoreconfHook cargo hexdump makeWrapper pkg-config ]; 34 - buildInputs = [ boost178 libevent libsodium utf8cpp ] 28 + buildInputs = [ boost179 libevent libsodium utf8cpp ] 35 29 ++ lib.optional withWallet db62 36 30 ++ lib.optional withZmq zeromq; 37 31 ··· 50 44 51 45 configureFlags = [ 52 46 "--disable-tests" 53 - "--with-boost-libdir=${lib.getLib boost178}/lib" 47 + "--with-boost-libdir=${lib.getLib boost179}/lib" 54 48 "CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp" 55 49 "RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}" 56 50 ] ++ lib.optional (!withWallet) "--disable-wallet" ··· 62 56 63 57 # Requires hundreds of megabytes of zkSNARK parameters. 64 58 doCheck = false; 59 + 60 + passthru.tests.version = testers.testVersion { 61 + package = zcash; 62 + command = "zcashd --version"; 63 + version = "v${zcash.version}"; 64 + }; 65 65 66 66 postInstall = '' 67 67 wrapProgram $out/bin/zcash-fetch-params \
+14 -32
pkgs/applications/misc/authenticator/default.nix
··· 3 3 , fetchFromGitLab 4 4 , fetchpatch 5 5 , appstream-glib 6 + , clang 6 7 , desktop-file-utils 7 8 , meson 8 9 , ninja 9 10 , pkg-config 10 - , python3 11 11 , rustPlatform 12 12 , wrapGAppsHook 13 13 , gdk-pixbuf ··· 15 15 , gst_all_1 16 16 , gtk4 17 17 , libadwaita 18 + , libclang 18 19 , openssl 20 + , pipewire 19 21 , sqlite 20 22 , wayland 21 23 , zbar ··· 23 25 24 26 stdenv.mkDerivation rec { 25 27 pname = "authenticator"; 26 - version = "4.0.3"; 28 + version = "4.1.1"; 27 29 28 30 src = fetchFromGitLab { 29 31 domain = "gitlab.gnome.org"; 30 32 owner = "World"; 31 33 repo = "Authenticator"; 32 34 rev = version; 33 - sha256 = "0fvs76f3fm5pxn7wg6sjbqpgip5w2j7xrh4siasdcl2bx6vsld8b"; 35 + hash = "sha256-wl7wyj0vVDkOB7XKQFOEFzCmffTsrUsaM83fWgZ6tG0="; 34 36 }; 35 37 36 38 cargoDeps = rustPlatform.fetchCargoTarball { 37 39 inherit src; 38 40 name = "${pname}-${version}"; 39 - sha256 = "1s97jyszxf24rs3ni11phiyvmp1wm8sicb0rh1jgwz4bn1cnakx4"; 41 + hash = "sha256-3SzemDjLsZUXPPtSlDMBQXQf5P3Sz8caJL73mHRv1js="; 40 42 }; 41 43 42 - postPatch = '' 43 - patchShebangs build-aux 44 - ''; 45 - 46 44 nativeBuildInputs = [ 47 45 appstream-glib 46 + clang 48 47 desktop-file-utils 49 48 meson 50 49 ninja 51 50 pkg-config 52 - python3 53 51 wrapGAppsHook 54 52 ] ++ (with rustPlatform; [ 55 53 cargoSetupHook ··· 62 60 glib 63 61 gst_all_1.gstreamer 64 62 gst_all_1.gst-plugins-base 65 - 66 - # gst-plugins-good needs gtk4 support: 67 - # https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/767 68 - # We copy the way it is built from the Flatpak: 69 - # https://gitlab.gnome.org/World/Authenticator/-/blob/master/build-aux/com.belmoussaoui.Authenticator.Devel.json 70 - (gst_all_1.gst-plugins-good.overrideAttrs (old: { 71 - patches = old.patches or [ ] ++ [ 72 - "${src}/build-aux/767.patch" 73 - ]; 74 - mesonFlags = old.mesonFlags ++ [ 75 - "-Dgtk3=disabled" 76 - "-Dgtk4=enabled" 77 - "-Dgtk4-experiments=true" 78 - ]; 79 - buildInputs = old.buildInputs ++ [ 80 - gtk4 81 - ]; 82 - })) 83 - 84 63 (gst_all_1.gst-plugins-bad.override { enableZbar = true; }) 85 64 gtk4 86 65 libadwaita 87 66 openssl 67 + pipewire 88 68 sqlite 89 69 wayland 90 70 zbar 91 71 ]; 92 72 93 - meta = with lib; { 94 - broken = true; # https://gitlab.gnome.org/World/Authenticator/-/issues/271 73 + LIBCLANG_PATH = "${lib.getLib libclang}/lib"; 74 + 75 + meta = { 95 76 description = "Two-factor authentication code generator for GNOME"; 96 77 homepage = "https://gitlab.gnome.org/World/Authenticator"; 97 - license = licenses.gpl3Plus; 98 - maintainers = with maintainers; [ dotlambda ]; 78 + license = lib.licenses.gpl3Plus; 79 + maintainers = with lib.maintainers; [ dotlambda ]; 80 + platforms = lib.platforms.linux; 99 81 }; 100 82 }
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 24 24 25 25 in stdenv.mkDerivation rec { 26 26 pname = "signal-desktop"; 27 - version = "5.42.0"; # Please backport all updates to the stable channel. 27 + version = "5.43.0"; # Please backport all updates to the stable channel. 28 28 # All releases have a limited lifetime and "expire" 90 days after the release. 29 29 # When releases "expire" the application becomes unusable until an update is 30 30 # applied. The expiration date for the current release can be extracted with: ··· 34 34 35 35 src = fetchurl { 36 36 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 37 - sha256 = "sha256-xjSj7eKaDV8WB0SiPb4orxKK8mV2a2EWiMBK7BE8mgU="; 37 + sha256 = "sha256-DYJ3WZbaalKhQXhVQO3qhJiGj92Cc+pwRDx/YBIi6gg="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+3 -3
pkgs/applications/science/electronics/alliance/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "alliance"; 7 - version = "unstable-2021-09-15"; 7 + version = "unstable-2022-01-13"; 8 8 9 9 src = fetchFromGitLab { 10 10 domain = "gitlab.lip6.fr"; 11 11 owner = "vlsi-eda"; 12 12 repo = "alliance"; 13 - rev = "5e83c92d0307cce9d599f7099fb0023f81d26d65"; 14 - sha256 = "Vd3MTT4eKn4FMt0/F4fQUPcWq25kH0FpeGxQUOetKPY="; 13 + rev = "ebece102e15c110fc79f1da50524c68fd9523f0c"; 14 + hash = "sha256-NGtE3ZmN9LrgXG4NIKrp7dFRVzrKMoudlPUtYYKrZjY="; 15 15 }; 16 16 17 17 prePatch = "cd alliance/src";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "78324aa49909392e169c86bbfd204694523907e8", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/78324aa49909392e169c86bbfd204694523907e8.tar.gz", 4 - "sha256": "15k5ag36asswwv8yazq53lkj9blnz4hzlq23cznvvk5pkjpdm0ni", 5 - "msg": "Update from Hackage at 2022-05-05T15:07:55Z" 2 + "commit": "38aa99a1623af5371157721c2a4b033b828e9938", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/38aa99a1623af5371157721c2a4b033b828e9938.tar.gz", 4 + "sha256": "0phak7cjg3nrj5i3ih2k95hcwx25s6zijbp81ycqd0yb108gvw34", 5 + "msg": "Update from Hackage at 2022-05-10T13:45:20Z" 6 6 }
+3 -11
pkgs/development/compilers/mruby/default.nix
··· 1 - { lib, stdenv, ruby, bison, rake, fetchFromGitHub, fetchpatch }: 1 + { lib, stdenv, ruby, bison, rake, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mruby"; 5 - version = "3.0.0"; 5 + version = "3.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mruby"; 9 9 repo = "mruby"; 10 10 rev = version; 11 - sha256 = "sha256-C3K7ZooaOMa+V2HjxwiKxrrMb7ffl4QAgPsftRtb60c="; 11 + sha256 = "0gnzip7qfadnl0r1k8bpc9a6796sy503h77ggds02wrz7mpq32nf"; 12 12 }; 13 - 14 - patches = [ 15 - (fetchpatch { 16 - name = "CVE-2022-1212.patch"; 17 - url = "https://github.com/mruby/mruby/commit/3cf291f72224715942beaf8553e42ba8891ab3c6.patch"; 18 - sha256 = "1bl8wm6v7v18zgxqvm4kbn8g97a75phzrdah279xqw1qvplbd2w7"; 19 - }) 20 - ]; 21 13 22 14 nativeBuildInputs = [ ruby bison rake ]; 23 15
+1 -9
pkgs/development/haskell-modules/configuration-common.nix
··· 334 334 matplotlib = dontCheck super.matplotlib; 335 335 336 336 # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage 337 - matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: { 338 - brick = self.brick_0_64_2; 339 - # Doesn't support aeson 2.0 340 - # https://github.com/matterhorn-chat/matterhorn/issues/759 341 - aeson = self.aeson_1_5_6_0; 342 - })); 343 - mattermost-api = super.mattermost-api.override { 344 - aeson = self.aeson_1_5_6_0; 345 - }; 337 + matterhorn = doJailbreak super.matterhorn; 346 338 347 339 memcache = dontCheck super.memcache; 348 340 metrics = dontCheck super.metrics;
+1 -1
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 118 118 liquidhaskell = markBroken super.liquidhaskell; 119 119 120 120 # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore. 121 - exceptions = super.exceptions_0_10_4; 121 + exceptions = super.exceptions_0_10_5; 122 122 123 123 # ghc versions which don‘t match the ghc-lib-parser-ex version need the 124 124 # additional dependency to compile successfully.
+1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 3082 3082 - LTS 3083 3083 - lua-bc 3084 3084 - luautils 3085 + - lucid2 3085 3086 - lucid-htmx 3086 3087 - lucid-hyperscript 3087 3088 - luis-client
-1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 118 118 - ghc-lib-parser == 8.10.7.* # 2022-02-17: preserve for GHC 8.10.7 119 119 - ghc-lib-parser-ex == 8.10.* # 2022-02-17: preserve for GHC 8.10.7 120 120 - doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.* 121 - - brick == 0.64.* # 2021-12-03: matterhorn depends on brick < 0.65 122 121 - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2 123 122 - ormolu == 0.2.* # 2022-02-21: For ghc 8.8 and 8.10 124 123 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this
+885 -203
pkgs/development/haskell-modules/hackage-packages.nix
··· 770 770 }: 771 771 mkDerivation { 772 772 pname = "AesonBson"; 773 - version = "0.4.0"; 774 - sha256 = "08ffz1fr8x5z3ipvk99wc5n363ghxrq1z0cv1yh57wx18ialk1cx"; 773 + version = "0.4.1"; 774 + sha256 = "0nyl0a3814163dxpmiadmmjdhd9cycmihwmsz7f0316hbm30lg7z"; 775 775 enableSeparateDataOutput = true; 776 776 libraryHaskellDepends = [ 777 777 aeson attoparsec base bson scientific text unordered-containers ··· 1131 1131 }) {}; 1132 1132 1133 1133 "AspectAG" = callPackage 1134 - ({ mkDerivation, base, containers, mtl, poly-rec, requirements 1135 - , tagged, template-haskell 1134 + ({ mkDerivation, base, containers, ghc-prim, loch-th, mtl, poly-rec 1135 + , requirements, template-haskell 1136 1136 }: 1137 1137 mkDerivation { 1138 1138 pname = "AspectAG"; 1139 - version = "0.6.0.0"; 1140 - sha256 = "09lm1hs9l3h6ndv385adhh0kf9id10fjf0n1bczgzqgxmiykx2kn"; 1139 + version = "0.7.0.0"; 1140 + sha256 = "1w5zfx5vgvkys84vdrdd3rv39ly25wbn9izlir19irniqsbf6z6v"; 1141 1141 libraryHaskellDepends = [ 1142 - base containers mtl poly-rec requirements tagged template-haskell 1142 + base containers ghc-prim loch-th mtl poly-rec requirements 1143 + template-haskell 1143 1144 ]; 1144 1145 description = "Strongly typed Attribute Grammars implemented using type-level programming"; 1145 1146 license = lib.licenses.gpl3Only; ··· 14419 14420 pname = "Naperian"; 14420 14421 version = "0.1.1.0"; 14421 14422 sha256 = "1i9hc1pdp9mg9x1xd4wrv06cbhjxw0yhyk2xhsm8jz6rgksa22j7"; 14423 + revision = "1"; 14424 + editedCabalFile = "0njjyn54cda1j2rmxhmz9hnbg5rwd5f8qcdgfk2z9bq1aiv3h61q"; 14422 14425 libraryHaskellDepends = [ base containers ghc-prim vector ]; 14423 14426 description = "Naperian Functors for APL-like programming"; 14424 14427 license = "unknown"; ··· 24435 24438 license = lib.licenses.bsd3; 24436 24439 }) {}; 24437 24440 24441 + "adjunctions_4_4_1" = callPackage 24442 + ({ mkDerivation, array, base, comonad, containers, contravariant 24443 + , distributive, free, generic-deriving, hspec, hspec-discover, mtl 24444 + , profunctors, semigroupoids, semigroups, tagged, transformers 24445 + , transformers-compat, void 24446 + }: 24447 + mkDerivation { 24448 + pname = "adjunctions"; 24449 + version = "4.4.1"; 24450 + sha256 = "0hqm86v5in7xp31wv3wvr1h7gsim96fpl0si0xrpv8060qalzwww"; 24451 + libraryHaskellDepends = [ 24452 + array base comonad containers contravariant distributive free mtl 24453 + profunctors semigroupoids semigroups tagged transformers 24454 + transformers-compat void 24455 + ]; 24456 + testHaskellDepends = [ base distributive generic-deriving hspec ]; 24457 + testToolDepends = [ hspec-discover ]; 24458 + description = "Adjunctions and representable functors"; 24459 + license = lib.licenses.bsd3; 24460 + hydraPlatforms = lib.platforms.none; 24461 + }) {}; 24462 + 24438 24463 "adler32" = callPackage 24439 24464 ({ mkDerivation, base, bytestring, hspec, zlib }: 24440 24465 mkDerivation { ··· 24725 24750 pname = "aeson-better-errors"; 24726 24751 version = "0.9.1.1"; 24727 24752 sha256 = "05yibq9kqbjb8rh84n12sbax05amvd8jccpja0hyadz58pjy4jnk"; 24753 + revision = "1"; 24754 + editedCabalFile = "0wzvrmhn5q2x1mcv43cyxhlck815ldkhx7c7gz5ijjyva1iicgn2"; 24728 24755 libraryHaskellDepends = [ 24729 24756 aeson base bytestring dlist mtl scientific text transformers 24730 24757 transformers-compat unordered-containers vector void ··· 25122 25149 }) {}; 25123 25150 25124 25151 "aeson-iproute" = callPackage 25125 - ({ mkDerivation, aeson, base, doctest, iproute, text 25126 - , unordered-containers 25127 - }: 25152 + ({ mkDerivation, aeson, base, doctest, iproute, text }: 25128 25153 mkDerivation { 25129 25154 pname = "aeson-iproute"; 25130 - version = "0.2.1"; 25131 - sha256 = "1130mr5fqwi4d74xg6nkvpqycc0vvd6rsiahm1pdhbrx3wvra8p2"; 25132 - revision = "1"; 25133 - editedCabalFile = "1q9yr42mvvcqy20ww1xcsy2q6jji0mrqng2clq8yd5diyy7kqx1a"; 25134 - libraryHaskellDepends = [ 25135 - aeson base iproute text unordered-containers 25136 - ]; 25155 + version = "0.3.0"; 25156 + sha256 = "027mmmjlfld6mncn0k8v0i2lg4xkgymaakl5nqs7jw7apgy83x2z"; 25157 + libraryHaskellDepends = [ aeson base iproute text ]; 25137 25158 testHaskellDepends = [ base doctest ]; 25138 25159 description = "Aeson instances for iproute types"; 25139 25160 license = lib.licenses.bsd3; ··· 33293 33314 }: 33294 33315 mkDerivation { 33295 33316 pname = "arduino-copilot"; 33296 - version = "1.7.0"; 33297 - sha256 = "073l9fmg1i83whdfbplpshz2695ls7bb4kf4c40446q0cpccpnrc"; 33317 + version = "1.7.1"; 33318 + sha256 = "1w42y0avx032i7s208p1rkc24c7hy7lbjia5qjgixzv8qcc0693b"; 33298 33319 libraryHaskellDepends = [ 33299 33320 base containers copilot copilot-c99 copilot-language directory 33300 33321 filepath mtl optparse-applicative sketch-frp-copilot temporary ··· 40891 40912 license = lib.licenses.bsd3; 40892 40913 }) {}; 40893 40914 40915 + "benchpress_0_2_2_20" = callPackage 40916 + ({ mkDerivation, base, bytestring, mtl, time }: 40917 + mkDerivation { 40918 + pname = "benchpress"; 40919 + version = "0.2.2.20"; 40920 + sha256 = "0yh44hdk7gh6ygdlys2mrij2gphdv5da8hmc7rnyf6cr5509ynn8"; 40921 + isLibrary = true; 40922 + isExecutable = true; 40923 + libraryHaskellDepends = [ base mtl time ]; 40924 + executableHaskellDepends = [ base bytestring time ]; 40925 + description = "Micro-benchmarking with detailed statistics"; 40926 + license = lib.licenses.bsd3; 40927 + hydraPlatforms = lib.platforms.none; 40928 + }) {}; 40929 + 40894 40930 "bencode" = callPackage 40895 40931 ({ mkDerivation, base, binary, bytestring, containers, hspec 40896 40932 , parsec, QuickCheck, transformers, transformers-compat ··· 41420 41456 testToolDepends = [ hspec-discover ]; 41421 41457 description = "Bifunctors"; 41422 41458 license = lib.licenses.bsd3; 41459 + }) {}; 41460 + 41461 + "bifunctors_5_5_12" = callPackage 41462 + ({ mkDerivation, base, base-orphans, comonad, containers, hspec 41463 + , hspec-discover, QuickCheck, tagged, template-haskell 41464 + , th-abstraction, transformers, transformers-compat 41465 + }: 41466 + mkDerivation { 41467 + pname = "bifunctors"; 41468 + version = "5.5.12"; 41469 + sha256 = "0pbidsv1w3bvzs8w6sv8g1iqf0l9r1y0b1fmvd67cwlp01r7f1n6"; 41470 + libraryHaskellDepends = [ 41471 + base base-orphans comonad containers tagged template-haskell 41472 + th-abstraction transformers 41473 + ]; 41474 + testHaskellDepends = [ 41475 + base hspec QuickCheck template-haskell transformers 41476 + transformers-compat 41477 + ]; 41478 + testToolDepends = [ hspec-discover ]; 41479 + description = "Bifunctors"; 41480 + license = lib.licenses.bsd3; 41481 + hydraPlatforms = lib.platforms.none; 41423 41482 }) {}; 41424 41483 41425 41484 "bighugethesaurus" = callPackage ··· 44196 44255 pname = "bits"; 44197 44256 version = "0.6"; 44198 44257 sha256 = "18s2aa99cwcshcws2zl2ll7xgqn9dpznpkv1nplamc9h4vmqqs93"; 44258 + revision = "1"; 44259 + editedCabalFile = "1f118vwwskai74l6wn5sfy002k241qv1rhpsahphfr58llzgvv50"; 44199 44260 libraryHaskellDepends = [ base bytes mtl transformers ]; 44200 44261 description = "Various bit twiddling and bitwise serialization primitives"; 44201 44262 license = lib.licenses.bsd3; ··· 45082 45143 broken = true; 45083 45144 }) {}; 45084 45145 45146 + "blaze-htmx" = callPackage 45147 + ({ mkDerivation, base, blaze-html, blaze-markup }: 45148 + mkDerivation { 45149 + pname = "blaze-htmx"; 45150 + version = "0.1.0.0"; 45151 + sha256 = "18bl1bnf5z3p9pa12hjd2j53hi1qigya8bbpsj9jczgn4cbvx5q6"; 45152 + libraryHaskellDepends = [ base blaze-html blaze-markup ]; 45153 + testHaskellDepends = [ base blaze-html ]; 45154 + description = "Blaze integration of the htmx library"; 45155 + license = lib.licenses.bsd3; 45156 + }) {}; 45157 + 45085 45158 "blaze-json" = callPackage 45086 45159 ({ mkDerivation, aeson, base, bytestring, bytestring-builder 45087 45160 , containers, data-default-class, doctest, QuickCheck, scientific ··· 46758 46831 license = lib.licenses.bsd3; 46759 46832 }) {}; 46760 46833 46834 + "bound_2_0_5" = callPackage 46835 + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad 46836 + , deepseq, deriving-compat, hashable, mmorph, profunctors 46837 + , template-haskell, th-abstraction, transformers 46838 + , transformers-compat, vector, void 46839 + }: 46840 + mkDerivation { 46841 + pname = "bound"; 46842 + version = "2.0.5"; 46843 + sha256 = "1cnw0q97bys7jcpjds2fb6zkq9pyqxcb8v0b5dvkckqmlp8agn4v"; 46844 + libraryHaskellDepends = [ 46845 + base bifunctors binary bytes cereal comonad deepseq hashable mmorph 46846 + profunctors template-haskell th-abstraction transformers 46847 + transformers-compat 46848 + ]; 46849 + testHaskellDepends = [ 46850 + base deriving-compat transformers transformers-compat vector void 46851 + ]; 46852 + description = "Making de Bruijn Succ Less"; 46853 + license = lib.licenses.bsd3; 46854 + hydraPlatforms = lib.platforms.none; 46855 + }) {}; 46856 + 46761 46857 "bound-extras" = callPackage 46762 46858 ({ mkDerivation, adjunctions, base, bound, containers, deepseq 46763 46859 , filepath, hashable, pretty, tasty, tasty-golden, text-short ··· 47153 47249 broken = true; 47154 47250 }) {}; 47155 47251 47156 - "brick_0_64_2" = callPackage 47157 - ({ mkDerivation, base, bytestring, config-ini, containers 47158 - , contravariant, data-clist, deepseq, directory, dlist, exceptions 47159 - , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm 47160 - , template-haskell, text, text-zipper, transformers, unix, vector 47161 - , vty, word-wrap 47162 - }: 47163 - mkDerivation { 47164 - pname = "brick"; 47165 - version = "0.64.2"; 47166 - sha256 = "058kpghx5s559z5l9hav44s8vb5lizn8j7v7l4lmvpqx3a6cisn7"; 47167 - isLibrary = true; 47168 - isExecutable = true; 47169 - libraryHaskellDepends = [ 47170 - base bytestring config-ini containers contravariant data-clist 47171 - deepseq directory dlist exceptions filepath microlens microlens-mtl 47172 - microlens-th stm template-haskell text text-zipper transformers 47173 - unix vector vty word-wrap 47174 - ]; 47175 - testHaskellDepends = [ 47176 - base containers microlens QuickCheck vector 47177 - ]; 47178 - description = "A declarative terminal user interface library"; 47179 - license = lib.licenses.bsd3; 47180 - hydraPlatforms = lib.platforms.none; 47181 - }) {}; 47182 - 47183 47252 "brick" = callPackage 47184 47253 ({ mkDerivation, base, bytestring, config-ini, containers 47185 47254 , contravariant, data-clist, deepseq, directory, dlist, exceptions ··· 49055 49124 ]; 49056 49125 description = "Sharing code for serialization between binary and cereal"; 49057 49126 license = lib.licenses.bsd3; 49127 + }) {}; 49128 + 49129 + "bytes_0_17_2" = callPackage 49130 + ({ mkDerivation, base, binary, binary-orphans, bytestring, cereal 49131 + , containers, hashable, mtl, scientific, text, time, transformers 49132 + , transformers-compat, unordered-containers, void 49133 + }: 49134 + mkDerivation { 49135 + pname = "bytes"; 49136 + version = "0.17.2"; 49137 + sha256 = "06kqqk19qjhrwdqi6pyd1lwqfnj2sw3b3s49lc5vr2fmv8gg8mdw"; 49138 + libraryHaskellDepends = [ 49139 + base binary binary-orphans bytestring cereal containers hashable 49140 + mtl scientific text time transformers transformers-compat 49141 + unordered-containers void 49142 + ]; 49143 + description = "Sharing code for serialization between binary and cereal"; 49144 + license = lib.licenses.bsd3; 49145 + hydraPlatforms = lib.platforms.none; 49058 49146 }) {}; 49059 49147 49060 49148 "byteset" = callPackage ··· 52492 52580 52493 52581 "cantor-pairing" = callPackage 52494 52582 ({ mkDerivation, base, containers, hspec, hspec-discover 52495 - , integer-gmp, integer-logarithms, integer-roots, mtl 52583 + , integer-gmp, integer-logarithms, integer-roots 52496 52584 }: 52497 52585 mkDerivation { 52498 52586 pname = "cantor-pairing"; 52499 - version = "0.2.0.1"; 52500 - sha256 = "12wfm27gwhar7djd459yc86bv29818xdyc8glkhgn4q1kx7nda90"; 52587 + version = "0.2.0.2"; 52588 + sha256 = "1h95xbc1lhwd40qk64qw2cmr7prwygli1q2wy5hscny7jyah95c2"; 52501 52589 libraryHaskellDepends = [ 52502 52590 base containers integer-gmp integer-logarithms integer-roots 52503 52591 ]; 52504 - testHaskellDepends = [ base containers hspec mtl ]; 52592 + testHaskellDepends = [ base containers hspec ]; 52505 52593 testToolDepends = [ hspec-discover ]; 52506 52594 description = "Convert data to and from a natural number representation"; 52507 52595 license = lib.licenses.mit; ··· 66315 66403 }: 66316 66404 mkDerivation { 66317 66405 pname = "copilot"; 66318 - version = "3.8"; 66319 - sha256 = "0lqr2ns6jg7m36pynl6i442d8x4kdlwlxqf59a0gspn8zgidwaii"; 66406 + version = "3.9"; 66407 + sha256 = "0kryqpk4sn5gbpjpvzcdhd5yp5045cfr2c112df5vagd7gp4a4gd"; 66320 66408 isLibrary = true; 66321 66409 isExecutable = true; 66322 66410 libraryHaskellDepends = [ ··· 66335 66423 }: 66336 66424 mkDerivation { 66337 66425 pname = "copilot-c99"; 66338 - version = "3.8"; 66339 - sha256 = "0bpak9kd23j8bmc8x7ksb84gggmxplax4wj00c39mrvh5cb5wlwx"; 66426 + version = "3.9"; 66427 + sha256 = "1m915j72b6axbwnls4kcjcdpixxlrjxw4zpvdzq34jym5h2kpd78"; 66340 66428 libraryHaskellDepends = [ 66341 66429 base containers copilot-core directory filepath language-c99 66342 66430 language-c99-simple language-c99-util mtl pretty ··· 66369 66457 }: 66370 66458 mkDerivation { 66371 66459 pname = "copilot-core"; 66372 - version = "3.8"; 66373 - sha256 = "0vv3p9a0c3pa856yx8zmr4d5ag8mym9gbpz5bgi17a7cgfc682cz"; 66460 + version = "3.9"; 66461 + sha256 = "0haqyci12b44dn1hpfqp9hfyw949gl61yzxic8kznb0hl1h1sl5a"; 66374 66462 libraryHaskellDepends = [ base dlist mtl pretty ]; 66375 66463 testHaskellDepends = [ 66376 66464 base HUnit pretty QuickCheck test-framework test-framework-hunit ··· 66407 66495 }: 66408 66496 mkDerivation { 66409 66497 pname = "copilot-language"; 66410 - version = "3.8"; 66411 - sha256 = "1wnv7xkgalxd7p7bm2zrsbg2r2wip9an8m5m3fc63wxvk9wcabj6"; 66498 + version = "3.9"; 66499 + sha256 = "1041mm4c8zf7wlrcnfp97lsnr8qsmclr7y3qcawx9pmarwk8arg8"; 66412 66500 libraryHaskellDepends = [ 66413 66501 array base containers copilot-core copilot-theorem data-reify mtl 66414 66502 ]; ··· 66427 66515 }: 66428 66516 mkDerivation { 66429 66517 pname = "copilot-libraries"; 66430 - version = "3.8"; 66431 - sha256 = "1sx8bl10j7qwqi91dbl9dahy9l2n17qfbyni73az2fx9rq3q1jkz"; 66518 + version = "3.9"; 66519 + sha256 = "12h121zlq4xbkh947lkxdsjykf061rlmxkyhzyc2s2520fhkapx3"; 66432 66520 libraryHaskellDepends = [ 66433 66521 array base containers copilot-language data-reify mtl parsec 66434 66522 ]; ··· 66461 66549 }: 66462 66550 mkDerivation { 66463 66551 pname = "copilot-theorem"; 66464 - version = "3.8"; 66465 - sha256 = "18287hs36lhf1g6l740vkynccy1d87lrr9rcjpgzfn03s9y3d58n"; 66552 + version = "3.9"; 66553 + sha256 = "1gnr6rd88gxs5wxkh6j28hqm81bj8b585n6ywm6s5p2wxgx0wzbn"; 66466 66554 libraryHaskellDepends = [ 66467 66555 ansi-terminal base bimap bv-sized containers copilot-core 66468 66556 data-default directory filepath libBF mtl panic parameterized-utils ··· 76246 76334 license = lib.licenses.bsd3; 76247 76335 }) {}; 76248 76336 76337 + "deriving-compat_0_6_1" = callPackage 76338 + ({ mkDerivation, base, base-compat, base-orphans, containers 76339 + , ghc-boot-th, ghc-prim, hspec, hspec-discover, QuickCheck, tagged 76340 + , template-haskell, th-abstraction, transformers 76341 + , transformers-compat, void 76342 + }: 76343 + mkDerivation { 76344 + pname = "deriving-compat"; 76345 + version = "0.6.1"; 76346 + sha256 = "09lxms6220saycra4kpxihwa7zh253zmv1zpa41dbnhgffxs3zbb"; 76347 + libraryHaskellDepends = [ 76348 + base containers ghc-boot-th ghc-prim template-haskell 76349 + th-abstraction transformers transformers-compat 76350 + ]; 76351 + testHaskellDepends = [ 76352 + base base-compat base-orphans hspec QuickCheck tagged 76353 + template-haskell transformers transformers-compat void 76354 + ]; 76355 + testToolDepends = [ hspec-discover ]; 76356 + description = "Backports of GHC deriving extensions"; 76357 + license = lib.licenses.bsd3; 76358 + hydraPlatforms = lib.platforms.none; 76359 + }) {}; 76360 + 76249 76361 "deriving-show-simple" = callPackage 76250 76362 ({ mkDerivation, base, HUnit }: 76251 76363 mkDerivation { ··· 77678 77790 }: 77679 77791 mkDerivation { 77680 77792 pname = "diagnose"; 77681 - version = "1.9.0"; 77682 - sha256 = "0w3mzk50pzf5rr2k8lfkmmlsr8kmvgx1jcszla4khx0an5bsafnf"; 77793 + version = "2.0.0"; 77794 + sha256 = "1rb2fm0bx1rmb63xc56v19adi9f0iy72j0h8rvrvw0lvcwp398xk"; 77683 77795 libraryHaskellDepends = [ 77684 77796 base data-default hashable prettyprinter 77685 77797 prettyprinter-ansi-terminal unordered-containers wcwidth ··· 86016 86128 license = lib.licenses.bsd3; 86017 86129 }) {}; 86018 86130 86131 + "either_5_0_2" = callPackage 86132 + ({ mkDerivation, base, bifunctors, mtl, profunctors, QuickCheck 86133 + , semigroupoids, test-framework, test-framework-quickcheck2 86134 + }: 86135 + mkDerivation { 86136 + pname = "either"; 86137 + version = "5.0.2"; 86138 + sha256 = "1gl748ia68bldbqb2fl7vjv44g0y8ivn659fjmy1qyypgyb5p95z"; 86139 + libraryHaskellDepends = [ 86140 + base bifunctors mtl profunctors semigroupoids 86141 + ]; 86142 + testHaskellDepends = [ 86143 + base QuickCheck test-framework test-framework-quickcheck2 86144 + ]; 86145 + description = "Combinators for working with sums"; 86146 + license = lib.licenses.bsd3; 86147 + hydraPlatforms = lib.platforms.none; 86148 + }) {}; 86149 + 86019 86150 "either-both" = callPackage 86020 86151 ({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck }: 86021 86152 mkDerivation { ··· 90852 90983 broken = true; 90853 90984 }) {}; 90854 90985 90855 - "exceptions_0_10_4" = callPackage 90986 + "exceptions_0_10_5" = callPackage 90856 90987 ({ mkDerivation, base, mtl, QuickCheck, stm, template-haskell 90857 90988 , test-framework, test-framework-hunit, test-framework-quickcheck2 90858 90989 , transformers 90859 90990 }: 90860 90991 mkDerivation { 90861 90992 pname = "exceptions"; 90862 - version = "0.10.4"; 90863 - sha256 = "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd"; 90864 - revision = "3"; 90865 - editedCabalFile = "0b9bml5j46zz62ik2827ndsd5293dh8630086x1mngb80gnrml3y"; 90993 + version = "0.10.5"; 90994 + sha256 = "12xz2x16pv1a6csz64bpl22v40vykjwvdaiz39i8f8nkwasc1qv6"; 90866 90995 libraryHaskellDepends = [ 90867 90996 base mtl stm template-haskell transformers 90868 90997 ]; ··· 97950 98079 pname = "foldl"; 97951 98080 version = "1.4.12"; 97952 98081 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 97953 - revision = "2"; 97954 - editedCabalFile = "0ggl6djyqrc56j8iy56f61jki7v3ym35ykd944z045gpjzbaq3c6"; 98082 + revision = "3"; 98083 + editedCabalFile = "1xijnq8qkmrj2w7h6gr2vy8a0ajhiapzi2fain5pgcllli2fny2r"; 97955 98084 libraryHaskellDepends = [ 97956 98085 base bytestring comonad containers contravariant hashable primitive 97957 98086 profunctors random semigroupoids text transformers ··· 99455 99584 license = lib.licenses.bsd3; 99456 99585 }) {}; 99457 99586 99587 + "free_5_1_8" = callPackage 99588 + ({ mkDerivation, base, comonad, containers, distributive 99589 + , exceptions, indexed-traversable, mtl, profunctors, semigroupoids 99590 + , template-haskell, th-abstraction, transformers, transformers-base 99591 + }: 99592 + mkDerivation { 99593 + pname = "free"; 99594 + version = "5.1.8"; 99595 + sha256 = "0h43a7w6yjnvqp3rl8qvcjl9a0hg86l0h7zxkikd0mw8n65l8xvr"; 99596 + libraryHaskellDepends = [ 99597 + base comonad containers distributive exceptions indexed-traversable 99598 + mtl profunctors semigroupoids template-haskell th-abstraction 99599 + transformers transformers-base 99600 + ]; 99601 + description = "Monads for free"; 99602 + license = lib.licenses.bsd3; 99603 + hydraPlatforms = lib.platforms.none; 99604 + }) {}; 99605 + 99458 99606 "free-algebras" = callPackage 99459 99607 ({ mkDerivation, base, containers, data-fix, dlist, free, groups 99460 99608 , hedgehog, kan-extensions, mtl, transformers ··· 101678 101826 "futhark" = callPackage 101679 101827 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 101680 101828 , base16-bytestring, binary, blaze-html, bmp, bytestring 101681 - , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 101829 + , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5, Diff 101682 101830 , directory, directory-tree, dlist, file-embed, filepath, free 101683 101831 , futhark-data, futhark-manifest, futhark-server, githash, half 101684 101832 , happy, haskeline, hslogger, language-c-quote, lens, lsp ··· 101690 101838 }: 101691 101839 mkDerivation { 101692 101840 pname = "futhark"; 101693 - version = "0.21.10"; 101694 - sha256 = "0mm0awd1sf5sfb6i1yjbcm67j2nhqpfnn11q8p61z3b2py6lnzzf"; 101841 + version = "0.21.11"; 101842 + sha256 = "1n8id7h0qpgifbmkdh3ma72kpv6hn6siyfjd62day3zywrjfxd61"; 101695 101843 isLibrary = true; 101696 101844 isExecutable = true; 101697 101845 libraryHaskellDepends = [ 101698 101846 aeson ansi-terminal array base base16-bytestring binary blaze-html 101699 101847 bmp bytestring bytestring-to-vector cmark-gfm containers 101700 - cryptohash-md5 directory directory-tree dlist file-embed filepath 101701 - free futhark-data futhark-manifest futhark-server githash half 101702 - haskeline hslogger language-c-quote lens lsp mainland-pretty 101848 + cryptohash-md5 Diff directory directory-tree dlist file-embed 101849 + filepath free futhark-data futhark-manifest futhark-server githash 101850 + half haskeline hslogger language-c-quote lens lsp mainland-pretty 101703 101851 megaparsec mtl mwc-random neat-interpolation parallel process 101704 101852 process-extras random regex-tdfa srcloc statistics template-haskell 101705 101853 temporary terminal-size text time transformers vector versions 101706 101854 zip-archive zlib 101707 101855 ]; 101708 101856 libraryToolDepends = [ alex happy ]; 101709 - executableHaskellDepends = [ base text ]; 101857 + executableHaskellDepends = [ base ]; 101710 101858 testHaskellDepends = [ 101711 101859 base containers megaparsec mtl parser-combinators QuickCheck tasty 101712 101860 tasty-hunit tasty-quickcheck text ··· 103548 103696 pname = "generic-lens"; 103549 103697 version = "2.2.1.0"; 103550 103698 sha256 = "17an4669igzs6pwzqxnpkx9gmxwz64p32d1zcinhh5agd56y70pa"; 103699 + revision = "1"; 103700 + editedCabalFile = "1wzxvfi9kzhbglih1syqhx42kcsvlinnfc338fl731k6hc95hmlm"; 103551 103701 libraryHaskellDepends = [ 103552 103702 base generic-lens-core profunctors text 103553 103703 ]; ··· 103564 103714 pname = "generic-lens-core"; 103565 103715 version = "2.2.1.0"; 103566 103716 sha256 = "08i4c9yb6z84iknrnl9f3f343121j7ilp0a679v81nsjm9xz3rlf"; 103717 + revision = "1"; 103718 + editedCabalFile = "1dbjhd6k7ypqa9f4h9v2xndgb4mjhfli3n1vjm8r8ga0kfndbqfn"; 103567 103719 libraryHaskellDepends = [ base indexed-profunctors text ]; 103568 103720 description = "Generically derive traversals, lenses and prisms"; 103569 103721 license = lib.licenses.bsd3; ··· 103664 103816 pname = "generic-optics"; 103665 103817 version = "2.2.1.0"; 103666 103818 sha256 = "1bw7bbkrd1sfshzx7v1nbdnkxc82krw96x7vnl7myz9748m4472z"; 103819 + revision = "1"; 103820 + editedCabalFile = "13wkbs8x0clkqzi4xqin89qywpky8jkpz9cxgwsglbpcyw11jvgq"; 103667 103821 libraryHaskellDepends = [ 103668 103822 base generic-lens-core optics-core text 103669 103823 ]; ··· 105036 105190 105037 105191 "geomancy" = callPackage 105038 105192 ({ mkDerivation, base, containers, criterion, deepseq, hedgehog 105039 - , linear 105193 + , linear, mono-traversable, simple-affine-space 105040 105194 }: 105041 105195 mkDerivation { 105042 105196 pname = "geomancy"; 105043 - version = "0.2.3.0"; 105044 - sha256 = "1li0411y725c5k6zmkki0brz4w4yksxfdbk2ggq31yirmdihc5al"; 105045 - libraryHaskellDepends = [ base containers deepseq ]; 105046 - testHaskellDepends = [ base deepseq hedgehog linear ]; 105047 - benchmarkHaskellDepends = [ base criterion deepseq linear ]; 105197 + version = "0.2.4.0"; 105198 + sha256 = "1wc9fza03afha1ni7jh9gpm39k20d6n5kmjgkpd06aqpf6yaqfcl"; 105199 + libraryHaskellDepends = [ 105200 + base containers deepseq mono-traversable simple-affine-space 105201 + ]; 105202 + testHaskellDepends = [ 105203 + base deepseq hedgehog linear simple-affine-space 105204 + ]; 105205 + benchmarkHaskellDepends = [ 105206 + base criterion deepseq linear simple-affine-space 105207 + ]; 105048 105208 description = "Geometry and matrix manipulation"; 105049 105209 license = lib.licenses.bsd3; 105050 105210 }) {}; ··· 105503 105663 }) {}; 105504 105664 105505 105665 "ghc-debug-brick" = callPackage 105506 - ({ mkDerivation, base, brick, containers, cursor, directory 105666 + ({ mkDerivation, base, brick, containers, deepseq, directory 105507 105667 , exceptions, filepath, ghc-debug-client, ghc-debug-common 105508 105668 , ghc-debug-convention, microlens, microlens-platform, text, time 105509 105669 , unordered-containers, vty 105510 105670 }: 105511 105671 mkDerivation { 105512 105672 pname = "ghc-debug-brick"; 105513 - version = "0.2.0.0"; 105514 - sha256 = "1jv2n0bxy37whsxs4drajs0mx83qng82qr62igicfnlqsvd5sk36"; 105673 + version = "0.2.1.0"; 105674 + sha256 = "02zkfndppp386va6vp6mamsv195sdvvwa3dj0ff2kp3kb4gbny7n"; 105515 105675 isLibrary = false; 105516 105676 isExecutable = true; 105517 105677 executableHaskellDepends = [ 105518 - base brick containers cursor directory exceptions filepath 105678 + base brick containers deepseq directory exceptions filepath 105519 105679 ghc-debug-client ghc-debug-common ghc-debug-convention microlens 105520 105680 microlens-platform text time unordered-containers vty 105521 105681 ]; ··· 105555 105715 }: 105556 105716 mkDerivation { 105557 105717 pname = "ghc-debug-common"; 105558 - version = "0.2.0.0"; 105559 - sha256 = "1fw9whgh2zayvaagn1f7x1qkwvznpjhpn4zkfnfav24pkmpf5ijy"; 105560 - revision = "2"; 105561 - editedCabalFile = "1cq2bgq9n6295912p8bfwkrg9jqx36x4zxzj468pkr3dsfhjqr23"; 105718 + version = "0.2.1.0"; 105719 + sha256 = "1p895vq31ijkp8lgscxrvpiq2z97l9wx8rcji4nf8kc3bkprk8kl"; 105562 105720 libraryHaskellDepends = [ 105563 105721 array base binary bytestring containers cpu deepseq directory 105564 105722 dom-lt filepath ghc-debug-convention ghc-heap hashable transformers ··· 105588 105746 }: 105589 105747 mkDerivation { 105590 105748 pname = "ghc-debug-stub"; 105591 - version = "0.2.0.0"; 105592 - sha256 = "1zi388jwdad9qlj1v0ihrv67abknbhh7scr1fymc808xmkkwk701"; 105593 - revision = "1"; 105594 - editedCabalFile = "0irnhf32ghxch8r0p2vd7afj3282a1r9lval2an2mj99kcllhl6d"; 105749 + version = "0.2.1.0"; 105750 + sha256 = "1wjmlm9m6iwpn7bz3bjww7vlbp5jac5a8adzzfcxsgw4dz47n221"; 105595 105751 libraryHaskellDepends = [ 105596 105752 base directory filepath ghc-debug-convention ghc-prim 105597 105753 ]; ··· 115852 116008 license = lib.licenses.bsd3; 115853 116009 }) {}; 115854 116010 116011 + "graphs_0_7_2" = callPackage 116012 + ({ mkDerivation, array, base, containers, transformers 116013 + , transformers-compat, void 116014 + }: 116015 + mkDerivation { 116016 + pname = "graphs"; 116017 + version = "0.7.2"; 116018 + sha256 = "1isdy8qx3q00pb3jinvvmfvzhwblr3yhj4dzmlv0hdj0yi9j8bly"; 116019 + libraryHaskellDepends = [ 116020 + array base containers transformers transformers-compat void 116021 + ]; 116022 + description = "A simple monadic graph library"; 116023 + license = lib.licenses.bsd3; 116024 + hydraPlatforms = lib.platforms.none; 116025 + }) {}; 116026 + 115855 116027 "graphted" = callPackage 115856 116028 ({ mkDerivation, base, indexed }: 115857 116029 mkDerivation { ··· 119766 119938 ({ mkDerivation, base, containers, deepseq, fgl, hashable, HUnit 119767 119939 , monad-primitive, primitive, QuickCheck, ref-tf, test-framework 119768 119940 , test-framework-hunit, test-framework-quickcheck2, vector 119941 + , vector-th-unbox 119769 119942 }: 119770 119943 mkDerivation { 119771 119944 pname = "haggle"; 119772 - version = "0.1.0.1"; 119773 - sha256 = "1j598hcjw0p9iac4h91w47k4rh9k0h2r9gk3rrfkklvw84aznkrz"; 119945 + version = "0.2"; 119946 + sha256 = "1n7rg63bz283d938vr2w7ghza2qmljw04bg1wr4zhpylw6jjy2b7"; 119774 119947 libraryHaskellDepends = [ 119775 119948 base containers deepseq hashable monad-primitive primitive ref-tf 119776 - vector 119949 + vector vector-th-unbox 119777 119950 ]; 119778 119951 testHaskellDepends = [ 119779 119952 base containers fgl HUnit QuickCheck test-framework ··· 122089 122262 pname = "happy"; 122090 122263 version = "1.19.12"; 122091 122264 sha256 = "03xlmq6qmdx4zvzw8bp33kd9g7yvcq5cz4wg50xilw812kj276pv"; 122265 + revision = "1"; 122266 + editedCabalFile = "13wydw1mmdry4l9r63vxjk4h55ci9hgwzn1a842qqk1m2rb4xiln"; 122092 122267 isLibrary = false; 122093 122268 isExecutable = true; 122094 122269 enableSeparateDataOutput = true; ··· 122105 122280 pname = "happy"; 122106 122281 version = "1.20.0"; 122107 122282 sha256 = "1346r2x5ravs5fqma65bzjragqbb2g6v41wz9maknwm2jf7kl79v"; 122283 + revision = "1"; 122284 + editedCabalFile = "16dy1cv942rizxp8slnnbwi5l24ggsmy38madbin9scz38idqisx"; 122108 122285 isLibrary = false; 122109 122286 isExecutable = true; 122110 122287 enableSeparateDataOutput = true; ··· 133608 133785 }: 133609 133786 mkDerivation { 133610 133787 pname = "higgledy"; 133611 - version = "0.4.1.1"; 133612 - sha256 = "1aqln8y055ysnzw3sqfdi6rm63a4a8c3n3f4fgv1rqmx76vsvsaz"; 133788 + version = "0.4.2.0"; 133789 + sha256 = "01hl63wq6rb2wgml850wawq07sn9vl8d2hv1jc3m366dxdqqhy8j"; 133613 133790 setupHaskellDepends = [ base Cabal cabal-doctest ]; 133614 133791 libraryHaskellDepends = [ 133615 133792 barbies base generic-lens generic-lens-core named QuickCheck ··· 135843 136020 pname = "hlrdb"; 135844 136021 version = "0.3.2.0"; 135845 136022 sha256 = "1k4dsd4h3fv1ag753gwxvirfrj53ra4ik948pyacq31c16mz1l2p"; 135846 - revision = "2"; 135847 - editedCabalFile = "15z6f2qqis3qi1cfq43hhcqgcsinx58ha3bghh0pfybqysvbjmmd"; 136023 + revision = "3"; 136024 + editedCabalFile = "1r8dmsfbsm4lhak2hskid03bad2fvnb71v779grzf5hy6y46jc42"; 135848 136025 libraryHaskellDepends = [ 135849 136026 base base64-bytestring bytestring cryptonite hashable hedis 135850 136027 hlrdb-core memory random store time unordered-containers zstd ··· 135862 136039 pname = "hlrdb-core"; 135863 136040 version = "0.1.6.2"; 135864 136041 sha256 = "19pnwjlcg504kpvxq8r1hwb533adi2d919vgb1lr25c9bdyxc32n"; 136042 + revision = "1"; 136043 + editedCabalFile = "0d6bwxk390f00qsmhn71sssw47f53j2wgrwwarhs8vvz6kyvncmp"; 135865 136044 libraryHaskellDepends = [ 135866 136045 base bytestring hashable hedis lens mtl profunctors random time 135867 136046 unordered-containers ··· 147800 147979 license = lib.licenses.bsd3; 147801 147980 }) {}; 147802 147981 147982 + "http-reverse-proxy_0_6_0_1" = callPackage 147983 + ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive 147984 + , conduit, conduit-extra, containers, hspec, http-client 147985 + , http-conduit, http-types, network, resourcet, streaming-commons 147986 + , text, transformers, unliftio, wai, wai-logger, warp, word8 147987 + }: 147988 + mkDerivation { 147989 + pname = "http-reverse-proxy"; 147990 + version = "0.6.0.1"; 147991 + sha256 = "0a0fc9rqr1crbb1sbq3gzbkwjcfff662d4bgmy3vzspk7ky697ld"; 147992 + libraryHaskellDepends = [ 147993 + base blaze-builder bytestring case-insensitive conduit 147994 + conduit-extra containers http-client http-types network resourcet 147995 + streaming-commons text transformers unliftio wai wai-logger word8 147996 + ]; 147997 + testHaskellDepends = [ 147998 + base blaze-builder bytestring conduit conduit-extra hspec 147999 + http-conduit http-types network resourcet streaming-commons 148000 + transformers unliftio wai warp 148001 + ]; 148002 + description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; 148003 + license = lib.licenses.bsd3; 148004 + hydraPlatforms = lib.platforms.none; 148005 + }) {}; 148006 + 147803 148007 "http-rfc7807" = callPackage 147804 148008 ({ mkDerivation, aeson, base, call-stack, hspec-expectations-json 147805 148009 , http-media, http-types, HUnit, servant, servant-server, tasty ··· 155811 156015 "intricacy" = callPackage 155812 156016 ({ mkDerivation, array, base, binary, bytestring, containers 155813 156017 , cryptonite, directory, exceptions, filepath, hscurses, memory 155814 - , mtl, ncurses, network-fancy, random, safe, SDL, SDL-gfx 156018 + , mtl, ncurses, network-simple, random, safe, SDL, SDL-gfx 155815 156019 , SDL-mixer, SDL-ttf, stm, time, transformers, vector 155816 156020 }: 155817 156021 mkDerivation { 155818 156022 pname = "intricacy"; 155819 - version = "0.8.0.1"; 155820 - sha256 = "0kyhswgg8iyxvicgpf0f5rn3gk4k620crk02xd4bn797xws5bzzs"; 156023 + version = "0.8.1"; 156024 + sha256 = "0jpg3rvngsil7zii57inax3im92n1ahv6lcrb3swikahbli0d8wc"; 155821 156025 isLibrary = false; 155822 156026 isExecutable = true; 155823 156027 enableSeparateDataOutput = true; 155824 156028 executableHaskellDepends = [ 155825 156029 array base binary bytestring containers cryptonite directory 155826 - exceptions filepath hscurses memory mtl network-fancy random safe 156030 + exceptions filepath hscurses memory mtl network-simple random safe 155827 156031 SDL SDL-gfx SDL-mixer SDL-ttf stm time transformers vector 155828 156032 ]; 155829 156033 executablePkgconfigDepends = [ ncurses ]; ··· 155982 156186 testToolDepends = [ hspec-discover ]; 155983 156187 description = "Haskell98 invariant functors"; 155984 156188 license = lib.licenses.bsd2; 156189 + }) {}; 156190 + 156191 + "invariant_0_5_6" = callPackage 156192 + ({ mkDerivation, array, base, bifunctors, comonad, containers 156193 + , contravariant, ghc-prim, hspec, hspec-discover, profunctors 156194 + , QuickCheck, StateVar, stm, tagged, template-haskell 156195 + , th-abstraction, transformers, transformers-compat 156196 + , unordered-containers 156197 + }: 156198 + mkDerivation { 156199 + pname = "invariant"; 156200 + version = "0.5.6"; 156201 + sha256 = "1l73wlnmh09187w8y61qyjjycpljds9lydy16ifa08bmmbxgkzcw"; 156202 + libraryHaskellDepends = [ 156203 + array base bifunctors comonad containers contravariant ghc-prim 156204 + profunctors StateVar stm tagged template-haskell th-abstraction 156205 + transformers transformers-compat unordered-containers 156206 + ]; 156207 + testHaskellDepends = [ base hspec QuickCheck template-haskell ]; 156208 + testToolDepends = [ hspec-discover ]; 156209 + description = "Haskell98 invariant functors"; 156210 + license = lib.licenses.bsd2; 156211 + hydraPlatforms = lib.platforms.none; 155985 156212 }) {}; 155986 156213 155987 156214 "inventory" = callPackage ··· 158152 158379 }: 158153 158380 mkDerivation { 158154 158381 pname = "ixset-typed"; 158155 - version = "0.5"; 158156 - sha256 = "07n7qfi8slmrlgzvrkddr17b792phhb140q9gb5pm68kk1im4izs"; 158382 + version = "0.5.1.0"; 158383 + sha256 = "033rm2sik1qz4dmqlabjzwwqw38vj3hrwlkmhm554yvk1n3v9dq8"; 158157 158384 libraryHaskellDepends = [ 158158 158385 base containers deepseq safecopy syb template-haskell 158159 158386 ]; ··· 160914 161141 }: 160915 161142 mkDerivation { 160916 161143 pname = "jsonrpc-conduit"; 160917 - version = "0.3.8"; 160918 - sha256 = "196w8jmb8107shbrdhr17axl6x2sx088hdys2yfpqmrcsxc77z45"; 161144 + version = "0.3.9"; 161145 + sha256 = "0qj3rlh695nbs3kxix2r7h4np99q6pn7x8x86j4785d6d2gly1ik"; 160919 161146 libraryHaskellDepends = [ 160920 161147 aeson attoparsec base bytestring conduit conduit-extra mtl text 160921 161148 transformers unordered-containers ··· 161725 161952 license = lib.licenses.bsd3; 161726 161953 }) {}; 161727 161954 161955 + "kan-extensions_5_2_4" = callPackage 161956 + ({ mkDerivation, adjunctions, array, base, comonad, containers 161957 + , contravariant, distributive, free, invariant, mtl, profunctors 161958 + , semigroupoids, tagged, transformers, transformers-compat 161959 + }: 161960 + mkDerivation { 161961 + pname = "kan-extensions"; 161962 + version = "5.2.4"; 161963 + sha256 = "0qnds0vwhsqznirqalm8f4c0qsmp1awfhc4fn2rx5agl5az3zip8"; 161964 + libraryHaskellDepends = [ 161965 + adjunctions array base comonad containers contravariant 161966 + distributive free invariant mtl profunctors semigroupoids tagged 161967 + transformers transformers-compat 161968 + ]; 161969 + description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; 161970 + license = lib.licenses.bsd3; 161971 + hydraPlatforms = lib.platforms.none; 161972 + }) {}; 161973 + 161728 161974 "kangaroo" = callPackage 161729 161975 ({ mkDerivation, array, base }: 161730 161976 mkDerivation { ··· 163307 163553 pname = "keys"; 163308 163554 version = "3.12.3"; 163309 163555 sha256 = "0ik6wsff306dnbz0v3gpiajlj5b558hrk9176fzcb2fclf4447nm"; 163310 - revision = "1"; 163311 - editedCabalFile = "18fapd53nby46p5103y1m2hwpixn5p12mbyvb8va71pk4b77qlcy"; 163556 + revision = "2"; 163557 + editedCabalFile = "1sb7ii9mhx77rhviqbmdc5r6wlimkmadxi1pyk7k3imdqcdzgjlp"; 163312 163558 libraryHaskellDepends = [ 163313 163559 array base comonad containers free hashable semigroupoids 163314 163560 semigroups tagged transformers transformers-compat ··· 163933 164179 }: 163934 164180 mkDerivation { 163935 164181 pname = "koji-tool"; 163936 - version = "0.8.3"; 163937 - sha256 = "17xd1755yr2acf6brwbxn3yzbndv982s7jgxbj9dmd7my6v1d9i2"; 164182 + version = "0.8.5"; 164183 + sha256 = "1zkvw8fibav9n8x7dvw7mcns6zc00il5ajcwsvb1ycbb3pqj82ps"; 163938 164184 isLibrary = false; 163939 164185 isExecutable = true; 163940 164186 executableHaskellDepends = [ ··· 168722 168968 license = lib.licenses.mit; 168723 168969 }) {}; 168724 168970 168725 - "lens-aeson_1_2" = callPackage 168971 + "lens-aeson_1_2_1" = callPackage 168726 168972 ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 168727 168973 , scientific, text, text-short, unordered-containers, vector 168728 168974 }: 168729 168975 mkDerivation { 168730 168976 pname = "lens-aeson"; 168731 - version = "1.2"; 168732 - sha256 = "1hi0y3bn3xny7w2cjzxn9j5hmfg6l7kbsji5skbj32zfrqlhkkwi"; 168977 + version = "1.2.1"; 168978 + sha256 = "08x0vbkay8d6s24fzy2iria0hl9pmq891cnzm6zl0j9j53z9jw9l"; 168733 168979 libraryHaskellDepends = [ 168734 168980 aeson attoparsec base bytestring lens scientific text text-short 168735 168981 unordered-containers vector ··· 169174 169420 pname = "lentil"; 169175 169421 version = "1.5.4.0"; 169176 169422 sha256 = "0xfsf7g9r2w30qkp4829w77hsja562jvx4n9i880j9qngi2ms2h1"; 169423 + revision = "1"; 169424 + editedCabalFile = "15dr5jlb6b18j2brxji4k1g12zwvhpjq96nqb27pjkznm59c4x19"; 169177 169425 isLibrary = false; 169178 169426 isExecutable = true; 169179 169427 executableHaskellDepends = [ ··· 170820 171068 pname = "lift-generics"; 170821 171069 version = "0.2.1"; 170822 171070 sha256 = "1qkzq8hcb6j15cslv577bmhjcxmljzsrryysdgd7r99kr3q445b4"; 170823 - revision = "1"; 170824 - editedCabalFile = "0i0qxm2fi34bnpnwk5k61yjx72pc9j8jhbx44xk176pw7y2pinxd"; 171071 + revision = "2"; 171072 + editedCabalFile = "1q6lviqfvyis3ss9w6r6j5d35is50r2favj9lkdagcmczw9c4706"; 170825 171073 libraryHaskellDepends = [ 170826 171074 base generic-deriving ghc-prim template-haskell th-compat 170827 171075 ]; ··· 171825 172073 license = lib.licenses.publicDomain; 171826 172074 }) {}; 171827 172075 172076 + "linkcheck" = callPackage 172077 + ({ mkDerivation, aeson, base, bytestring, conduit, containers 172078 + , http-client, http-client-tls, http-types, lrucache, monad-logger 172079 + , mtl, network-uri, optparse-applicative, path, path-io, retry, stm 172080 + , tagsoup, text, unliftio 172081 + }: 172082 + mkDerivation { 172083 + pname = "linkcheck"; 172084 + version = "0.1.0.0"; 172085 + sha256 = "18wb2naxqhvnvyjjmgbsa0ky98ikgrdhrcra9bxy1vfizhrpwhfn"; 172086 + isLibrary = true; 172087 + isExecutable = true; 172088 + libraryHaskellDepends = [ 172089 + aeson base bytestring conduit containers http-client 172090 + http-client-tls http-types lrucache monad-logger mtl network-uri 172091 + optparse-applicative path path-io retry stm tagsoup text unliftio 172092 + ]; 172093 + executableHaskellDepends = [ base ]; 172094 + testHaskellDepends = [ base ]; 172095 + description = "Check for broken links in CI"; 172096 + license = lib.licenses.mit; 172097 + }) {}; 172098 + 171828 172099 "linkchk" = callPackage 171829 172100 ({ mkDerivation, base, gtk, haskell98, popenhs, regex-compat, unix 171830 172101 }: ··· 172780 173051 license = lib.licenses.mit; 172781 173052 }) {}; 172782 173053 173054 + "list-t_1_0_5_2" = callPackage 173055 + ({ mkDerivation, base, base-prelude, foldl, HTF, logict, mmorph 173056 + , monad-control, mtl, mtl-prelude, semigroups, transformers 173057 + , transformers-base 173058 + }: 173059 + mkDerivation { 173060 + pname = "list-t"; 173061 + version = "1.0.5.2"; 173062 + sha256 = "0478iigfrkinhkjyq9zc4xvrbzcfvq46s6k0bj4a2sy8j41jzgww"; 173063 + libraryHaskellDepends = [ 173064 + base foldl logict mmorph monad-control mtl semigroups transformers 173065 + transformers-base 173066 + ]; 173067 + testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; 173068 + description = "ListT done right"; 173069 + license = lib.licenses.mit; 173070 + hydraPlatforms = lib.platforms.none; 173071 + }) {}; 173072 + 172783 173073 "list-t-attoparsec" = callPackage 172784 173074 ({ mkDerivation, attoparsec, base-prelude, either, hspec, list-t 172785 173075 , list-t-text, text, transformers ··· 172887 173177 testHaskellDepends = [ base doctest ]; 172888 173178 description = "List monad transformer"; 172889 173179 license = lib.licenses.bsd3; 173180 + maintainers = with lib.maintainers; [ Gabriel439 ]; 173181 + }) {}; 173182 + 173183 + "list-transformer_1_0_8" = callPackage 173184 + ({ mkDerivation, base, doctest, mtl }: 173185 + mkDerivation { 173186 + pname = "list-transformer"; 173187 + version = "1.0.8"; 173188 + sha256 = "03rqs8hrddlbq4v3pzh42z7lh11z3klpgbmyp85i926shpm5qibh"; 173189 + libraryHaskellDepends = [ base mtl ]; 173190 + testHaskellDepends = [ base doctest ]; 173191 + description = "List monad transformer"; 173192 + license = lib.licenses.bsd3; 173193 + hydraPlatforms = lib.platforms.none; 172890 173194 maintainers = with lib.maintainers; [ Gabriel439 ]; 172891 173195 }) {}; 172892 173196 ··· 174816 175120 license = lib.licenses.bsd3; 174817 175121 }) {}; 174818 175122 175123 + "logict_0_8_0_0" = callPackage 175124 + ({ mkDerivation, async, base, mtl, tasty, tasty-hunit }: 175125 + mkDerivation { 175126 + pname = "logict"; 175127 + version = "0.8.0.0"; 175128 + sha256 = "0mpv50ifb3x9vfmgi1p9piwcgz8d19x0wdj789wxyhxwjpr6v4py"; 175129 + isLibrary = true; 175130 + isExecutable = true; 175131 + libraryHaskellDepends = [ base mtl ]; 175132 + testHaskellDepends = [ async base mtl tasty tasty-hunit ]; 175133 + description = "A backtracking logic-programming monad"; 175134 + license = lib.licenses.bsd3; 175135 + hydraPlatforms = lib.platforms.none; 175136 + }) {}; 175137 + 174819 175138 "logict-sequence" = callPackage 174820 175139 ({ mkDerivation, base, logict, mtl, sequence, type-aligned }: 174821 175140 mkDerivation { ··· 175312 175631 }) {}; 175313 175632 175314 175633 "looper" = callPackage 175315 - ({ mkDerivation, aeson, base, hspec, optparse-applicative, text 175634 + ({ mkDerivation, aeson, autodocodec, autodocodec-yaml, base 175635 + , envparse, optparse-applicative, sydtest, sydtest-discover, text 175316 175636 , time, unliftio 175317 175637 }: 175318 175638 mkDerivation { 175319 175639 pname = "looper"; 175320 - version = "0.0.0.2"; 175321 - sha256 = "0w4aancb0lbfgmk2drnbc1w6bxlbdkhg0zy1qj7xp3kvgc76vqli"; 175640 + version = "0.2.0.1"; 175641 + sha256 = "0nqkqbna1fivf0ziilqrlg38hxpkhll4yv42p8r5g87d7r33jmc2"; 175322 175642 libraryHaskellDepends = [ 175323 - aeson base optparse-applicative text time unliftio 175643 + aeson autodocodec base envparse optparse-applicative text time 175644 + unliftio 175324 175645 ]; 175325 175646 testHaskellDepends = [ 175326 - aeson base hspec optparse-applicative text time unliftio 175647 + autodocodec-yaml base optparse-applicative sydtest unliftio 175327 175648 ]; 175328 - license = lib.licenses.bsd3; 175649 + testToolDepends = [ sydtest-discover ]; 175650 + license = lib.licenses.mit; 175329 175651 hydraPlatforms = lib.platforms.none; 175330 175652 broken = true; 175331 175653 }) {}; ··· 176076 176398 pname = "lucid"; 176077 176399 version = "2.11.0"; 176078 176400 sha256 = "1m1f13vxn3pwc7wvhx0czzxlx2ws8lzdgxlxd1707cx79jyib5sl"; 176079 - revision = "1"; 176080 - editedCabalFile = "0ai0rxiyni9cxzad3ix50vkxqqmgxfd1vpqzfrmmll1swxpicd8q"; 176401 + revision = "2"; 176402 + editedCabalFile = "01vqjqpng0wkf8955vrdwd499y9h2mlh4jqbnmzp5598iswgq15c"; 176081 176403 libraryHaskellDepends = [ 176082 176404 base blaze-builder bytestring containers hashable mmorph mtl text 176083 176405 transformers unordered-containers ··· 176090 176412 ]; 176091 176413 description = "Clear to write, read and edit DSL for HTML"; 176092 176414 license = lib.licenses.bsd3; 176415 + }) {}; 176416 + 176417 + "lucid_2_11_1" = callPackage 176418 + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring 176419 + , containers, criterion, deepseq, hashable, hspec, HUnit, mmorph 176420 + , mtl, parsec, text, transformers 176421 + }: 176422 + mkDerivation { 176423 + pname = "lucid"; 176424 + version = "2.11.1"; 176425 + sha256 = "13krwrvv0w24rnl7pc7qhv18c6030fkxpx7sxkffdm8sr9173xfw"; 176426 + libraryHaskellDepends = [ 176427 + base blaze-builder bytestring containers hashable mmorph mtl text 176428 + transformers 176429 + ]; 176430 + testHaskellDepends = [ 176431 + base bifunctors hspec HUnit mtl parsec text 176432 + ]; 176433 + benchmarkHaskellDepends = [ 176434 + base blaze-builder bytestring criterion deepseq text transformers 176435 + ]; 176436 + description = "Clear to write, read and edit DSL for HTML"; 176437 + license = lib.licenses.bsd3; 176438 + hydraPlatforms = lib.platforms.none; 176093 176439 }) {}; 176094 176440 176095 176441 "lucid-alpine" = callPackage ··· 176216 176562 ]; 176217 176563 description = "DSL for SVG using lucid for HTML"; 176218 176564 license = lib.licenses.bsd3; 176565 + }) {}; 176566 + 176567 + "lucid2" = callPackage 176568 + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring 176569 + , containers, hspec, HUnit, mtl, parsec, text, transformers 176570 + }: 176571 + mkDerivation { 176572 + pname = "lucid2"; 176573 + version = "0.0.20220509"; 176574 + sha256 = "0d38gic3xjqj5in97sbfzjb696011bl47sshzh0377md5j02yc85"; 176575 + libraryHaskellDepends = [ 176576 + base blaze-builder bytestring containers mtl text transformers 176577 + ]; 176578 + testHaskellDepends = [ 176579 + base bifunctors hspec HUnit mtl parsec text 176580 + ]; 176581 + description = "Clear to write, read and edit DSL for HTML"; 176582 + license = lib.licenses.bsd3; 176583 + hydraPlatforms = lib.platforms.none; 176584 + broken = true; 176219 176585 }) {}; 176220 176586 176221 176587 "lucienne" = callPackage ··· 179778 180144 }: 179779 180145 mkDerivation { 179780 180146 pname = "matterhorn"; 179781 - version = "50200.15.0"; 179782 - sha256 = "0hn3d1fifzls714a0hsvhbf7wxhg0q60igpr2jcd76yqnzax1mda"; 180147 + version = "50200.16.0"; 180148 + sha256 = "1hjb408dznls8r6k89jv0zvliv259xj2gzl03f4ypwacihmr3qiw"; 179783 180149 isLibrary = true; 179784 180150 isExecutable = true; 179785 180151 enableSeparateDataOutput = true; ··· 179814 180180 }: 179815 180181 mkDerivation { 179816 180182 pname = "mattermost-api"; 179817 - version = "50200.11.0"; 179818 - sha256 = "0knrc00377wx8j4ly8d2nxqswybp3782j7qig6mrzlww6nbd68j7"; 180183 + version = "50200.12.0"; 180184 + sha256 = "12mmpyw1lcmyxh73rgzckww7dd6lxc6m81h2xa9rpd8mxwx0n17n"; 179819 180185 isLibrary = true; 179820 180186 isExecutable = true; 179821 180187 libraryHaskellDepends = [ ··· 179839 180205 }: 179840 180206 mkDerivation { 179841 180207 pname = "mattermost-api-qc"; 179842 - version = "50200.11.0"; 179843 - sha256 = "0crz0nc8qbsjyq3fllbj50d01axgwfas76bmr6xnz83sic2s1yw1"; 180208 + version = "50200.12.0"; 180209 + sha256 = "00fgr80xanrni835n7wgazq6900f040cwnhbsz99936azx125nx4"; 179844 180210 libraryHaskellDepends = [ 179845 180211 base containers mattermost-api QuickCheck text time 179846 180212 ]; ··· 180746 181112 pname = "megaparsec"; 180747 181113 version = "9.2.0"; 180748 181114 sha256 = "1whjn3n14h2q3ja1v7zllzmj28ai7lqwfbif22c08rl00wpwmwhd"; 180749 - revision = "1"; 180750 - editedCabalFile = "1jv3j59fvykvplj3c653c9rk5wiwg6x0jnljhi2vknzxxmxkjj02"; 181115 + revision = "2"; 181116 + editedCabalFile = "1f82q0v5iaqnl6f3pjgrwin2lg7w5zykgn6vpds08pjgwfg39va1"; 180751 181117 libraryHaskellDepends = [ 180752 181118 base bytestring case-insensitive containers deepseq mtl 180753 181119 parser-combinators scientific text transformers ··· 180759 181125 license = lib.licenses.bsd2; 180760 181126 }) {}; 180761 181127 181128 + "megaparsec_9_2_1" = callPackage 181129 + ({ mkDerivation, base, bytestring, case-insensitive, containers 181130 + , criterion, deepseq, mtl, parser-combinators, scientific, text 181131 + , transformers, weigh 181132 + }: 181133 + mkDerivation { 181134 + pname = "megaparsec"; 181135 + version = "9.2.1"; 181136 + sha256 = "1zz92mkwyhvvh8c8nc7cfz8cw2g9374na11k2gb6dbm4pabq69vb"; 181137 + libraryHaskellDepends = [ 181138 + base bytestring case-insensitive containers deepseq mtl 181139 + parser-combinators scientific text transformers 181140 + ]; 181141 + benchmarkHaskellDepends = [ 181142 + base bytestring containers criterion deepseq text weigh 181143 + ]; 181144 + description = "Monadic parser combinators"; 181145 + license = lib.licenses.bsd2; 181146 + hydraPlatforms = lib.platforms.none; 181147 + }) {}; 181148 + 180762 181149 "megaparsec-tests" = callPackage 180763 181150 ({ mkDerivation, base, bytestring, case-insensitive, containers 180764 181151 , hspec, hspec-discover, hspec-expectations, hspec-megaparsec ··· 180783 181170 license = lib.licenses.bsd2; 180784 181171 }) {}; 180785 181172 181173 + "megaparsec-tests_9_2_1" = callPackage 181174 + ({ mkDerivation, base, bytestring, case-insensitive, containers 181175 + , hspec, hspec-discover, hspec-expectations, hspec-megaparsec 181176 + , megaparsec, mtl, parser-combinators, QuickCheck, scientific, text 181177 + , transformers 181178 + }: 181179 + mkDerivation { 181180 + pname = "megaparsec-tests"; 181181 + version = "9.2.1"; 181182 + sha256 = "1w9maxfld3by01kl8z0a4v64y2vm5rmsdss6n57mr3j43ng2isr9"; 181183 + libraryHaskellDepends = [ 181184 + base bytestring containers hspec hspec-expectations 181185 + hspec-megaparsec megaparsec mtl QuickCheck text transformers 181186 + ]; 181187 + testHaskellDepends = [ 181188 + base bytestring case-insensitive containers hspec 181189 + hspec-expectations hspec-megaparsec megaparsec mtl 181190 + parser-combinators QuickCheck scientific text transformers 181191 + ]; 181192 + testToolDepends = [ hspec-discover ]; 181193 + description = "Test utilities and the test suite of Megaparsec"; 181194 + license = lib.licenses.bsd2; 181195 + hydraPlatforms = lib.platforms.none; 181196 + }) {}; 181197 + 180786 181198 "meldable-heap" = callPackage 180787 181199 ({ mkDerivation, base }: 180788 181200 mkDerivation { ··· 182021 182433 pname = "mfsolve"; 182022 182434 version = "0.3.2.1"; 182023 182435 sha256 = "190dszcnvy5j5bs3n0kya8a9nq0vdhrpgpndjpsxw7x70y3hc9d2"; 182436 + revision = "1"; 182437 + editedCabalFile = "0938ji6l1bx787lxcw6rzjwskm9vxm615cvx7hxpbwp0hbxrj5sa"; 182024 182438 libraryHaskellDepends = [ 182025 182439 base hashable mtl mtl-compat unordered-containers 182026 182440 ]; ··· 184192 184606 pname = "mmorph"; 184193 184607 version = "1.2.0"; 184194 184608 sha256 = "1022d8mm523dihkf85mqsqxpm9rnyicmv91c8rm4csv7xdc80cv1"; 184195 - revision = "1"; 184196 - editedCabalFile = "13j6znh33pnnk8yfxnndqiiwal1w6rs2jigs7fgpa26883ff2788"; 184609 + revision = "2"; 184610 + editedCabalFile = "00jrrmns4w77l06kcpr7798wcbc8abmhlivy12fxajs3x1ycb3hn"; 184197 184611 libraryHaskellDepends = [ 184198 184612 base mtl transformers transformers-compat 184199 184613 ]; ··· 185835 186249 pname = "monad-par"; 185836 186250 version = "0.3.5"; 185837 186251 sha256 = "1a8m99g9x1ivch4vhksk7fdzygbil3d33w8gdqngxbmwdikdafl2"; 185838 - revision = "1"; 185839 - editedCabalFile = "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"; 186252 + revision = "2"; 186253 + editedCabalFile = "1q4npp0vrsjpxk7n7rcf3lgqg1sf2qx628ciiw48al9y9xlznsaz"; 185840 186254 libraryHaskellDepends = [ 185841 186255 abstract-deque abstract-par array base containers deepseq 185842 186256 monad-par-extras mtl mwc-random parallel ··· 187037 187451 pname = "monoidal-containers"; 187038 187452 version = "0.6.2.0"; 187039 187453 sha256 = "0rnhlm77zrql42z3zsn3ag279q0vrz2idygc0x4p50q3780670p3"; 187454 + revision = "1"; 187455 + editedCabalFile = "07l42gkixdpamqqzdwqfcd62yga5cvhbxz5l0jpgs8kgf6prna4p"; 187040 187456 libraryHaskellDepends = [ 187041 187457 aeson base containers deepseq hashable lens newtype semialign these 187042 187458 unordered-containers witherable ··· 189078 189494 hydraPlatforms = lib.platforms.none; 189079 189495 }) {}; 189080 189496 189081 - "mtl_2_2_2" = callPackage 189497 + "mtl_2_3" = callPackage 189082 189498 ({ mkDerivation, base, transformers }: 189083 189499 mkDerivation { 189084 189500 pname = "mtl"; 189085 - version = "2.2.2"; 189086 - sha256 = "1xmy5741h8cyy0d91ahvqdz2hykkk20l8br7lg1rccnkis5g80w8"; 189501 + version = "2.3"; 189502 + sha256 = "0krx6bl7xd5n2v9775igv4p8723w6ilshmpljryzfsv4gp74dsy7"; 189087 189503 libraryHaskellDepends = [ base transformers ]; 189088 - description = "Monad classes, using functional dependencies"; 189504 + description = "Monad classes for transformers, using functional dependencies"; 189089 189505 license = lib.licenses.bsd3; 189090 189506 hydraPlatforms = lib.platforms.none; 189091 189507 }) {}; ··· 195784 196200 }: 195785 196201 mkDerivation { 195786 196202 pname = "niv"; 195787 - version = "0.2.20"; 195788 - sha256 = "1bspaz1a1vy50336d264b6wv7wrfb4a758ghcv6j437lhinjjbf9"; 196203 + version = "0.2.21"; 196204 + sha256 = "1i4n706nrrd0mk34wrjgg597gsd95xslg8aqrhp3ijh4j4h2b8n2"; 195789 196205 isLibrary = true; 195790 196206 isExecutable = true; 195791 196207 enableSeparateDataOutput = true; ··· 201282 201698 }: 201283 201699 mkDerivation { 201284 201700 pname = "opentracing"; 201285 - version = "0.2.1"; 201286 - sha256 = "0p2y996cl5hfw85kdr0majymxccv2d1ka15wbyc2qxgskz3dy9cq"; 201701 + version = "0.2.2"; 201702 + sha256 = "0d2zxq6y943kwpis9nbbj7cn8amy315bxy56mjj54bkg3jm43jn7"; 201287 201703 libraryHaskellDepends = [ 201288 201704 aeson async base base64-bytestring bytestring case-insensitive 201289 201705 clock containers http-types iproute lens mtl mwc-random network ··· 201298 201714 ({ mkDerivation, base, http-client, lens, mtl, opentracing, text }: 201299 201715 mkDerivation { 201300 201716 pname = "opentracing-http-client"; 201301 - version = "0.2.0"; 201302 - sha256 = "19mwl69ggyd7zf1dvx5yjzsq5mlw5l94h989hgwc4ryvp8zqwv4n"; 201717 + version = "0.2.2"; 201718 + sha256 = "03adv17m82imw7bq618zm6x79gq6avvhcz3i0jak4157f3lwdq6b"; 201303 201719 libraryHaskellDepends = [ 201304 201720 base http-client lens mtl opentracing text 201305 201721 ]; ··· 201315 201731 }: 201316 201732 mkDerivation { 201317 201733 pname = "opentracing-jaeger"; 201318 - version = "0.2.0"; 201319 - sha256 = "0ffcbmg8qzvyhm7vzk2zkk5czli4ndrp18cc328i7600gzv1gr81"; 201734 + version = "0.2.2"; 201735 + sha256 = "1wy8n4ci3hs2glwahhgzzl6g4dw370ay2dg8bf1af8a27sl3dhjn"; 201320 201736 libraryHaskellDepends = [ 201321 201737 base bytestring exceptions hashable http-client http-types lens mtl 201322 201738 network opentracing pinch QuickCheck safe-exceptions text ··· 201330 201746 ({ mkDerivation, base, lens, opentracing, text, wai }: 201331 201747 mkDerivation { 201332 201748 pname = "opentracing-wai"; 201333 - version = "0.2.0"; 201334 - sha256 = "178xxgg0rw94gld5jlvix6czsvg66q60h06nj2b1x7rnd0pjryc6"; 201749 + version = "0.2.2"; 201750 + sha256 = "1yfbh7pp2rp16xm5bqij9f6m0cm23zrd0jsndkngl1mxjkv6l24i"; 201335 201751 libraryHaskellDepends = [ base lens opentracing text wai ]; 201336 201752 description = "Middleware adding OpenTracing tracing for WAI applications"; 201337 201753 license = lib.licenses.asl20; ··· 201341 201757 ({ mkDerivation, aeson, base, opentracing, text }: 201342 201758 mkDerivation { 201343 201759 pname = "opentracing-zipkin-common"; 201344 - version = "0.2.0"; 201345 - sha256 = "0yngiz8135v844wcx28izwhx18iz06di3dl8bm5xqh47ir43wdw6"; 201760 + version = "0.2.2"; 201761 + sha256 = "1vridakdz07yfiyr92byd8kab2zc68izpv1j8dh4a0xnks8910wk"; 201346 201762 libraryHaskellDepends = [ aeson base opentracing text ]; 201347 201763 description = "Zipkin OpenTracing Backend Commons"; 201348 201764 license = lib.licenses.asl20; ··· 201356 201772 }: 201357 201773 mkDerivation { 201358 201774 pname = "opentracing-zipkin-v1"; 201359 - version = "0.2.0"; 201360 - sha256 = "15n9m7affy81fr80zw7l54lch7gr6bvhcqpga797x7rvdxqqjv9j"; 201775 + version = "0.2.2"; 201776 + sha256 = "0z263yksbcgyfzsb6fj6id3bdsbhb0b92bfjm0myclj8f703hxbj"; 201361 201777 libraryHaskellDepends = [ 201362 201778 base bytestring exceptions hashable http-client http-types iproute 201363 201779 lens opentracing opentracing-zipkin-common pinch QuickCheck text ··· 201374 201790 }: 201375 201791 mkDerivation { 201376 201792 pname = "opentracing-zipkin-v2"; 201377 - version = "0.2.0"; 201378 - sha256 = "1ykssjhknfyiw02abjpz38zmlw8l03zb8c3y3ic5njmsg23nxfzb"; 201793 + version = "0.2.2"; 201794 + sha256 = "1hqbr4ifabyg6sr40jw9hqi2xq00wqy8srw9q6hj5qxqnvl39110"; 201379 201795 libraryHaskellDepends = [ 201380 201796 aeson base base64-bytestring bytestring exceptions http-client 201381 201797 http-types lens opentracing opentracing-zipkin-common text ··· 205788 206204 broken = true; 205789 206205 }) {}; 205790 206206 205791 - "parsec_3_1_15_0" = callPackage 206207 + "parsec_3_1_15_1" = callPackage 205792 206208 ({ mkDerivation, base, bytestring, mtl, tasty, tasty-hunit, text }: 205793 206209 mkDerivation { 205794 206210 pname = "parsec"; 205795 - version = "3.1.15.0"; 205796 - sha256 = "1v8zs8zv1rk16lag2yqaxfwanjpgnh4gxw1vd70py0n04d20z0lq"; 206211 + version = "3.1.15.1"; 206212 + sha256 = "1pcqgxzhzlyaxrkgdixsl0jh7jfcg66kwqqf6va0am8q64ar1r5b"; 205797 206213 libraryHaskellDepends = [ base bytestring mtl text ]; 205798 206214 testHaskellDepends = [ base mtl tasty tasty-hunit ]; 205799 206215 description = "Monadic parser combinators"; ··· 206171 206587 license = lib.licenses.bsd3; 206172 206588 }) {}; 206173 206589 206590 + "parsers_0_12_11" = callPackage 206591 + ({ mkDerivation, attoparsec, base, base-orphans, binary, bytestring 206592 + , charset, containers, mtl, parsec, QuickCheck 206593 + , quickcheck-instances, scientific, text, transformers 206594 + , unordered-containers 206595 + }: 206596 + mkDerivation { 206597 + pname = "parsers"; 206598 + version = "0.12.11"; 206599 + sha256 = "068k7fm0s13z0jkkffc149cqcxnzpk1m066lp4ccdfcb41km1zwi"; 206600 + libraryHaskellDepends = [ 206601 + attoparsec base base-orphans binary charset containers mtl parsec 206602 + scientific text transformers unordered-containers 206603 + ]; 206604 + testHaskellDepends = [ 206605 + attoparsec base bytestring parsec QuickCheck quickcheck-instances 206606 + ]; 206607 + description = "Parsing combinators"; 206608 + license = lib.licenses.bsd3; 206609 + hydraPlatforms = lib.platforms.none; 206610 + }) {}; 206611 + 206174 206612 "parsers-megaparsec" = callPackage 206175 206613 ({ mkDerivation, base, fail, megaparsec, mtl, parsers, semigroups 206176 206614 , text, transformers ··· 207201 207639 pname = "pattern-arrows"; 207202 207640 version = "0.0.2"; 207203 207641 sha256 = "13q7bj19hd60rnjfc05wxlyck8llxy11z3mns8kxg197wxrdkhkg"; 207642 + revision = "1"; 207643 + editedCabalFile = "0vngc3mlyj52fl6cdrbwngpcyzp0gahq2h1sy1ysga62mv76wpc9"; 207204 207644 libraryHaskellDepends = [ base mtl ]; 207205 207645 description = "Arrows for Pretty Printing"; 207206 207646 license = lib.licenses.mit; ··· 211393 211833 }: 211394 211834 mkDerivation { 211395 211835 pname = "pinboard"; 211396 - version = "0.10.2.0"; 211397 - sha256 = "12hwfgqkn7sym9hig0b0afnzf0an6wcwdw9bc166y3539r3v13ck"; 211836 + version = "0.10.3.0"; 211837 + sha256 = "0j0isf2539b3fj393766wlrpgdpi39cqjqzw5jxihn7b67cvblyp"; 211398 211838 libraryHaskellDepends = [ 211399 211839 aeson base bytestring containers http-client http-client-tls 211400 211840 http-types monad-logger mtl network profunctors random text time ··· 214118 214558 license = lib.licenses.bsd3; 214119 214559 }) {}; 214120 214560 214561 + "pointed_5_0_4" = callPackage 214562 + ({ mkDerivation, base, comonad, containers, data-default-class 214563 + , hashable, kan-extensions, semigroupoids, semigroups, stm, tagged 214564 + , transformers, transformers-compat, unordered-containers 214565 + }: 214566 + mkDerivation { 214567 + pname = "pointed"; 214568 + version = "5.0.4"; 214569 + sha256 = "1mv06x2hscs220w4acm5jwg96vi4faky6ir9hnljfry3n2r2xix3"; 214570 + libraryHaskellDepends = [ 214571 + base comonad containers data-default-class hashable kan-extensions 214572 + semigroupoids semigroups stm tagged transformers 214573 + transformers-compat unordered-containers 214574 + ]; 214575 + description = "Pointed and copointed data"; 214576 + license = lib.licenses.bsd3; 214577 + hydraPlatforms = lib.platforms.none; 214578 + }) {}; 214579 + 214121 214580 "pointedalternative" = callPackage 214122 214581 ({ mkDerivation, base, mtl, semigroups, transformers }: 214123 214582 mkDerivation { ··· 214591 215050 ({ mkDerivation, base, requirements }: 214592 215051 mkDerivation { 214593 215052 pname = "poly-rec"; 214594 - version = "0.6.0.0"; 214595 - sha256 = "1csi81i0j3hk2gsc3c0rx939i67b0mj2pi064giw20yspqqjrp27"; 215053 + version = "0.7.0.0"; 215054 + sha256 = "0ayaz87l2rgpm4ddc7bidss042xhfcwa3sk7685ypssqvp02k5r0"; 214596 215055 libraryHaskellDepends = [ base requirements ]; 214597 215056 description = "Polykinded extensible records"; 214598 215057 license = lib.licenses.gpl3Only; ··· 215857 216316 }: 215858 216317 mkDerivation { 215859 216318 pname = "popkey"; 215860 - version = "0.1.0.1"; 215861 - sha256 = "1nlbd54q7npxm9hk4f289md6rch0sqnl236iimwsrwllpq6rbxbz"; 215862 - revision = "2"; 215863 - editedCabalFile = "1wpbwyya9fcdiyqs6lrbcxw7d64vn12kc7n63h2wjxrizjhfs6n6"; 216319 + version = "0.1.0.2"; 216320 + sha256 = "0ibk4qwcizsqvyvb8lgad5c0szgw7571bi2c54b5r3rrm7vzpx05"; 215864 216321 libraryHaskellDepends = [ 215865 216322 base bitvec bytestring containers hw-bits hw-prim hw-rankselect 215866 216323 hw-rankselect-base store text vector ··· 219092 219549 }: 219093 219550 mkDerivation { 219094 219551 pname = "prettyprinter-combinators"; 219095 - version = "0.1.0.1"; 219096 - sha256 = "0plnan8dvxl1y9h5vazszhdrf47862jqbhyx1ibldak19bibp367"; 219552 + version = "0.1.1"; 219553 + sha256 = "1m6338w6cd7fsib00zs8dk16b4mxfa1vswg5bmkzafas1db6qbcg"; 219097 219554 libraryHaskellDepends = [ 219098 219555 base bimap bytestring containers dlist pretty-show prettyprinter 219099 219556 syb template-haskell text unordered-containers vector ··· 225792 226249 ({ mkDerivation, base, mtl, template-haskell, th-compat }: 225793 226250 mkDerivation { 225794 226251 pname = "quotet"; 225795 - version = "0.0.1.0"; 225796 - sha256 = "1ajxvhh2zl99ddvmvicsjq775l0k3d8lh433v1z6z6i7zra5hg4g"; 226252 + version = "0.0.1.1"; 226253 + sha256 = "16fwbf9q2ivpi3j7y26lsbqvwwk7vidjn6q9iz4x6sq8adhy45rz"; 225797 226254 libraryHaskellDepends = [ base mtl template-haskell th-compat ]; 225798 226255 description = "Monad transformer for Quote from template-haskell"; 225799 226256 license = lib.licenses.cc0; ··· 226475 226932 license = lib.licenses.bsd3; 226476 226933 }) {}; 226477 226934 226935 + "random_1_2_1_1" = callPackage 226936 + ({ mkDerivation, base, bytestring, containers, deepseq, doctest 226937 + , mtl, primitive, rdtsc, smallcheck, split, splitmix, stm, tasty 226938 + , tasty-bench, tasty-hunit, tasty-inspection-testing 226939 + , tasty-smallcheck, time, transformers 226940 + }: 226941 + mkDerivation { 226942 + pname = "random"; 226943 + version = "1.2.1.1"; 226944 + sha256 = "0xlv1k4sj87akwvj54kq4nrfkzi6qcz1941bf78pnkbaxpvp44iy"; 226945 + libraryHaskellDepends = [ base bytestring deepseq mtl splitmix ]; 226946 + testHaskellDepends = [ 226947 + base bytestring containers doctest smallcheck stm tasty tasty-hunit 226948 + tasty-inspection-testing tasty-smallcheck transformers 226949 + ]; 226950 + benchmarkHaskellDepends = [ 226951 + base mtl primitive rdtsc split splitmix tasty-bench time 226952 + ]; 226953 + description = "Pseudo-random number generation"; 226954 + license = lib.licenses.bsd3; 226955 + hydraPlatforms = lib.platforms.none; 226956 + }) {}; 226957 + 226478 226958 "random-access-file" = callPackage 226479 226959 ({ mkDerivation, base, bytestring, concurrent-extra, containers 226480 226960 , criterion, directory, lrucaching, mwc-random, random, stm, unix ··· 227437 227917 broken = true; 227438 227918 }) {}; 227439 227919 227440 - "rattletrap_11_2_6" = callPackage 227920 + "rattletrap_11_2_7" = callPackage 227441 227921 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 227442 227922 , containers, filepath, http-client, http-client-tls, text 227443 227923 }: 227444 227924 mkDerivation { 227445 227925 pname = "rattletrap"; 227446 - version = "11.2.6"; 227447 - sha256 = "1y8g39vjnn3lywhg389ql0hqrzpgcj0j76wzhrzsh7ymj87vvirk"; 227926 + version = "11.2.7"; 227927 + sha256 = "19vgqkyxvv9y3yyb42p075nmdm7338f9ln6g0d7sgy9w9zd2vy0d"; 227448 227928 isLibrary = true; 227449 227929 isExecutable = true; 227450 227930 libraryHaskellDepends = [ ··· 233253 233733 ({ mkDerivation, base }: 233254 233734 mkDerivation { 233255 233735 pname = "requirements"; 233256 - version = "0.6.0.0"; 233257 - sha256 = "1s0s3p0dy07222ks83w3spfw9df33q5lggqv3dw4m9hd5x16a6zi"; 233736 + version = "0.7.0.0"; 233737 + sha256 = "030vwfasxjdgdadcf5i68i3dc436dj6gi3ql4k8qh09yf8q1mm63"; 233258 233738 libraryHaskellDepends = [ base ]; 233259 233739 description = "Abstraction to manage user defined Type Errors"; 233260 233740 license = lib.licenses.gpl3Only; ··· 233628 234108 license = lib.licenses.bsd3; 233629 234109 }) {}; 233630 234110 234111 + "resourcet_1_2_5" = callPackage 234112 + ({ mkDerivation, base, containers, exceptions, hspec, mtl 234113 + , primitive, transformers, unliftio-core 234114 + }: 234115 + mkDerivation { 234116 + pname = "resourcet"; 234117 + version = "1.2.5"; 234118 + sha256 = "0bj98srdlz2yx3nx030m0nzv6yyz1ry50v6bwdff5a6xi256jz7n"; 234119 + libraryHaskellDepends = [ 234120 + base containers exceptions mtl primitive transformers unliftio-core 234121 + ]; 234122 + testHaskellDepends = [ base exceptions hspec transformers ]; 234123 + description = "Deterministic allocation and freeing of scarce resources"; 234124 + license = lib.licenses.bsd3; 234125 + hydraPlatforms = lib.platforms.none; 234126 + }) {}; 234127 + 233631 234128 "resourcet-pool" = callPackage 233632 234129 ({ mkDerivation, base, resource-pool, resourcet }: 233633 234130 mkDerivation { ··· 236935 237432 testHaskellDepends = [ base filepath hspec ]; 236936 237433 description = "RPM package name-version-release data types"; 236937 237434 license = lib.licenses.gpl2Only; 237435 + }) {}; 237436 + 237437 + "rpm-nvr_0_1_2" = callPackage 237438 + ({ mkDerivation, base, extra, filepath, hspec }: 237439 + mkDerivation { 237440 + pname = "rpm-nvr"; 237441 + version = "0.1.2"; 237442 + sha256 = "0g4fpay6rry9mnvy6mk793my1fkvpdxx40b5hn6gjr0vr1mvg2yp"; 237443 + libraryHaskellDepends = [ base extra filepath ]; 237444 + testHaskellDepends = [ base filepath hspec ]; 237445 + description = "RPM package name-version-release data types"; 237446 + license = lib.licenses.gpl2Only; 237447 + hydraPlatforms = lib.platforms.none; 236938 237448 }) {}; 236939 237449 236940 237450 "rpmbuild-order" = callPackage ··· 242836 243346 license = lib.licenses.bsd3; 242837 243347 }) {}; 242838 243348 243349 + "seocheck" = callPackage 243350 + ({ mkDerivation, aeson, base, bytestring, case-insensitive, conduit 243351 + , containers, html-conduit, http-client, http-client-tls 243352 + , http-types, monad-logger, network-uri, optparse-applicative, path 243353 + , path-io, pretty-show, rainbow, stm, text, unliftio, validity 243354 + , xml-conduit 243355 + }: 243356 + mkDerivation { 243357 + pname = "seocheck"; 243358 + version = "0.1.0.0"; 243359 + sha256 = "065hs3y4mkl4l49qa6n7i441aax8y5zyxcpf0zpl9rz6w6llc3g7"; 243360 + isLibrary = true; 243361 + isExecutable = true; 243362 + libraryHaskellDepends = [ 243363 + aeson base bytestring case-insensitive conduit containers 243364 + html-conduit http-client http-client-tls http-types monad-logger 243365 + network-uri optparse-applicative path path-io pretty-show rainbow 243366 + stm text unliftio validity xml-conduit 243367 + ]; 243368 + executableHaskellDepends = [ base ]; 243369 + testHaskellDepends = [ base ]; 243370 + description = "Check for common SEO mistakes on CI"; 243371 + license = lib.licenses.mit; 243372 + }) {}; 243373 + 242839 243374 "seonbi" = callPackage 242840 243375 ({ mkDerivation, aeson, attoparsec, base, bytestring 242841 243376 , bytestring-trie, Cabal, case-insensitive, cases, cassava, cmark ··· 251316 251851 }: 251317 251852 mkDerivation { 251318 251853 pname = "sketch-frp-copilot"; 251319 - version = "1.0.1"; 251320 - sha256 = "0hm4bvlj7g9j6k2mc0s426s17nj4w1jpi0v052i2c7b0g7ahdxj8"; 251854 + version = "1.0.2"; 251855 + sha256 = "10r4j3plg70vawczk9fr388ljjqnjn08apv8s9am754g59fnwrd3"; 251321 251856 libraryHaskellDepends = [ 251322 251857 base containers copilot copilot-c99 copilot-language mtl 251323 251858 optparse-applicative 251324 251859 ]; 251325 - description = "FRP sketch programming with Copilot"; 251860 + description = "Sketch programming with Copilot"; 251326 251861 license = lib.licenses.bsd3; 251327 251862 hydraPlatforms = lib.platforms.none; 251328 251863 }) {}; ··· 256529 257064 license = lib.licenses.isc; 256530 257065 }) {}; 256531 257066 257067 + "splint_1_0_1_5" = callPackage 257068 + ({ mkDerivation, base, containers, ghc, hlint, stm }: 257069 + mkDerivation { 257070 + pname = "splint"; 257071 + version = "1.0.1.5"; 257072 + sha256 = "1mvkd5jcrivc57g6dw6iwss6682q7wyi6zb2k3nd3vywm1a0c8ql"; 257073 + libraryHaskellDepends = [ base containers ghc hlint stm ]; 257074 + description = "HLint as a GHC source plugin"; 257075 + license = lib.licenses.isc; 257076 + hydraPlatforms = lib.platforms.none; 257077 + }) {}; 257078 + 256532 257079 "split" = callPackage 256533 257080 ({ mkDerivation, base, QuickCheck }: 256534 257081 mkDerivation { ··· 261894 262441 license = lib.licenses.mit; 261895 262442 }) {}; 261896 262443 262444 + "strict-list_0_1_7" = callPackage 262445 + ({ mkDerivation, base, deepseq, hashable, QuickCheck 262446 + , quickcheck-instances, rerebase, semigroupoids, tasty, tasty-hunit 262447 + , tasty-quickcheck 262448 + }: 262449 + mkDerivation { 262450 + pname = "strict-list"; 262451 + version = "0.1.7"; 262452 + sha256 = "0dhfnb5zvwnnbsy0c9lyymfq223zw9jgwv3wn1rq5xp1np68mkbh"; 262453 + libraryHaskellDepends = [ base deepseq hashable semigroupoids ]; 262454 + testHaskellDepends = [ 262455 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 262456 + tasty-quickcheck 262457 + ]; 262458 + description = "Strict linked list"; 262459 + license = lib.licenses.mit; 262460 + hydraPlatforms = lib.platforms.none; 262461 + }) {}; 262462 + 261897 262463 "strict-optics" = callPackage 261898 262464 ({ mkDerivation, base, optics-core, strict }: 261899 262465 mkDerivation { ··· 264306 264872 }) {}; 264307 264873 264308 264874 "svgsym" = callPackage 264309 - ({ mkDerivation, base, bytestring, containers, directory, filepath 264310 - , filepattern, optparse-applicative, regex-tdfa, xml 264875 + ({ mkDerivation, array, base, bytestring, containers, directory 264876 + , filepath, filepattern, optparse-applicative, regex-base 264877 + , regex-tdfa, xml 264311 264878 }: 264312 264879 mkDerivation { 264313 264880 pname = "svgsym"; 264314 - version = "0.1.0.0"; 264315 - sha256 = "0wiy03v3sdw8mzn3kibgjzjp6m50nnc31nld9zvr86fcrsl7bdgl"; 264881 + version = "0.1.1.0"; 264882 + sha256 = "014vand8zag2b9ll2g6xn0s91bav7x2v2l4xdvidc0rs6m8s5fx5"; 264316 264883 isLibrary = false; 264317 264884 isExecutable = true; 264318 264885 executableHaskellDepends = [ 264319 - base bytestring containers directory filepath filepattern 264320 - optparse-applicative regex-tdfa xml 264886 + array base bytestring containers directory filepath filepattern 264887 + optparse-applicative regex-base regex-tdfa xml 264321 264888 ]; 264322 264889 description = "A tool to prune unused symbols from icon SVG files"; 264323 264890 license = lib.licenses.gpl3Plus; ··· 267178 267745 license = lib.licenses.bsd3; 267179 267746 }) {}; 267180 267747 267748 + "tagged-transformer_0_8_2" = callPackage 267749 + ({ mkDerivation, base, comonad, contravariant, distributive 267750 + , exceptions, mtl, reflection, semigroupoids, tagged 267751 + }: 267752 + mkDerivation { 267753 + pname = "tagged-transformer"; 267754 + version = "0.8.2"; 267755 + sha256 = "10wlwqxzm1xdyzxl6xyfsrb40zmvh7g0y3w0a69b1lw2rp6v4vyy"; 267756 + libraryHaskellDepends = [ 267757 + base comonad contravariant distributive exceptions mtl reflection 267758 + semigroupoids tagged 267759 + ]; 267760 + description = "Monad transformer carrying an extra phantom type tag"; 267761 + license = lib.licenses.bsd3; 267762 + hydraPlatforms = lib.platforms.none; 267763 + }) {}; 267764 + 267181 267765 "tagging" = callPackage 267182 267766 ({ mkDerivation, base, bytestring, pcre-light }: 267183 267767 mkDerivation { ··· 267900 268484 pname = "tardis"; 267901 268485 version = "0.4.3.0"; 267902 268486 sha256 = "1ffmpdvnmr1s3rh3kpqqscsbz2rq4s7k8nfc93zw9m4mchg37waw"; 268487 + revision = "1"; 268488 + editedCabalFile = "1krk42qgdg10s6pxp805zv7z4c7mlhbhk15l07v9i750im1k73v3"; 267903 268489 libraryHaskellDepends = [ base mmorph mtl ]; 267904 268490 testHaskellDepends = [ base ]; 267905 268491 description = "Bidirectional state monad transformer"; 267906 268492 license = lib.licenses.bsd3; 268493 + }) {}; 268494 + 268495 + "tardis_0_4_4_0" = callPackage 268496 + ({ mkDerivation, base, mmorph, mtl }: 268497 + mkDerivation { 268498 + pname = "tardis"; 268499 + version = "0.4.4.0"; 268500 + sha256 = "0frm9kffdsia22rwyr8295n9xwhca1d6w04yz4l4cfjav6bgczfs"; 268501 + libraryHaskellDepends = [ base mmorph mtl ]; 268502 + testHaskellDepends = [ base ]; 268503 + description = "Bidirectional state monad transformer"; 268504 + license = lib.licenses.bsd3; 268505 + hydraPlatforms = lib.platforms.none; 267907 268506 }) {}; 267908 268507 267909 268508 "target" = callPackage ··· 268102 268701 pname = "tasty"; 268103 268702 version = "1.4.2.1"; 268104 268703 sha256 = "0ki3gdzfsqvk9mwzzvgj18ck1sbkwac06gcc128wpwh9g8c4bzqr"; 268105 - revision = "1"; 268106 - editedCabalFile = "1fm1yx9dqikspw3a6ygnwj61vx1zwgjxm84zpkydbhcf6hgab5sg"; 268704 + revision = "2"; 268705 + editedCabalFile = "134sp1sjyx5hh1vwraxdfs98yx9gf19zp9kpfzqvvajfgy9i37jv"; 268107 268706 libraryHaskellDepends = [ 268108 268707 ansi-terminal base clock containers mtl optparse-applicative stm 268109 268708 tagged unbounded-delays unix wcwidth ··· 268112 268711 license = lib.licenses.mit; 268113 268712 }) {}; 268114 268713 268714 + "tasty_1_4_2_2" = callPackage 268715 + ({ mkDerivation, ansi-terminal, base, clock, containers, mtl 268716 + , optparse-applicative, stm, tagged, unbounded-delays, unix 268717 + , wcwidth 268718 + }: 268719 + mkDerivation { 268720 + pname = "tasty"; 268721 + version = "1.4.2.2"; 268722 + sha256 = "1qqzrvmfnh2s0b3356wil1flzvvyrh5bvx3v65k9807wp9r5pxrq"; 268723 + libraryHaskellDepends = [ 268724 + ansi-terminal base clock containers mtl optparse-applicative stm 268725 + tagged unbounded-delays unix wcwidth 268726 + ]; 268727 + description = "Modern and extensible testing framework"; 268728 + license = lib.licenses.mit; 268729 + hydraPlatforms = lib.platforms.none; 268730 + }) {}; 268731 + 268115 268732 "tasty-ant-xml" = callPackage 268116 268733 ({ mkDerivation, base, containers, directory, filepath 268117 268734 , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers ··· 268800 269417 pname = "tasty-silver"; 268801 269418 version = "3.3.1"; 268802 269419 sha256 = "1pd83mzx0iv3f396m09rxmgcpcfaya0a9818dl3h4vgw0hnqkmav"; 269420 + revision = "1"; 269421 + editedCabalFile = "1gsjspgy9li9lsk7sqikm44mr3cjsxkrhvql6rabk5x9nb5ajrnr"; 268803 269422 libraryHaskellDepends = [ 268804 269423 ansi-terminal async base bytestring containers deepseq directory 268805 269424 filepath mtl optparse-applicative process process-extras regex-tdfa ··· 268813 269432 license = lib.licenses.mit; 268814 269433 }) {}; 268815 269434 269435 + "tasty-silver_3_3_1_1" = callPackage 269436 + ({ mkDerivation, ansi-terminal, async, base, bytestring, containers 269437 + , deepseq, directory, filepath, mtl, optparse-applicative, process 269438 + , process-extras, regex-tdfa, silently, stm, tagged, tasty 269439 + , tasty-hunit, temporary, text, transformers 269440 + }: 269441 + mkDerivation { 269442 + pname = "tasty-silver"; 269443 + version = "3.3.1.1"; 269444 + sha256 = "13j0zs0ciijv9q2nncna1gbgsgw2g7xc228hzmqic1750n3ybz9m"; 269445 + libraryHaskellDepends = [ 269446 + ansi-terminal async base bytestring containers deepseq directory 269447 + filepath mtl optparse-applicative process process-extras regex-tdfa 269448 + silently stm tagged tasty temporary text transformers 269449 + ]; 269450 + testHaskellDepends = [ 269451 + base directory filepath process silently tasty tasty-hunit 269452 + temporary transformers 269453 + ]; 269454 + description = "A fancy test runner, including support for golden tests"; 269455 + license = lib.licenses.mit; 269456 + hydraPlatforms = lib.platforms.none; 269457 + }) {}; 269458 + 268816 269459 "tasty-smallcheck" = callPackage 268817 269460 ({ mkDerivation, base, optparse-applicative, smallcheck, tagged 268818 269461 , tasty ··· 269605 270248 license = lib.licenses.bsd3; 269606 270249 }) {}; 269607 270250 269608 - "telegram-bot-simple_0_5" = callPackage 270251 + "telegram-bot-simple_0_5_1" = callPackage 269609 270252 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron 269610 270253 , filepath, hashable, http-api-data, http-client, http-client-tls 269611 270254 , monad-control, mtl, pretty-show, profunctors, servant ··· 269615 270258 }: 269616 270259 mkDerivation { 269617 270260 pname = "telegram-bot-simple"; 269618 - version = "0.5"; 269619 - sha256 = "0mzzq7lfl56h1i9dr617h5vcv47j2nsf77pkq18s8wk5zrc67r2w"; 269620 - revision = "1"; 269621 - editedCabalFile = "0nz2g3jfb3l66ixrxlz257pmg2qbg7l6wsi0q38iv8fl4483md2s"; 270261 + version = "0.5.1"; 270262 + sha256 = "0vkvnxfa9lmp6j2wc2s3yxvq6ilwjbb1xnrwk5kysrlsklvc86bs"; 269622 270263 isLibrary = true; 269623 270264 isExecutable = true; 269624 270265 libraryHaskellDepends = [ ··· 273013 273654 pname = "th-compat"; 273014 273655 version = "0.1.3"; 273015 273656 sha256 = "1il1hs5yjfkb417c224pw1vrh4anyprasfwmjbd4fkviyv55jl3b"; 273657 + revision = "1"; 273658 + editedCabalFile = "1ax5yz41sfy9klif7j3ihahvdi08alb56l4y9nr45vbc9kvijn7n"; 273016 273659 libraryHaskellDepends = [ base template-haskell ]; 273017 273660 testHaskellDepends = [ 273018 273661 base base-compat hspec mtl template-haskell ··· 280402 281045 maintainers = with lib.maintainers; [ Gabriel439 ]; 280403 281046 }) {}; 280404 281047 281048 + "turtle_1_5_25" = callPackage 281049 + ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 281050 + , containers, directory, doctest, exceptions, foldl, hostname 281051 + , managed, optional-args, optparse-applicative, process, stm 281052 + , streaming-commons, system-fileio, system-filepath, tasty-bench 281053 + , temporary, text, time, transformers, unix, unix-compat 281054 + }: 281055 + mkDerivation { 281056 + pname = "turtle"; 281057 + version = "1.5.25"; 281058 + sha256 = "1hh2rbwk3m4iklk67f1l1a8shsng9qzs9132j6lpag7cgqkrmqdk"; 281059 + libraryHaskellDepends = [ 281060 + ansi-wl-pprint async base bytestring clock containers directory 281061 + exceptions foldl hostname managed optional-args 281062 + optparse-applicative process stm streaming-commons system-fileio 281063 + system-filepath temporary text time transformers unix unix-compat 281064 + ]; 281065 + testHaskellDepends = [ base doctest system-filepath temporary ]; 281066 + benchmarkHaskellDepends = [ base tasty-bench text ]; 281067 + description = "Shell programming, Haskell-style"; 281068 + license = lib.licenses.bsd3; 281069 + hydraPlatforms = lib.platforms.none; 281070 + maintainers = with lib.maintainers; [ Gabriel439 ]; 281071 + }) {}; 281072 + 280405 281073 "turtle-options" = callPackage 280406 281074 ({ mkDerivation, base, HUnit, optional-args, parsec, text, turtle 280407 281075 }: ··· 282055 282723 pname = "typed-process"; 282056 282724 version = "0.2.8.0"; 282057 282725 sha256 = "1af0g34sws7fppziv7firr9r2wrnly4y6sr9nyqa8bvbbmadly45"; 282726 + revision = "1"; 282727 + editedCabalFile = "1m017nqbaqishii32gwhxa1849h0qnn06w7k1rn8c9d8w71m4vqm"; 282058 282728 libraryHaskellDepends = [ 282059 282729 async base bytestring process stm transformers unliftio-core 282060 282730 ]; ··· 291020 291690 license = lib.licenses.mit; 291021 291691 }) {}; 291022 291692 291023 - "wai-extra_3_1_11" = callPackage 291693 + "wai-extra_3_1_12" = callPackage 291024 291694 ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring 291025 291695 , bytestring, call-stack, case-insensitive, containers, cookie 291026 291696 , data-default-class, directory, fast-logger, hspec, http-types ··· 291030 291700 }: 291031 291701 mkDerivation { 291032 291702 pname = "wai-extra"; 291033 - version = "3.1.11"; 291034 - sha256 = "0z9hl0a8vh6049m4pvnqjm7fibp60qc3jrcz0vpqbscncr59l7h5"; 291703 + version = "3.1.12"; 291704 + sha256 = "1i6gh02sprdbkwg92pzm6rwxcm3k8286vazziwjq05xln3vckd1n"; 291035 291705 isLibrary = true; 291036 291706 isExecutable = true; 291037 291707 libraryHaskellDepends = [ ··· 293324 293994 }: 293325 293995 mkDerivation { 293326 293996 pname = "web-inv-route"; 293327 - version = "0.1.3.1"; 293328 - sha256 = "1l10rgrhcqld8znw6akxjlsm1h8z76l9yxa4yik11lk2l0g9anb2"; 293997 + version = "0.1.3.2"; 293998 + sha256 = "0gmbj6c6c8gqz9xfxv0d4134d7c2wfla3zg3bgqvvzsqjjmrg81v"; 293329 293999 libraryHaskellDepends = [ 293330 294000 base bytestring case-insensitive containers happstack-server 293331 294001 hashable http-types invertible network-uri snap-core text ··· 295734 296404 ]; 295735 296405 description = "values that witness types"; 295736 296406 license = lib.licenses.bsd3; 296407 + }) {}; 296408 + 296409 + "witness_0_6" = callPackage 296410 + ({ mkDerivation, base, constraints, countable }: 296411 + mkDerivation { 296412 + pname = "witness"; 296413 + version = "0.6"; 296414 + sha256 = "1y8scf6a061s8gnx38sfwn88ramakjr0h54qwlwcjrjpf0y6024l"; 296415 + libraryHaskellDepends = [ base constraints countable ]; 296416 + description = "values that witness types"; 296417 + license = lib.licenses.bsd2; 296418 + hydraPlatforms = lib.platforms.none; 295737 296419 }) {}; 295738 296420 295739 296421 "witty" = callPackage ··· 304940 305622 }: 304941 305623 mkDerivation { 304942 305624 pname = "zephyr-copilot"; 304943 - version = "1.0.1"; 304944 - sha256 = "0d489krxzj30gl8j8idwfi10k82w0p4kr30f0h78qvl9ikzinhvk"; 305625 + version = "1.0.2"; 305626 + sha256 = "01dvqzh97bw423kwhmgdr8l913p4miq69frv3nkjs889ps16faz0"; 304945 305627 libraryHaskellDepends = [ 304946 305628 base containers copilot copilot-c99 copilot-language directory 304947 305629 filepath mtl optparse-applicative sketch-frp-copilot temporary
+3 -3
pkgs/development/libraries/boolstuff/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "boolstuff"; 4 - version = "0.1.16"; 4 + version = "0.1.17"; 5 5 6 6 src = fetchurl { 7 - url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz"; 8 - sha256 = "10qynbyw723gz2vrvn4xk2var172kvhlz3l3l80qbdsfb3d12wn0"; 7 + url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz"; 8 + hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I="; 9 9 }; 10 10 11 11 nativeBuildInputs = [ pkg-config ];
-41
pkgs/development/libraries/ctl/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, ilmbase, libtiff, openexr }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "ctl"; 5 - version = "1.5.2"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "ampas"; 9 - repo = pname; 10 - rev = "${pname}-${version}"; 11 - sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx"; 12 - }; 13 - 14 - patches = [ 15 - (fetchpatch { 16 - name = "ctl-1.5.2-ilm_230.patch"; 17 - url = "https://src.fedoraproject.org/rpms/CTL/raw/9d7c15a91bccdc0a9485d463bf2789be72e6b17d/f/ctl-1.5.2-ilm_230.patch"; 18 - sha256 = "0mdx7llwrm0q8ai53zhyxi40i9h5s339dbkqpqv30yzi2xpnfj3d"; 19 - }) 20 - ]; 21 - 22 - postPatch = '' 23 - # Fix include guard name 24 - substituteInPlace lib/dpx/dpx_raw.hh \ 25 - --replace CRL_DPX_RAW_INTERNAL_INCLUDE CTL_DPX_RAW_INTERNAL_INCLUDE 26 - 27 - # Fix undefined symbols (link with Imath) 28 - substituteInPlace lib/IlmCtlMath/CMakeLists.txt \ 29 - --replace "( IlmCtlMath IlmCtl )" "( IlmCtlMath IlmCtl Imath)" 30 - ''; 31 - 32 - nativeBuildInputs = [ cmake pkg-config ]; 33 - buildInputs = [ libtiff ilmbase openexr ]; 34 - 35 - meta = with lib; { 36 - description = "Color Transformation Language"; 37 - homepage = "https://github.com/ampas/CTL"; 38 - license = "A.M.P.A.S"; # BSD-derivative, free but GPL incompatible 39 - platforms = platforms.all; 40 - }; 41 - }
+2
pkgs/development/libraries/v8/default.nix
··· 165 165 maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ]; 166 166 platforms = platforms.unix; 167 167 license = licenses.bsd3; 168 + # Fails to build on Darwin, see https://github.com/NixOS/nixpkgs/issues/158076 169 + broken = stdenv.isDarwin; 168 170 }; 169 171 }
+3 -3
pkgs/development/python-modules/hg-commitsigs/default.nix
··· 1 1 { lib 2 2 , fetchhg 3 3 , stdenv 4 - , python3 4 + , python 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { ··· 20 20 dontBuild = true; 21 21 22 22 installPhase = '' 23 - mkdir -p $out/lib/${python3.libPrefix}/site-packages/hgext3rd/ 23 + mkdir -p $out/lib/${python.libPrefix}/site-packages/hgext3rd/ 24 24 install -D $src/commitsigs.py \ 25 - $out/lib/${python3.libPrefix}/site-packages/hgext3rd/ 25 + $out/lib/${python.libPrefix}/site-packages/hgext3rd/ 26 26 ''; 27 27 28 28 meta = with lib; {
+2 -2
pkgs/development/python-modules/humblewx/default.nix
··· 2 2 , fetchFromGitHub 3 3 , buildPythonPackage 4 4 , wxPython_4_0 5 - , python3 5 + , python 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 22 22 checkPhase = '' 23 23 runHook preCheck 24 24 for i in examples/*; do 25 - ${python3.interpreter} $i 25 + ${python.interpreter} $i 26 26 done 27 27 runHook postCheck 28 28 '';
+2 -2
pkgs/development/python-modules/pynest2d/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python3, cmake 1 + { lib, buildPythonPackage, fetchFromGitHub, python, cmake 2 2 , libnest2d, sip_4, clipper }: 3 3 4 4 buildPythonPackage rec { ··· 19 19 CLIPPER_PATH = "${clipper.out}"; 20 20 21 21 postPatch = '' 22 - sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python3.sitePackages}#' cmake/SIPMacros.cmake 22 + sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake 23 23 ''; 24 24 25 25 meta = with lib; {
+2 -2
pkgs/development/python-modules/xdot/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k, python3, xvfb-run 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, python, xvfb-run 2 2 , wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3, numpy }: 3 3 4 4 buildPythonPackage rec { ··· 20 20 ''; 21 21 22 22 checkPhase = '' 23 - xvfb-run -s '-screen 0 800x600x24' ${python3.interpreter} nix_run_setup test 23 + xvfb-run -s '-screen 0 800x600x24' ${python.interpreter} nix_run_setup test 24 24 ''; 25 25 26 26 # https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866
+2
pkgs/games/blightmud/default.nix
··· 75 75 license = licenses.gpl3Plus; 76 76 maintainers = with maintainers; [ cpu ]; 77 77 platforms = platforms.linux; 78 + # See https://github.com/NixOS/nixpkgs/pull/160120 79 + broken = withTTS; 78 80 }; 79 81 }
+5 -8
pkgs/servers/http/trafficserver/default.nix
··· 50 50 51 51 stdenv.mkDerivation rec { 52 52 pname = "trafficserver"; 53 - version = "9.1.1"; 53 + version = "9.1.2"; 54 54 55 55 src = fetchzip { 56 56 url = "mirror://apache/trafficserver/trafficserver-${version}.tar.bz2"; 57 - sha256 = "sha256-oicRqKFE6hOpcNG9o3BmrMujtEzi4hrPhBWaljOW+VI="; 57 + sha256 = "sha256-eRpyTdwwO5EzrVpt9fF6VEYGZjHb905nQJd065wY5RU="; 58 58 }; 59 59 60 60 patches = [ ··· 65 65 sha256 = "0z1ikgpp00rzrrcqh97931586yn9wbksgai9xlkcjd5cg8gq0150"; 66 66 }) 67 67 68 - # Fix build against ncurses-6.3: 69 - # https://github.com/apache/trafficserver/pull/8437 70 - (fetchpatch { 71 - url = "https://github.com/apache/trafficserver/commit/66c86c6b082903a92b9db33c60e3ed947e77d540.patch"; 72 - sha256 = "1hgpp80xnnjr4k5i6gcllrb7dw4q4xcdrkwxpc1xk2np5cbyxd16"; 73 - }) 68 + ./fix-catch2-version-incompatibility.patch 74 69 ]; 75 70 76 71 # NOTE: The upstream README indicates that flex is needed for some features, ··· 115 110 116 111 substituteInPlace configure --replace '/usr/bin/file' '${file}/bin/file' 117 112 113 + # TODO: remove after the following change has been released 114 + # https://github.com/apache/trafficserver/pull/8683 118 115 cp ${catch2}/include/catch2/catch.hpp tests/include/catch.hpp 119 116 '' + lib.optionalString stdenv.isLinux '' 120 117 substituteInPlace configure \
+43
pkgs/servers/http/trafficserver/fix-catch2-version-incompatibility.patch
··· 1 + diff --git a/src/tscore/unit_tests/test_History.cc b/src/tscore/unit_tests/test_History.cc 2 + index 3e699139da0..7505f10aa4c 100644 3 + --- a/src/tscore/unit_tests/test_History.cc 4 + +++ b/src/tscore/unit_tests/test_History.cc 5 + @@ -59,10 +59,10 @@ TEST_CASE("History", "[libts][History]") 6 + REQUIRE(history[2].reentrancy == static_cast<short>(NO_REENTRANT)); 7 + 8 + history[0].location.str(buf, sizeof(buf)); 9 + - REQUIRE(string_view{buf} == "test_History.cc:48 (____C_A_T_C_H____T_E_S_T____0)"); 10 + + REQUIRE(string_view{buf} == "test_History.cc:48 (C_A_T_C_H_T_E_S_T_0)"); 11 + 12 + history[1].location.str(buf, sizeof(buf)); 13 + - REQUIRE(string_view{buf} == "test_History.cc:49 (____C_A_T_C_H____T_E_S_T____0)"); 14 + + REQUIRE(string_view{buf} == "test_History.cc:49 (C_A_T_C_H_T_E_S_T_0)"); 15 + 16 + ts::LocalBufferWriter<128> w; 17 + SM<HISTORY_DEFAULT_SIZE> *sm = new SM<HISTORY_DEFAULT_SIZE>; 18 + @@ -71,10 +71,10 @@ TEST_CASE("History", "[libts][History]") 19 + SM_REMEMBER(sm, 3, NO_REENTRANT); 20 + 21 + w.print("{}", sm->history[0].location); 22 + - REQUIRE(w.view() == "test_History.cc:69 (____C_A_T_C_H____T_E_S_T____0)"); 23 + + REQUIRE(w.view() == "test_History.cc:69 (C_A_T_C_H_T_E_S_T_0)"); 24 + 25 + w.reset().print("{}", sm->history[1].location); 26 + - REQUIRE(w.view() == "test_History.cc:70 (____C_A_T_C_H____T_E_S_T____0)"); 27 + + REQUIRE(w.view() == "test_History.cc:70 (C_A_T_C_H_T_E_S_T_0)"); 28 + 29 + REQUIRE(sm->history[0].event == 1); 30 + REQUIRE(sm->history[0].reentrancy == 1); 31 + @@ -106,10 +106,10 @@ TEST_CASE("History", "[libts][History]") 32 + REQUIRE(sm2->history.overflowed() == true); 33 + 34 + w.reset().print("{}", sm2->history[0].location); 35 + - REQUIRE(w.view() == "test_History.cc:103 (____C_A_T_C_H____T_E_S_T____0)"); 36 + + REQUIRE(w.view() == "test_History.cc:103 (C_A_T_C_H_T_E_S_T_0)"); 37 + 38 + w.reset().print("{}", sm2->history[1].location); 39 + - REQUIRE(w.view() == "test_History.cc:98 (____C_A_T_C_H____T_E_S_T____0)"); 40 + + REQUIRE(w.view() == "test_History.cc:98 (C_A_T_C_H_T_E_S_T_0)"); 41 + 42 + sm2->history.clear(); 43 + REQUIRE(sm2->history.size() == 0);
+2 -2
pkgs/servers/sql/postgresql/ext/plpgsql_check.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "plpgsql_check"; 5 - version = "2.1.3"; 5 + version = "2.1.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okbob"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hVbx1eUrVQ35UzcokoqYCi6RFI5Dn7t9XH8q9VbyDbQ="; 11 + sha256 = "sha256-DYdZuHraecQZ33xHX6ugiUJVfFVAayD2spIQt2Qqa5U="; 12 12 }; 13 13 14 14 buildInputs = [ postgresql ];
+2 -2
pkgs/tools/misc/clickclack/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "clickclack"; 9 - version = "0.2.2"; 9 + version = "0.2.3"; 10 10 11 11 src = fetchFromSourcehut { 12 12 owner = "~proycon"; 13 13 repo = "clickclack"; 14 14 rev = version; 15 - hash = "sha256-ABVfJRSzbQ6jIpON2g2wS52QsyNQVfW6+AhTvjkkf6s="; 15 + hash = "sha256-YmlbGEmZgT/30c+mWQzdz4rKc69d75zhoNUA5FdxdMc="; 16 16 }; 17 17 18 18 buildInputs = [
-18
pkgs/tools/security/dirmngr/default.nix
··· 1 - { lib, stdenv, fetchurl, libgpg-error, libgcrypt, libassuan, libksba, pth, openldap 2 - , libiconv}: 3 - 4 - stdenv.mkDerivation rec { 5 - pname = "dirmngr"; 6 - version = "1.1.1"; 7 - src = fetchurl { 8 - url = "mirror://gnupg/dirmngr/dirmngr-${version}.tar.bz2"; 9 - sha256 = "1zz6m87ca55nq5f59hzm6qs48d37h93il881y7d0rf2d6660na6j"; 10 - }; 11 - buildInputs = [ libgpg-error libgcrypt libassuan libksba 12 - pth openldap libiconv ]; 13 - 14 - meta = { 15 - platforms = lib.platforms.unix; 16 - license = lib.licenses.gpl2Plus; 17 - }; 18 - }
+4 -1
pkgs/tools/typesetting/sile/default.nix
··· 18 18 luaEnv = lua.withPackages(ps: with ps; [ 19 19 cassowary 20 20 cosmo 21 - compat53 22 21 linenoise 23 22 lpeg 24 23 lua-zlib ··· 33 32 penlight 34 33 stdlib 35 34 vstruct 35 + ] ++ lib.optionals (lib.versionOlder lua.luaversion "5.2") [ 36 + bit32 37 + ] ++ lib.optionals (lib.versionOlder lua.luaversion "5.3") [ 38 + compat53 36 39 ]); 37 40 in 38 41
+5
pkgs/top-level/aliases.nix
··· 94 94 avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18 95 95 awesome-4-0 = awesome; # Added 2022-05-05 96 96 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; 97 + axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 97 98 azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 98 99 99 100 ### B ### ··· 205 206 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 206 207 crafty = throw "crafty has been removed: deleted by upstream"; # Added 2022-01-07 207 208 cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 209 + ctl = throw "ctl has been removed: abandoned by upstream"; # Added 2022-05-13 208 210 209 211 # CUDA Toolkit 210 212 cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 ··· 315 317 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 316 318 desktop_file_utils = throw "'desktop_file_utils' has been renamed to/replaced by 'desktop-file-utils'"; # Converted to throw 2022-02-22 317 319 devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22 320 + dfu-util-axoloti = throw "dfu-util-axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 318 321 dhall-text = throw "'dhall-text' has been deprecated in favor of the 'dhall text' command from 'dhall'"; # Added 2022-03-26 319 322 digikam5 = throw "'digikam5' has been renamed to/replaced by 'digikam'"; # Converted to throw 2022-02-22 323 + dirmngr = throw "dirmngr has been removed: merged into gnupg"; # Added 2022-05-13 320 324 disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18 321 325 displaycal = throw "displaycal has been removed from nixpkgs, as it hasn't migrated to python3"; # Added 2022-01-12 322 326 dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22 ··· 695 699 libudev = throw "'libudev' has been renamed to/replaced by 'udev'"; # Converted to throw 2022-02-22 696 700 libungif = giflib; # Added 2020-02-12 697 701 libusb = libusb1; # Added 2020-04-28 702 + libusb1-axoloti = throw "libusb1-axoloti has been removed: axoloti has been removed"; # Added 2022-05-13 698 703 libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22 699 704 libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22 700 705 libwnck3 = libwnck;
+6 -17
pkgs/top-level/all-packages.nix
··· 1998 1998 1999 1999 bonnmotion = callPackage ../development/tools/misc/bonnmotion { }; 2000 2000 2001 - bonnie = callPackage ../tools/filesystems/bonnie { }; 2001 + bonnie = callPackage ../tools/filesystems/bonnie { 2002 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 2003 + }; 2002 2004 2003 2005 botamusique = callPackage ../tools/audio/botamusique { }; 2004 2006 ··· 2560 2562 2561 2563 axel = callPackage ../tools/networking/axel { 2562 2564 libssl = openssl; 2563 - }; 2564 - 2565 - axoloti = callPackage ../applications/audio/axoloti { 2566 - gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc; 2567 - binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils; 2568 - jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 2569 - }; 2570 - dfu-util-axoloti = callPackage ../applications/audio/axoloti/dfu-util.nix { }; 2571 - libusb1-axoloti = callPackage ../applications/audio/axoloti/libusb1.nix { 2572 - inherit (darwin) libobjc; 2573 - inherit (darwin.apple_sdk.frameworks) IOKit; 2574 2565 }; 2575 2566 2576 2567 b3sum = callPackage ../tools/security/b3sum {}; ··· 5211 5202 picotts = callPackage ../tools/audio/picotts { }; 5212 5203 5213 5204 wgetpaste = callPackage ../tools/text/wgetpaste { }; 5214 - 5215 - dirmngr = callPackage ../tools/security/dirmngr { }; 5216 5205 5217 5206 dismap = callPackage ../tools/security/dismap { }; 5218 5207 ··· 16831 16820 16832 16821 classads = callPackage ../development/libraries/classads { }; 16833 16822 16834 - clfft = callPackage ../development/libraries/clfft { }; 16823 + clfft = callPackage ../development/libraries/clfft { 16824 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 16825 + }; 16835 16826 16836 16827 clipp = callPackage ../development/libraries/clipp { }; 16837 16828 ··· 16883 16874 cosmopolitan = callPackage ../development/libraries/cosmopolitan { }; 16884 16875 16885 16876 python-cosmopolitan = callPackage ../development/interpreters/python-cosmopolitan { }; 16886 - 16887 - ctl = callPackage ../development/libraries/ctl { }; 16888 16877 16889 16878 ctpp2 = callPackage ../development/libraries/ctpp2 { }; 16890 16879