lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
c5b82a04 291da905

+2964 -1370
+1 -1
doc/languages-frameworks/haskell.section.md
··· 23 23 24 24 All of these packages are originally defined in the `haskellPackages` package 25 25 set and are re-exposed with a reduced dependency closure for convenience. 26 - (see `justStaticExecutables` below) 26 + (see `justStaticExecutables` or `separateBinOutput` below) 27 27 28 28 The `haskellPackages` set includes at least one version of every package from 29 29 Hackage as well as some manually injected packages. This amounts to a lot of
+7 -1
maintainers/maintainer-list.nix
··· 2524 2524 }; 2525 2525 cafkafk = { 2526 2526 email = "christina@cafkafk.com"; 2527 - matrix = "@cafkafk:matrix.cafkafk.com"; 2527 + matrix = "@cafkafk:m.cafkafk.com"; 2528 2528 name = "Christina Sørensen"; 2529 2529 github = "cafkafk"; 2530 2530 githubId = 89321978; ··· 13188 13188 github = "progval"; 13189 13189 githubId = 406946; 13190 13190 name = "Valentin Lorentz"; 13191 + }; 13192 + proofconstruction = { 13193 + email = "source@proof.construction"; 13194 + github = "proofconstruction"; 13195 + githubId = 74747193; 13196 + name = "Alexander Groleau"; 13191 13197 }; 13192 13198 proofofkeags = { 13193 13199 email = "keagan.mcclelland@gmail.com";
+4
nixos/doc/manual/release-notes/rl-2311.section.md
··· 56 56 57 57 - `services.lemmy.settings.federation` was removed in 0.17.0 and no longer has any effect. To enable federation, the hostname must be set in the configuration file and then federation must be enabled in the admin web UI. See the [release notes](https://github.com/LemmyNet/lemmy/blob/c32585b03429f0f76d1e4ff738786321a0a9df98/RELEASES.md#upgrade-instructions) for more details. 58 58 59 + - The following packages in `haskellPackages` have now a separate bin output: `cabal-fmt`, `calligraphy`, `eventlog2html`, `ghc-debug-brick`, `hindent`, `nixfmt`, `releaser`. This means you need to replace e.g. `"${pkgs.haskellPackages.nixfmt}/bin/nixfmt"` with `"${lib.getBin pkgs.haskellPackages.nixfmt}/bin/nixfmt"` or `"${lib.getExe pkgs.haskellPackages.nixfmt}"`. The binaries also won’t be in scope if you rely on them being installed e.g. via `ghcWithPackages`. `environment.packages` picks the `bin` output automatically, so for normal installation no intervention is required. Also, toplevel attributes like `pkgs.nixfmt` are not impacted negatively by this change. 60 + 59 61 - `spamassassin` no longer supports the `Hashcash` module. The module needs to be removed from the `loadplugin` list if it was copied over from the default `initPreConf` option. 60 62 61 63 ## Other Notable Changes {#sec-release-23.11-notable-changes} ··· 77 79 - `services.nginx` gained a `defaultListen` option at server-level with support for PROXY protocol listeners, also `proxyProtocol` is now exposed in `services.nginx.virtualHosts.<name>.listen` option. It is now possible to run PROXY listeners and non-PROXY listeners at a server-level, see [#213510](https://github.com/NixOS/nixpkgs/pull/213510/) for more details. 78 80 79 81 - `services.prometheus.exporters` has a new exporter to monitor electrical power consumption based on PowercapRAPL sensor called [Scaphandre](https://github.com/hubblo-org/scaphandre), see [#239803](https://github.com/NixOS/nixpkgs/pull/239803) for more details. 82 + 83 + - The module `services.calibre-server` has new options to configure the `host`, `port`, `auth.enable`, `auth.mode` and `auth.userDb` path, see [#216497](https://github.com/NixOS/nixpkgs/pull/216497/) for more details. 80 84 81 85 ## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals} 82 86
+1 -1
nixos/modules/config/fonts/fontdir.nix
··· 8 8 9 9 x11Fonts = pkgs.runCommand "X11-fonts" { preferLocalBuild = true; } '' 10 10 mkdir -p "$out/share/X11/fonts" 11 - font_regexp='.*\.\(ttf\|ttc\|otf\|pcf\|pfa\|pfb\|bdf\)\(\.gz\)?' 11 + font_regexp='.*\.\(ttf\|ttc\|otb\|otf\|pcf\|pfa\|pfb\|bdf\)\(\.gz\)?' 12 12 find ${toString config.fonts.fonts} -regex "$font_regexp" \ 13 13 -exec ln -sf -t "$out/share/X11/fonts" '{}' \; 14 14 cd "$out/share/X11/fonts"
+77 -17
nixos/modules/services/misc/calibre-server.nix
··· 6 6 7 7 cfg = config.services.calibre-server; 8 8 9 + documentationLink = "https://manual.calibre-ebook.com"; 10 + generatedDocumentationLink = documentationLink + "/generated/en/calibre-server.html"; 11 + 12 + execFlags = (concatStringsSep " " 13 + (mapAttrsToList (k: v: "${k} ${toString v}") (filterAttrs (name: value: value != null) { 14 + "--listen-on" = cfg.host; 15 + "--port" = cfg.port; 16 + "--auth-mode" = cfg.auth.mode; 17 + "--userdb" = cfg.auth.userDb; 18 + }) ++ [(optionalString (cfg.auth.enable == true) "--enable-auth")]) 19 + ); 9 20 in 10 21 11 22 { ··· 18 29 ) 19 30 ]; 20 31 21 - ###### interface 22 - 23 32 options = { 24 33 services.calibre-server = { 25 34 26 35 enable = mkEnableOption (lib.mdDoc "calibre-server"); 36 + package = lib.mkPackageOptionMD pkgs "calibre" { }; 27 37 28 38 libraries = mkOption { 39 + type = types.listOf types.path; 40 + default = [ "/var/lib/calibre-server" ]; 29 41 description = lib.mdDoc '' 42 + Make sure each library path is initialized before service startup. 30 43 The directories of the libraries to serve. They must be readable for the user under which the server runs. 44 + See the [calibredb documentation](${documentationLink}/generated/en/calibredb.html#add) for details. 31 45 ''; 32 - type = types.listOf types.path; 33 46 }; 34 47 35 48 user = mkOption { 36 - description = lib.mdDoc "The user under which calibre-server runs."; 37 49 type = types.str; 38 50 default = "calibre-server"; 51 + description = lib.mdDoc "The user under which calibre-server runs."; 39 52 }; 40 53 41 54 group = mkOption { 42 - description = lib.mdDoc "The group under which calibre-server runs."; 43 55 type = types.str; 44 56 default = "calibre-server"; 57 + description = lib.mdDoc "The group under which calibre-server runs."; 45 58 }; 46 59 47 - }; 48 - }; 60 + host = mkOption { 61 + type = types.str; 62 + default = "0.0.0.0"; 63 + example = "::1"; 64 + description = lib.mdDoc '' 65 + The interface on which to listen for connections. 66 + See the [calibre-server documentation](${generatedDocumentationLink}#cmdoption-calibre-server-listen-on) for details. 67 + ''; 68 + }; 49 69 70 + port = mkOption { 71 + default = 8080; 72 + type = types.port; 73 + description = lib.mdDoc '' 74 + The port on which to listen for connections. 75 + See the [calibre-server documentation](${generatedDocumentationLink}#cmdoption-calibre-server-port) for details. 76 + ''; 77 + }; 50 78 51 - ###### implementation 79 + auth = { 80 + enable = mkOption { 81 + type = types.bool; 82 + default = false; 83 + description = lib.mdDoc '' 84 + Password based authentication to access the server. 85 + See the [calibre-server documentation](${generatedDocumentationLink}#cmdoption-calibre-server-enable-auth) for details. 86 + ''; 87 + }; 88 + 89 + mode = mkOption { 90 + type = types.enum [ "auto" "basic" "digest" ]; 91 + default = "auto"; 92 + description = lib.mdDoc '' 93 + Choose the type of authentication used. 94 + Set the HTTP authentication mode used by the server. 95 + See the [calibre-server documentation](${generatedDocumentationLink}#cmdoption-calibre-server-auth-mode) for details. 96 + ''; 97 + }; 98 + 99 + userDb = mkOption { 100 + default = null; 101 + type = types.nullOr types.path; 102 + description = lib.mdDoc '' 103 + Choose users database file to use for authentication. 104 + Make sure users database file is initialized before service startup. 105 + See the [calibre-server documentation](${documentationLink}/server.html#managing-user-accounts-from-the-command-line-only) for details. 106 + ''; 107 + }; 108 + }; 109 + }; 110 + }; 52 111 53 112 config = mkIf cfg.enable { 54 113 55 114 systemd.services.calibre-server = { 56 - description = "Calibre Server"; 57 - after = [ "network.target" ]; 58 - wantedBy = [ "multi-user.target" ]; 59 - serviceConfig = { 60 - User = cfg.user; 61 - Restart = "always"; 62 - ExecStart = "${pkgs.calibre}/bin/calibre-server ${lib.concatStringsSep " " cfg.libraries}"; 63 - }; 115 + description = "Calibre Server"; 116 + after = [ "network.target" ]; 117 + wantedBy = [ "multi-user.target" ]; 118 + serviceConfig = { 119 + User = cfg.user; 120 + Restart = "always"; 121 + ExecStart = "${cfg.package}/bin/calibre-server ${lib.concatStringsSep " " cfg.libraries} ${execFlags}"; 122 + }; 64 123 65 - }; 124 + }; 66 125 67 126 environment.systemPackages = [ pkgs.calibre ]; 68 127 ··· 83 142 84 143 }; 85 144 145 + meta.maintainers = with lib.maintainers; [ gaelreyrol ]; 86 146 }
+1 -2
nixos/modules/services/misc/paperless.nix
··· 86 86 SupplementaryGroups = optional enableRedis redisServer.user; 87 87 SystemCallArchitectures = "native"; 88 88 SystemCallFilter = [ "@system-service" "~@privileged @setuid @keyring" ]; 89 - # Does not work well with the temporary root 90 - #UMask = "0066"; 89 + UMask = "0066"; 91 90 }; 92 91 in 93 92 {
+1 -1
nixos/modules/services/monitoring/grafana.nix
··· 1126 1126 It will notify, via the UI, when a new version is available. 1127 1127 The check itself will not prompt any auto-updates of the Grafana software, nor will it send any sensitive information. 1128 1128 ''; 1129 - default = true; 1129 + default = false; 1130 1130 type = types.bool; 1131 1131 }; 1132 1132
+1
nixos/tests/all-tests.nix
··· 151 151 cage = handleTest ./cage.nix {}; 152 152 cagebreak = handleTest ./cagebreak.nix {}; 153 153 calibre-web = handleTest ./calibre-web.nix {}; 154 + calibre-server = handleTest ./calibre-server.nix {}; 154 155 cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; }; 155 156 cassandra_3_11 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_11; }; 156 157 cassandra_4 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_4; };
+104
nixos/tests/calibre-server.nix
··· 1 + { system ? builtins.currentSystem 2 + , config ? { } 3 + , pkgs ? import ../.. { inherit system config; } 4 + }: 5 + 6 + let 7 + inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest; 8 + inherit (pkgs.lib) concatStringsSep maintainers mapAttrs mkMerge 9 + removeSuffix splitString; 10 + 11 + tests = { 12 + default = { 13 + calibreConfig = {}; 14 + calibreScript = '' 15 + wait_for_unit("calibre-server.service") 16 + ''; 17 + }; 18 + customLibrary = { 19 + calibreConfig = { 20 + libraries = [ "/var/lib/calibre-data" ]; 21 + }; 22 + calibreScript = '' 23 + succeed("ls -la /var/lib/calibre-data") 24 + wait_for_unit("calibre-server.service") 25 + ''; 26 + }; 27 + multipleLibraries = { 28 + calibreConfig = { 29 + libraries = [ "/var/lib/calibre-data" "/var/lib/calibre-server" ]; 30 + }; 31 + calibreScript = '' 32 + succeed("ls -la /var/lib/calibre-data") 33 + succeed("ls -la /var/lib/calibre-server") 34 + wait_for_unit("calibre-server.service") 35 + ''; 36 + }; 37 + hostAndPort = { 38 + calibreConfig = { 39 + host = "127.0.0.1"; 40 + port = 8888; 41 + }; 42 + calibreScript = '' 43 + wait_for_unit("calibre-server.service") 44 + wait_for_open_port(8888) 45 + succeed("curl --fail http://127.0.0.1:8888") 46 + ''; 47 + }; 48 + basicAuth = { 49 + calibreConfig = { 50 + host = "127.0.0.1"; 51 + port = 8888; 52 + auth = { 53 + enable = true; 54 + mode = "basic"; 55 + }; 56 + }; 57 + calibreScript = '' 58 + wait_for_unit("calibre-server.service") 59 + wait_for_open_port(8888) 60 + fail("curl --fail http://127.0.0.1:8888") 61 + ''; 62 + }; 63 + }; 64 + in 65 + mapAttrs 66 + (test: testConfig: (makeTest ( 67 + let 68 + nodeName = testConfig.nodeName or test; 69 + calibreConfig = { 70 + enable = true; 71 + libraries = [ "/var/lib/calibre-server" ]; 72 + } // testConfig.calibreConfig or {}; 73 + librariesInitScript = path: '' 74 + ${nodeName}.execute("touch /tmp/test.epub") 75 + ${nodeName}.execute("zip -r /tmp/test.zip /tmp/test.epub") 76 + ${nodeName}.execute("mkdir -p ${path}") 77 + ${nodeName}.execute("calibredb add -d --with-library ${path} /tmp/test.zip") 78 + ''; 79 + in 80 + { 81 + name = "calibre-server-${test}"; 82 + 83 + nodes.${nodeName} = mkMerge [{ 84 + environment.systemPackages = [ pkgs.zip ]; 85 + services.calibre-server = calibreConfig; 86 + } testConfig.calibreProvider or { }]; 87 + 88 + testScript = '' 89 + ${nodeName}.start() 90 + ${concatStringsSep "\n" (map librariesInitScript calibreConfig.libraries)} 91 + ${concatStringsSep "\n" (map (line: 92 + if (builtins.substring 0 1 line == " " || builtins.substring 0 1 line == ")") 93 + then line 94 + else "${nodeName}.${line}" 95 + ) (splitString "\n" (removeSuffix "\n" testConfig.calibreScript)))} 96 + ${nodeName}.shutdown() 97 + ''; 98 + 99 + meta = with maintainers; { 100 + maintainers = [ gaelreyrol ]; 101 + }; 102 + } 103 + ))) 104 + tests
+59
pkgs/applications/audio/waylyrics/default.nix
··· 1 + { lib, fetchFromGitHub, rustPlatform, gtk4, pkg-config, openssl, dbus, wrapGAppsHook4, glib, makeDesktopItem, copyDesktopItems }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "waylyrics"; 5 + version = "unstable-2023-05-14"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "poly000"; 9 + repo = pname; 10 + rev = "7e8bd99e1748a5448c1a5c49f0664bd96fbf965e"; 11 + hash = "sha256-vSYtLsLvRHCCHxomPSHifXFZKjkFrlskNp7IlFflrUU="; 12 + }; 13 + 14 + cargoHash = "sha256-dpJa0T6xapCBPM5fWbSDEhBlZ55c3Sr5oTnu58B/voM="; 15 + 16 + nativeBuildInputs = [ pkg-config wrapGAppsHook4 copyDesktopItems ]; 17 + buildInputs = [ gtk4 openssl dbus glib ]; 18 + 19 + RUSTC_BOOTSTRAP = 1; 20 + 21 + doCheck = false; # No tests defined in the project. 22 + 23 + WAYLYRICS_DEFAULT_CONFIG = "${placeholder "out"}/share/waylyrics/config.toml"; 24 + WAYLYRICS_THEME_PRESETS_DIR = "${placeholder "out"}/share/waylyrics/themes"; 25 + 26 + desktopItems = [ 27 + (makeDesktopItem { 28 + name = "io.poly000.waylyrics"; 29 + exec = "waylyrics"; 30 + comment = "Simple on screen lyrics for MPRIS-friendly players"; 31 + type = "Application"; 32 + icon = "io.poly000.waylyrics"; 33 + desktopName = "Waylyrics"; 34 + terminal = false; 35 + categories = [ "Audio" "AudioVideo" ]; 36 + }) 37 + ]; 38 + 39 + postInstall = '' 40 + $out/bin/gen_config_example 41 + mkdir -p $out/share/waylyrics 42 + install -Dm644 config.toml $WAYLYRICS_DEFAULT_CONFIG 43 + cp -vr themes $out/share/waylyrics/ 44 + rm $out/bin/gen_config_example # Unnecessary for end users 45 + # Install schema 46 + install -Dm644 io.poly000.waylyrics.gschema.xml -t $out/share/gsettings-schemas/$name/glib-2.0/schemas 47 + glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas/ 48 + # Install icons 49 + cp -vr res/icons $out/share/ 50 + ''; 51 + 52 + meta = with lib; { 53 + description = "On screen lyrics for Wayland with NetEase Music source"; 54 + homepage = "https://github.com/poly000/waylyrics"; 55 + license = licenses.mit; 56 + maintainers = [ maintainers.shadowrz ]; 57 + platforms = platforms.linux; 58 + }; 59 + }
+17 -5
pkgs/applications/blockchains/bisq-desktop/default.nix
··· 16 16 }: 17 17 18 18 let 19 - bisq-launcher = writeScript "bisq-launcher" '' 19 + bisq-launcher = args: writeScript "bisq-launcher" '' 20 20 #! ${bash}/bin/bash 21 21 22 22 # This is just a comment to convince Nix that Tor is a ··· 24 24 # whereas Nix only scans for hashes in uncompressed text. 25 25 # ${bisq-tor} 26 26 27 - JAVA_TOOL_OPTIONS="-XX:+UseG1GC -XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5 -XX:+UseStringDeduplication" bisq-desktop-wrapped "$@" 27 + JAVA_TOOL_OPTIONS="-XX:+UseG1GC -XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5 -XX:+UseStringDeduplication ${args}" bisq-desktop-wrapped "$@" 28 28 ''; 29 29 30 30 bisq-tor = writeScript "bisq-tor" '' ··· 35 35 in 36 36 stdenv.mkDerivation rec { 37 37 pname = "bisq-desktop"; 38 - version = "1.9.9"; 38 + version = "1.9.10"; 39 39 40 40 src = fetchurl { 41 41 url = "https://github.com/bisq-network/bisq/releases/download/v${version}/Bisq-64bit-${version}.deb"; 42 - sha256 = "0jisxzajsc4wfvxabvfzd0x9y1fxzg39fkhap1781q7wyi4ry9kd"; 42 + sha256 = "1p6hwamc3vzhfg4dgrmh0vf8cxi9s46a14pjnjdyg9zgn4dyr1nm"; 43 43 }; 44 44 45 45 nativeBuildInputs = [ ··· 61 61 genericName = "Decentralized bitcoin exchange"; 62 62 categories = [ "Network" "P2P" ]; 63 63 }) 64 + 65 + (makeDesktopItem { 66 + name = "Bisq-hidpi"; 67 + exec = "bisq-desktop-hidpi"; 68 + icon = "bisq"; 69 + desktopName = "Bisq ${version} (HiDPI)"; 70 + genericName = "Decentralized bitcoin exchange"; 71 + categories = [ "Network" "P2P" ]; 72 + }) 64 73 ]; 65 74 66 75 unpackPhase = '' ··· 87 96 makeWrapper ${openjdk11}/bin/java $out/bin/bisq-desktop-wrapped \ 88 97 --add-flags "-jar $out/lib/desktop-${version}-all.jar bisq.desktop.app.BisqAppMain" 89 98 90 - makeWrapper ${bisq-launcher} $out/bin/bisq-desktop \ 99 + makeWrapper ${bisq-launcher ""} $out/bin/bisq-desktop \ 100 + --prefix PATH : $out/bin 101 + 102 + makeWrapper ${bisq-launcher "-Dglass.gtk.uiScale=2.0"} $out/bin/bisq-desktop-hidpi \ 91 103 --prefix PATH : $out/bin 92 104 93 105 for n in 16 24 32 48 64 96 128 256; do
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 667 667 mktplcRef = { 668 668 name = "ruff"; 669 669 publisher = "charliermarsh"; 670 - version = "2023.26.0"; 671 - sha256 = "sha256-5JaOo0BqTWo3NAdzS9DSClTwB9YiBhICEPOqWmBv270="; 670 + version = "2023.30.0"; 671 + sha256 = "sha256-E/zgKNxKH05qzLkoyq66qBDbkNJ7liBvU+ZSxw825c0="; 672 672 }; 673 673 meta = { 674 674 license = lib.licenses.mit;
+2 -2
pkgs/applications/emulators/mame/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "mame"; 41 - version = "0.255"; 41 + version = "0.256"; 42 42 srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "mamedev"; 46 46 repo = "mame"; 47 47 rev = "mame${srcVersion}"; 48 - hash = "sha256-pdPKxEHxynBIB2lUG6yjKNcY8MlOlk4pfr7WwqaA9Dk="; 48 + hash = "sha256-rQ1GQks3Nni6ALxfiJzdkKUgbZrXaLu9vJtEDPjgP3Q="; 49 49 }; 50 50 51 51 outputs = [ "out" "tools" ];
+49
pkgs/applications/file-managers/projectable/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , libgit2_1_5 6 + , openssl 7 + , zlib 8 + , stdenv 9 + , darwin 10 + }: 11 + 12 + rustPlatform.buildRustPackage rec { 13 + pname = "projectable"; 14 + version = "1.2.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "dzfrias"; 18 + repo = "projectable"; 19 + rev = version; 20 + hash = "sha256-mN8kqh17qGJWOwrdH9fCPApFQBbgCs6FaVg38SNJGP0="; 21 + }; 22 + 23 + cargoHash = "sha256-SQ117gFkqex3GFl7RnorSfPo7e0Eefg1l3L0Vyi/tpU="; 24 + 25 + nativeBuildInputs = [ 26 + pkg-config 27 + ]; 28 + 29 + buildInputs = [ 30 + libgit2_1_5 31 + openssl 32 + zlib 33 + ] ++ lib.optionals stdenv.isDarwin [ 34 + darwin.apple_sdk.frameworks.CoreServices 35 + ]; 36 + 37 + env = { 38 + OPENSSL_NO_VENDOR = true; 39 + }; 40 + 41 + meta = with lib; { 42 + description = "A TUI file manager built for projects"; 43 + homepage = "https://github.com/dzfrias/projectable"; 44 + changelog = "https://github.com/dzfrias/projectable/releases/tag/${src.rev}"; 45 + license = licenses.mit; 46 + maintainers = with maintainers; [ figsoda ]; 47 + mainProgram = "prj"; 48 + }; 49 + }
+6
pkgs/applications/graphics/deskew/default.nix
··· 18 18 buildPhase = '' 19 19 runHook preBuild 20 20 patchShebangs ./Scripts 21 + 22 + # Deskew insists on using dlopen to load libtiff, we insist it links against it. 23 + sed -i -e 's/{$DEFINE DYNAMIC_DLL_LOADING}//' Imaging/LibTiff/LibTiffDynLib.pas 24 + sed -i -e 's/if LibTiffDynLib\.LoadTiffLibrary then//' Imaging/LibTiff/ImagingTiffLib.pas 25 + # Make sure libtiff is in the RPATH, so that Nix can find and track the runtime dependency 26 + export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${lib.getLib libtiff}/lib" 21 27 pushd Scripts && ./compile.sh && popd 22 28 runHook postBuild 23 29 '';
+3 -3
pkgs/applications/misc/joplin-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "joplin-desktop"; 5 - version = "2.10.19"; 5 + version = "2.11.11"; 6 6 name = "${pname}-${version}"; 7 7 8 8 inherit (stdenv.hostPlatform) system; ··· 16 16 src = fetchurl { 17 17 url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.${suffix}"; 18 18 sha256 = { 19 - x86_64-linux = "sha256-+QvaEB+4eA3grnqbLfFMEtNyizlvovtV/BvTa9gSZGU="; 20 - x86_64-darwin = "sha256-BK951HLf+L1x9TDlqW11mNnnrnHfZ4qbKk25OIVXnuM="; 19 + x86_64-linux = "sha256-r64+y+LfMrJnUdabVdak5+LQB50YLOuMXftlZ4s3C/w="; 20 + x86_64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg="; 21 21 }.${system} or throwSystem; 22 22 }; 23 23
+3 -3
pkgs/applications/misc/leetcode-cli/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "leetcode-cli"; 14 - version = "0.3.11"; 14 + version = "0.4.1"; 15 15 16 16 src = fetchCrate { 17 17 inherit pname version; 18 - sha256 = "sha256-DHtIhiRPRGuO6Rf1d9f8r0bMOHqAaJleUvYNyPiX6mc="; 18 + sha256 = "sha256-8v10Oe3J0S9xp4b2UDOnv+W0UDgveK+mAyV3I/zZUGw="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-Suk/nQ+JcoD9HO9x1lYp+p4qx0DZ9dt0p5jPz0ZQB+k="; 21 + cargoHash = "sha256-MdHk8i/murKcWi9gydyPyq/6r1SovKP04PMJyXXrCiQ="; 22 22 23 23 nativeBuildInputs = [ 24 24 pkg-config
+2 -2
pkgs/applications/misc/logseq/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "logseq"; 13 - version = "0.9.9"; 13 + version = "0.9.10"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage"; 17 - hash = "sha256-DwxRhC8HKJnu1F9mfU3+UdpTjtKLhxs4LJY9A0cZvBo="; 17 + hash = "sha256-en8ws0qdMY5j1o8oTkKcIHHQV+kCuQZzQbdFU97qAQE="; 18 18 name = "${pname}-${version}.AppImage"; 19 19 }; 20 20
+2 -2
pkgs/applications/networking/cluster/glooctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glooctl"; 5 - version = "1.14.8"; 5 + version = "1.14.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "solo-io"; 9 9 repo = "gloo"; 10 10 rev = "v${version}"; 11 - hash = "sha256-OnoOZw85RffGiAPiAM8WLg2TjW1REgirvfAjFYt8/yY="; 11 + hash = "sha256-PJvr62slTW3IoauLtRH88BDMpf3qGOWADjj4L4wQBLo="; 12 12 }; 13 13 14 14 subPackages = [ "projects/gloo/cli/cmd" ];
+2 -2
pkgs/applications/networking/cluster/helm-dashboard/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helm-dashboard"; 5 - version = "1.3.2"; 5 + version = "1.3.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "komodorio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ukapQRTn19sNTnJ0PHc8sp8x+k1qFb3ioHZHvVtToVU="; 11 + sha256 = "sha256-hjIo2AEXNcFK0z4op59NnC2R8GspF5t808DZ72AxgMw="; 12 12 }; 13 13 14 14 vendorHash = "sha256-ROffm1SGYnhUcp46nzQ951eaeQdO1pb+f8AInm0eSq0=";
+3 -3
pkgs/applications/networking/cluster/k8sgpt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "k8sgpt"; 5 - version = "0.3.6"; 5 + version = "0.3.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "k8sgpt-ai"; 9 9 repo = "k8sgpt"; 10 10 rev = "v${version}"; 11 - hash = "sha256-GAEAl59bzCffsh0XYa61R/AwwoGyFfG0M1m1U2aQiis="; 11 + hash = "sha256-61u6iGz1cloIKJ2UyyQGPOZJvnAax05sI4XA9NCpJso="; 12 12 }; 13 13 14 - vendorHash = "sha256-g0Lgu0aC25+/MYoRKMqTN8Iu8j/KA4G1DBjbhOfPpjg="; 14 + vendorHash = "sha256-vmTfiUuuHHRzCwgWWzE80bq3VceRSHqpEYV7Zo7SJAI="; 15 15 16 16 CGO_ENABLED = 0; 17 17
+3 -3
pkgs/applications/networking/cluster/rke/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "rke"; 5 - version = "1.4.5"; 5 + version = "1.4.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rancher"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-ldN0Fqh0V6JziTy5ml/i/un4/1o8MSeIAvrH5EyOeiw="; 11 + hash = "sha256-P/VvRoTcJuuRuoTT0zhebibBQrM6sz9Vv+qPrWY+B9Y="; 12 12 }; 13 13 14 - vendorHash = "sha256-wuEsG2VKU4F/phSqpzUN3wChD93V4AE7poVLJu6kpF0="; 14 + vendorHash = "sha256-MFXNwEEXtsEwB0Hcx8gn/Pz9dZM1zUUKhNYp5BlRUEk="; 15 15 16 16 subPackages = [ "." ]; 17 17
+3 -3
pkgs/applications/networking/cluster/zarf/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "zarf"; 8 - version = "0.27.1"; 8 + version = "0.28.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "defenseunicorns"; 12 12 repo = "zarf"; 13 13 rev = "v${version}"; 14 - hash = "sha256-R9naPTipxok29wRwVNEV66tKDykGyVQPXoWs80+MyGc="; 14 + hash = "sha256-TE7XP+qZkFxmms1iWDH8ziO8Rvkuo8cz8NdnMC/VU4s="; 15 15 }; 16 16 17 - vendorHash = "sha256-6hd1OEmEQ6bYdYa1UCSXfNDFM1aAiBF6tvPmAMulRyc="; 17 + vendorHash = "sha256-5HIRwOTZwElU2Ej8EhwmTtqtL6r+Hc7Vp8XjqCulo34="; 18 18 proxyVendor = true; 19 19 20 20 preBuild = ''
+3 -3
pkgs/applications/networking/seaweedfs/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "seaweedfs"; 10 - version = "3.52"; 10 + version = "3.53"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "seaweedfs"; 14 14 repo = "seaweedfs"; 15 15 rev = version; 16 - hash = "sha256-20z9gS4AWs0WiZir7fO/E1ou7H+sbySc1AX2IaPNng0="; 16 + hash = "sha256-VfKzptMxT2ra1uVzbL52EWjEGHTxmnh5xZGiQpRivTU="; 17 17 }; 18 18 19 - vendorHash = "sha256-sBvXNnZUblplDDHRy4agKSyafm2dBtS2PSMVO3MfckY="; 19 + vendorHash = "sha256-kL6huukrM4YeU7uvj7abXOEAvRhm1Nfp4JODW4BTy0A="; 20 20 21 21 subPackages = [ "weed" ]; 22 22
+13 -3
pkgs/applications/science/machine-learning/streamlit/default.nix
··· 17 17 , rich 18 18 , semver 19 19 , setuptools 20 + , tenacity 20 21 , toml 21 22 , tornado 22 23 , tzlocal ··· 26 27 27 28 buildPythonApplication rec { 28 29 pname = "streamlit"; 29 - version = "1.21.0"; 30 - format = "wheel"; # source currently requires pipenv 30 + version = "1.24.0"; 31 + format = "setuptools"; 31 32 32 33 src = fetchPypi { 33 34 inherit pname version format; 34 - hash = "sha256-BYYlmJUqkSbhZlLKpbyI7u6nsnc68lLi2szxyEzqrvQ="; 35 + hash = "sha256-NSX6zpTHh5JzPFbWOja0iEUVDjume7UKGa20xZdagiU="; 35 36 }; 36 37 37 38 propagatedBuildInputs = [ ··· 51 52 rich 52 53 semver 53 54 setuptools 55 + tenacity 54 56 toml 55 57 tornado 56 58 tzlocal ··· 58 60 watchdog 59 61 ]; 60 62 63 + # pypi package does not include the tests, but cannot be built with fetchFromGitHub 64 + doCheck = false; 65 + 66 + pythonImportsCheck = [ 67 + "streamlit" 68 + ]; 69 + 61 70 postInstall = '' 62 71 rm $out/bin/streamlit.cmd # remove windows helper 63 72 ''; 64 73 65 74 meta = with lib; { 66 75 homepage = "https://streamlit.io/"; 76 + changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; 67 77 description = "The fastest way to build custom ML tools"; 68 78 maintainers = with maintainers; [ yrashk ]; 69 79 license = licenses.asl20;
+2 -2
pkgs/applications/science/misc/snakemake/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "snakemake"; 8 - version = "7.25.3"; 8 + version = "7.29.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "snakemake"; 13 13 repo = pname; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-KrstajTocVX5Tw7aiPoJ9vxJ0nKF+jqJcYJKrJvBt0Q="; 15 + hash = "sha256-Y/z7asYSRgDyDWmvfmX4y6fOMSpp0X9uhDx327YF2TI="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+27
pkgs/applications/version-management/git-graph/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "git-graph"; 9 + version = "unstable-2023-01-14"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "mlange-42"; 13 + repo = pname; 14 + rev = "9bd54eb0aed6f108364bce9ad0bdff12077038fc"; 15 + hash = "sha256-tMM/mpt9yzZYSpnOGBuGLM0XTJiiyChfUrERMuyn3mQ="; 16 + }; 17 + 18 + cargoHash = "sha256-ZLF/l2HnIbmkayWXhjYr01M6lGaGiK2UYyp654ncxgo="; 19 + 20 + meta = with lib; { 21 + description = "Command line tool to show clear git graphs arranged for your branching model"; 22 + homepage = "https://github.com/mlange-42/git-graph"; 23 + license = licenses.mit; 24 + broken = stdenv.isDarwin; 25 + maintainers = with maintainers; [ cafkafk ]; 26 + }; 27 + }
+2 -2
pkgs/applications/version-management/git-quick-stats/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "git-quick-stats"; 14 - version = "2.4.0"; 14 + version = "2.5.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 repo = "git-quick-stats"; 18 18 owner = "arzzen"; 19 19 rev = version; 20 - sha256 = "sha256-QmHb5MWZpbZjc93XgdPFabgzT7S522ZN27p6tdL46Y0="; 20 + sha256 = "sha256-zUw0rjsYdH4mlqKXADvfqWCBM8tCL6BmVHq27JZLpd0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ makeWrapper ];
+47
pkgs/applications/video/cutecapture/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , libusb1 6 + , sfml 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "cutecapture"; 11 + version = "1.4.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Gotos"; 15 + repo = "cutecapture"; 16 + rev = "v${finalAttrs.version}"; 17 + hash = "sha256-V8BlZykh9zOTcEypu96Ft9/6CtjsybtD8lBsg9sF5sQ="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + autoreconfHook 22 + ]; 23 + 24 + buildInputs = [ 25 + libusb1 26 + sfml 27 + ]; 28 + 29 + postPatch = '' 30 + cat > get_version.sh <<EOF 31 + #!${stdenv.shell} 32 + echo ${lib.escapeShellArg finalAttrs.version} 33 + EOF 34 + ''; 35 + 36 + postInstall = '' 37 + install -Dm644 -t $out/lib/udev/rules.d 95-{3,}dscapture.rules 38 + ''; 39 + 40 + meta = with lib; { 41 + description = "A (3)DS capture software for Linux and Mac"; 42 + homepage = "https://github.com/Gotos/CuteCapture"; 43 + license = licenses.asl20; 44 + platforms = platforms.linux ++ platforms.darwin; 45 + maintainers = with maintainers; [ raphaelr ]; 46 + }; 47 + })
+2 -2
pkgs/data/fonts/sarasa-gothic/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "sarasa-gothic"; 5 - version = "0.41.2"; 5 + version = "0.41.3"; 6 6 7 7 src = fetchurl { 8 8 # Use the 'ttc' files here for a smaller closure size. 9 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/sarasa-gothic-ttc-${version}.7z"; 11 - hash = "sha256-AkfjtXeZkwzXLu81hS43vYPEMKl3TV1TnQ4ryUSnblc="; 11 + hash = "sha256-/VC9zhWC3jJuIXQ2fel6moLzrdsguPaylgfkY9FoClQ="; 12 12 }; 13 13 14 14 sourceRoot = ".";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "4744eb212287f09a540ba7de2a4837b504956ed4", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/4744eb212287f09a540ba7de2a4837b504956ed4.tar.gz", 4 - "sha256": "1lwdnjmndmixnv8saq68g45skf9yc3zq9npjm8gv9pdga7vy3m96", 5 - "msg": "Update from Hackage at 2023-05-31T06:44:49Z" 2 + "commit": "2951c03cb95b8892bd6d4eb89d135764c35a8d7f", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/2951c03cb95b8892bd6d4eb89d135764c35a8d7f.tar.gz", 4 + "sha256": "08sh9l9df2p51q4xhrl14jga48i0ad78fp7w3cccgcw1bqq4yxml", 5 + "msg": "Update from Hackage at 2023-06-19T20:13:38Z" 6 6 }
-4
pkgs/development/compilers/ghc/9.6.1.nix
··· 1 - import ./common-hadrian.nix rec { 2 - version = "9.6.1"; 3 - sha256 = "fe5ac909cb8bb087e235de97fa63aff47a8ae650efaa37a2140f4780e21f34cb"; 4 - }
+3 -3
pkgs/development/compilers/ghc/head.nix
··· 1 1 import ./common-hadrian.nix { 2 - version = "9.7.20230505"; 3 - rev = "983ce55815f2dd57f84ee86eee97febf7d80b470"; 4 - sha256 = "sha256-U+LZIe9WbF/DF5Zn8w8wkRf4JJHxgdY2ahM517bwRo4="; 2 + version = "9.7.20230527"; 3 + rev = "69fdbece5f6ca0a718bb9f1fef7b0ab57cf6b664"; 4 + sha256 = "13rf1d27wdich0kmbds55by9vj3wz0v9clba9p8qpwz7x7wpcjz2"; 5 5 }
+99 -65
pkgs/development/haskell-modules/configuration-common.nix
··· 157 157 "vector-tests-O0" 158 158 "vector-tests-O2" 159 159 ]; 160 + patches = [ 161 + # Workaround almost guaranteed floating point errors in test suite with quickcheck 2.14.3 162 + # https://github.com/haskell/vector/issues/460 163 + (pkgs.fetchpatch { 164 + name = "vector-quickcheck-2.14.3-float-workaround.patch"; 165 + url = "https://github.com/haskell/vector/commit/df8dd8e8e84005aa6b187b03cd502f3c6e18cf3c.patch"; 166 + sha256 = "040wg8mqlkdnrl5axy9wk0mlpn8rpc4vc4afpxignj9i7yc4pfjj"; 167 + stripLen = 1; 168 + }) 169 + ]; 160 170 }) super.vector; 161 171 172 + # Almost guaranteed failure due to floating point imprecision with QuickCheck-2.14.3 173 + # https://github.com/haskell/math-functions/issues/73 174 + math-functions = overrideCabal (drv: { 175 + testFlags = drv.testFlags or [] ++ [ "-p" "! /Kahan.t_sum_shifted/" ]; 176 + }) super.math-functions; 177 + 178 + # Deal with infinite and NaN values generated by QuickCheck-2.14.3 179 + inherit ( 180 + let 181 + aesonQuickCheckPatch = appendPatches [ 182 + (pkgs.fetchpatch { 183 + name = "aeson-quickcheck-2.14.3-double-workaround.patch"; 184 + url = "https://github.com/haskell/aeson/commit/58766a1916b4980792763bab74f0c86e2a7ebf20.patch"; 185 + sha256 = "1jk2xyi9g6dfjsi6hvpvkpmag3ivimipwy1izpbidf3wvc9cixs3"; 186 + }) 187 + ]; 188 + in 189 + { 190 + aeson = aesonQuickCheckPatch super.aeson; 191 + aeson_2_1_2_1 = aesonQuickCheckPatch super.aeson_2_1_2_1; 192 + } 193 + ) aeson 194 + aeson_2_1_2_1 195 + ; 196 + 197 + # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149 198 + orbits = dontCheck super.orbits; 199 + 200 + # 2023-06-28: Test error: https://hydra.nixos.org/build/225559546 201 + monad-bayes = dontCheck super.monad-bayes; 202 + 203 + # Disable tests failing on odd floating point numbers generated by QuickCheck 2.14.3 204 + # https://github.com/haskell/statistics/issues/205 205 + statistics = overrideCabal (drv: { 206 + testFlags = [ 207 + "-p" "! (/Pearson correlation/ || /t_qr/ || /Tests for: FDistribution.1-CDF is correct/)" 208 + ]; 209 + }) super.statistics; 210 + 162 211 # There are numerical tests on random data, that may fail occasionally 163 212 lapack = dontCheck super.lapack; 164 213 ··· 179 228 # successfully with recent versions of the compiler). 180 229 bin-package-db = null; 181 230 231 + # Unnecessarily requires alex >= 3.3 232 + # https://github.com/glguy/config-value/commit/c5558c8258598fab686c259bff510cc1b19a0c50#commitcomment-119514821 233 + config-value = doJailbreak super.config-value; 234 + 182 235 # waiting for release: https://github.com/jwiegley/c2hsc/issues/41 183 236 c2hsc = appendPatch (fetchpatch { 184 237 url = "https://github.com/jwiegley/c2hsc/commit/490ecab202e0de7fc995eedf744ad3cb408b53cc.patch"; ··· 201 254 ghc-heap-view = disableLibraryProfiling super.ghc-heap-view; 202 255 ghc-datasize = disableLibraryProfiling super.ghc-datasize; 203 256 ghc-vis = disableLibraryProfiling super.ghc-vis; 257 + 258 + # 2023-06-10: Too strict version bound on https://github.com/haskell/ThreadScope/issues/118 259 + threadscope = doJailbreak super.threadscope; 204 260 205 261 # patat main branch has an unreleased commit that fixes the build by 206 262 # relaxing restrictive upper boundaries. This can be removed once there's a ··· 569 625 webdriver-angular = dontCheck super.webdriver-angular; 570 626 xsd = dontCheck super.xsd; 571 627 zip-archive = dontCheck super.zip-archive; # https://github.com/jgm/zip-archive/issues/57 628 + 629 + # 2023-06-26: Test failure: https://hydra.nixos.org/build/224869905 630 + comfort-blas = dontCheck super.comfort-blas; 631 + 632 + # 2022-06-26: Too strict lower bound on semialign. 633 + trie-simple = doJailbreak super.trie-simple; 572 634 573 635 # These test suites run for ages, even on a fast machine. This is nuts. 574 636 Random123 = dontCheck super.Random123; ··· 1022 1084 # jailbreak tasty < 1.2 until servant-docs > 0.11.3 is on hackage. 1023 1085 snap-templates = doJailbreak super.snap-templates; # https://github.com/snapframework/snap-templates/issues/22 1024 1086 1025 - # Copy hledger man pages from data directory into the proper place. This code 1026 - # should be moved into the cabal2nix generator. 1027 - hledger = overrideCabal (drv: { 1028 - postInstall = '' 1029 - # Don't install files that don't belong into this package to avoid 1030 - # conflicts when hledger and hledger-ui end up in the same profile. 1031 - rm embeddedfiles/hledger-{api,ui,web}.* 1032 - for i in $(seq 1 9); do 1033 - for j in embeddedfiles/*.$i; do 1034 - mkdir -p $out/share/man/man$i 1035 - cp -v $j $out/share/man/man$i/ 1036 - done 1037 - done 1038 - mkdir -p $out/share/info 1039 - cp -v embeddedfiles/*.info* $out/share/info/ 1040 - ''; 1041 - }) super.hledger; 1042 - hledger_1_29_2 = doDistribute (super.hledger_1_29_2.override { 1043 - hledger-lib = self.hledger-lib_1_29_2; 1044 - }); 1045 - hledger-ui = overrideCabal (drv: { 1046 - postInstall = '' 1047 - for i in $(seq 1 9); do 1048 - for j in *.$i; do 1049 - mkdir -p $out/share/man/man$i 1050 - cp -v $j $out/share/man/man$i/ 1051 - done 1052 - done 1053 - mkdir -p $out/share/info 1054 - cp -v *.info* $out/share/info/ 1055 - ''; 1056 - }) super.hledger-ui; 1057 - hledger-web = overrideCabal (drv: { 1058 - preCheck = "export HOME=$TMPDIR"; 1059 - postInstall = '' 1060 - for i in $(seq 1 9); do 1061 - for j in *.$i; do 1062 - mkdir -p $out/share/man/man$i 1063 - cp -v $j $out/share/man/man$i/ 1064 - done 1065 - done 1066 - mkdir -p $out/share/info 1067 - cp -v *.info* $out/share/info/ 1068 - ''; 1069 - }) super.hledger-web; 1070 - 1071 - 1072 1087 # https://github.com/haskell-hvr/resolv/pull/6 1073 1088 resolv_0_1_1_2 = dontCheck super.resolv_0_1_1_2; 1074 1089 ··· 1394 1409 }); 1395 1410 }; 1396 1411 1397 - 1398 - # 2023-04-16: https://github.com/ghcjs/jsaddle/pull/137 1399 - jsaddle-webkit2gtk = lib.pipe super.jsaddle-webkit2gtk 1400 - [ 1401 - (appendPatch (fetchpatch { 1402 - url = "https://github.com/ghcjs/jsaddle/commit/f990366f19d23a8008d482572d52351c1a6f7215.patch"; 1403 - hash = "sha256-IbkJrlyG6q5rqMIhn//Dt3u6T314Pug+mQMwwe0LK5w="; 1404 - relative = "jsaddle-webkit2gtk"; 1405 - })) 1406 - (overrideCabal (old: { 1407 - postPatch = old.postPatch or "" + '' 1408 - sed -i 's/bytestring.*0.11/bytestring/' jsaddle-webkit2gtk.cabal 1409 - ''; 1410 - })) 1411 - ]; 1412 + # 2023-06-24: too strict upper bound on bytestring 1413 + jsaddle-webkit2gtk = 1414 + appendPatches [ 1415 + (pkgs.fetchpatch { 1416 + name = "jsaddle-webkit2gtk-ghc-9.2.patch"; 1417 + url = "https://github.com/ghcjs/jsaddle/commit/d2ce9e6be1dcba0ab417314a0b848012d1a47e03.diff"; 1418 + stripLen = 1; 1419 + includes = [ "jsaddle-webkit2gtk.cabal" ]; 1420 + sha256 = "16pcs3l7s8shhcnrhi80bwjgy7w23csd9b8qpmc5lnxn4wxr4c2r"; 1421 + }) 1422 + (pkgs.fetchpatch { 1423 + name = "jsaddle-webkit2gtk-ghc-9.6.patch"; 1424 + url = "https://github.com/ghcjs/jsaddle/commit/99b23dac8b4c5b23f5ed7963e681a46c1abdd1a5.patch"; 1425 + sha256 = "02rdifap9vzf6bhjp5siw68ghjrxh2phzd0kwjihf3hxi4a2xlp3"; 1426 + stripLen = 1; 1427 + includes = [ "jsaddle-webkit2gtk.cabal" ]; 1428 + }) 1429 + ] super.jsaddle-webkit2gtk; 1412 1430 1413 1431 # 2022-03-16: lens bound can be loosened https://github.com/ghcjs/jsaddle-dom/issues/19 1414 1432 jsaddle-dom = overrideCabal (old: { ··· 1483 1501 url = "https://github.com/jkff/splot/commit/a6710b05470d25cb5373481cf1cfc1febd686407.patch"; 1484 1502 sha256 = "1c5ck2ibag2gcyag6rjivmlwdlp5k0dmr8nhk7wlkzq2vh7zgw63"; 1485 1503 }) super.splot; 1504 + 1505 + # Fix build with newer monad-logger: https://github.com/obsidiansystems/monad-logger-extras/pull/5 1506 + monad-logger-extras = appendPatch (fetchpatch { 1507 + url = "https://github.com/obsidiansystems/monad-logger-extras/commit/55d414352e740a5ecacf313732074d9b4cf2a6b3.patch"; 1508 + sha256 = "sha256-xsQbr/QIrgWR0uwDPtV0NRTbVvP0tR9bY9NMe1JzqOw="; 1509 + }) super.monad-logger-extras; 1486 1510 1487 1511 # Fails with encoding problems, likely needs locale data. 1488 1512 # Test can be executed by adding which to testToolDepends and ··· 1584 1608 # so add them to build input and also wrap the resulting binary so they're in 1585 1609 # PATH. 1586 1610 # - Patch can be removed on next package set bump (for v0.2.11) 1587 - update-nix-fetchgit = let deps = [ pkgs.git pkgs.nix pkgs.nix-prefetch-git ]; 1611 + 1612 + # 2023-06-26: Test failure: https://hydra.nixos.org/build/225081865 1613 + update-nix-fetchgit = dontCheck (let deps = [ pkgs.git pkgs.nix pkgs.nix-prefetch-git ]; 1588 1614 in self.generateOptparseApplicativeCompletions [ "update-nix-fetchgit" ] (overrideCabal 1589 1615 (drv: { 1590 1616 buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; ··· 1593 1619 lib.makeBinPath deps 1594 1620 }" 1595 1621 ''; 1596 - }) (addTestToolDepends deps super.update-nix-fetchgit)); 1622 + }) (addTestToolDepends deps super.update-nix-fetchgit))); 1597 1623 1598 1624 # Raise version bounds: https://github.com/idontgetoutmuch/binary-low-level/pull/16 1599 1625 binary-strict = appendPatches [ ··· 2371 2397 sha256 = "1lpcz671mk5cwqffjfi9ncc0d67bmwgzypy3i37a2fhfmxd0y3nl"; 2372 2398 }) ((p: assert p.version == "4.0.0"; p) super.taffybar); 2373 2399 2400 + # Tests likely broke because of https://github.com/nick8325/quickcheck/issues/359, 2401 + # but fft is not on GitHub, so no issue reported. 2402 + fft = dontCheck super.fft; 2403 + 2374 2404 # lucid-htmx has restrictive upper bounds on lucid and servant: 2375 2405 # 2376 2406 # Setup: Encountered missing or private dependencies: ··· 2608 2638 2609 2639 # Tests fail due to the newly-build fourmolu not being in PATH 2610 2640 # https://github.com/fourmolu/fourmolu/issues/231 2611 - fourmolu_0_12_0_0 = dontCheck (super.fourmolu_0_12_0_0.overrideScope (lself: lsuper: { 2641 + fourmolu_0_13_0_0 = dontCheck (super.fourmolu_0_13_0_0.overrideScope (lself: lsuper: { 2612 2642 Cabal-syntax = lself.Cabal-syntax_3_10_1_0; 2613 2643 ghc-lib-parser = lself.ghc-lib-parser_9_6_2_20230523; 2614 2644 parsec = lself.parsec_3_1_16_1; ··· 2622 2652 url = "https://github.com/vincenthz/hs-gauge/commit/3d7776f41187c70c4f0b4517e6a7dde10dc02309.patch"; 2623 2653 hash = "sha256-4osUMo0cvTvyDTXF8lY9tQbFqLywRwsc3RkHIhqSriQ="; 2624 2654 }) super.gauge; 2655 + 2656 + # Flaky QuickCheck tests 2657 + # https://github.com/Haskell-Things/ImplicitCAD/issues/441 2658 + implicit = dontCheck super.implicit; 2625 2659 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+1 -1
pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
··· 172 172 ghc-exactprint = overrideCabal (drv: { 173 173 libraryHaskellDepends = with self; [ HUnit data-default fail filemanip free ghc-paths ordered-containers silently syb Diff ]; 174 174 }) 175 - self.ghc-exactprint_1_6_1_1; 175 + self.ghc-exactprint_1_6_1_3; 176 176 177 177 # needed to build servant 178 178 http-api-data = super.http-api-data_0_5_1;
+39 -11
pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
··· 76 76 turtle = doDistribute self.turtle_1_6_1; 77 77 aeson = doDistribute self.aeson_2_1_2_1; 78 78 memory = doDistribute self.memory_0_18_0; 79 + semigroupoids = doDistribute self.semigroupoids_6_0_0_1; 80 + bifunctors = doDistribute self.bifunctors_5_6_1; 81 + cabal-plan = doDistribute self.cabal-plan_0_7_3_0; 82 + base-compat = doDistribute self.base-compat_0_13_0; 83 + base-compat-batteries = doDistribute self.base-compat-batteries_0_13_0; 84 + semialign = doDistribute self.semialign_1_3; 85 + assoc = doDistribute self.assoc_1_1; 86 + strict = doDistribute self.strict_0_5; 79 87 80 88 ghc-lib = doDistribute self.ghc-lib_9_6_2_20230523; 81 89 ghc-lib-parser = doDistribute self.ghc-lib-parser_9_6_2_20230523; ··· 110 118 # 111 119 # Too strict bounds, waiting on Hackage release in nixpkgs 112 120 # 113 - 114 - # base >= 4.18 is allowed in those newer versions 115 - boring = assert !(self ? boring_0_2_1); doJailbreak super.boring; 116 - these = assert !(self ? assoc_1_2); doJailbreak super.these; 117 - 118 - # XXX: We probably should be using semigroupoids 6.0.1 which is intended for 9.6 119 - semigroupoids = doJailbreak super.semigroupoids; 120 - # XXX: 1.3 supports 9.6 properly, but is intended for bifunctors >= 5.6 121 - semialign = doJailbreak super.semialign; 122 121 123 122 # 124 123 # Compilation failure workarounds ··· 183 182 hiedb = dontCheck super.hiedb; 184 183 retrie = dontCheck (super.retrie); 185 184 185 + # break infinite recursion with foldable1-classes-compat's test suite, which depends on 'these'. 186 + these = doDistribute (super.these_1_2.override { foldable1-classes-compat = dontCheck super.foldable1-classes-compat; }); 187 + 186 188 ghc-exactprint = unmarkBroken (addBuildDepends (with self.ghc-exactprint.scope; [ 187 189 HUnit Diff data-default extra fail free ghc-paths ordered-containers silently syb 188 - ]) super.ghc-exactprint_1_7_0_0); 190 + ]) super.ghc-exactprint_1_7_0_1); 189 191 190 192 inherit (pkgs.lib.mapAttrs (_: doJailbreak ) super) 191 193 hls-cabal-plugin ··· 200 202 tree-diff 201 203 implicit-hie-cradle 202 204 focus 203 - hie-compat; 205 + hie-compat 206 + xmonad-contrib # mtl >=1 && <2.3 207 + dbus # template-haskell >=2.18 && <2.20, transformers <0.6, unix <2.8 208 + ; 209 + 210 + # Apply workaround for Cabal 3.8 bug https://github.com/haskell/cabal/issues/8455 211 + # by making `pkg-config --static` happy. Note: Cabal 3.9 is also affected, so 212 + # the GHC 9.6 configuration may need similar overrides eventually. 213 + X11-xft = __CabalEagerPkgConfigWorkaround super.X11-xft; 214 + # Jailbreaks for https://github.com/gtk2hs/gtk2hs/issues/323#issuecomment-1416723309 215 + glib = __CabalEagerPkgConfigWorkaround (doJailbreak super.glib); 216 + cairo = __CabalEagerPkgConfigWorkaround (doJailbreak super.cairo); 217 + pango = __CabalEagerPkgConfigWorkaround (doJailbreak super.pango); 218 + 219 + # Pending text-2.0 support https://github.com/gtk2hs/gtk2hs/issues/327 220 + gtk = doJailbreak super.gtk; 221 + 222 + # Doctest comments have bogus imports. 223 + bsb-http-chunked = dontCheck super.bsb-http-chunked; 224 + 225 + # Fix ghc-9.6.x build errors. 226 + libmpd = appendPatch 227 + (pkgs.fetchpatch { url = "https://github.com/vimus/libmpd-haskell/pull/138.patch"; 228 + sha256 = "sha256-CvvylXyRmoCoRJP2MzRwL0SBbrEzDGqAjXS+4LsLutQ="; 229 + }) 230 + super.libmpd; 231 + 204 232 }
+33 -5
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 100 100 - agda-snippets 101 101 - agda-unused 102 102 - AGI 103 + - ag-pictgen # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225557198 at 2023-06-28 103 104 - AhoCorasick 104 105 - aig 105 106 - airbrake ··· 222 223 - ascii-string 223 224 - ascii-vector-avc 224 225 - asif 226 + - asil # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225556674 at 2023-06-28 225 227 - asn1-ber-syntax 226 228 - asn1-codec 227 229 - asn1-data ··· 234 236 - assumpta 235 237 - ast-monad 236 238 - astrds 239 + - astro # failure in job https://hydra.nixos.org/build/225575437 at 2023-06-28 237 240 - async-combinators 238 241 - async-dejafu 239 242 - asynchronous-exceptions ··· 539 542 - cabal2doap 540 543 - cabal2ebuild 541 544 - cabal2ghci 545 + - cabal2json # dependency missing in job https://hydra.nixos.org/build/225572535 at 2023-06-28 542 546 - cabal-audit 543 547 - cabal-auto-expose 544 548 - cabal-bundle-clib ··· 668 672 - chaselev-deque 669 673 - chatty-text 670 674 - chatwork 675 + - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/225575902 at 2023-06-28 671 676 - checked 672 677 - Checked 673 678 - checkmate ··· 693 698 - cipher-des 694 699 - circle 695 700 - circlehs 701 + - circular-enum # dependency missing in job https://hydra.nixos.org/build/225566485 at 2023-06-28 696 702 - citeproc-hs 697 703 - cjk 698 704 - cj-token ··· 793 799 - commodities 794 800 - compact 795 801 - Compactable 802 + - compactable # dependency missing in job https://hydra.nixos.org/build/225560369 at 2023-06-28 796 803 - compact-list 797 804 - compact-map 798 805 - compact-sequences ··· 880 887 - contiguous-checked 881 888 - contiguous-fft 882 889 - continue 890 + - continued-fractions # failure in job https://hydra.nixos.org/build/225575101 at 2023-06-28 883 891 - contracheck-applicative 884 892 - Contract 885 893 - contra-tracers ··· 948 956 - crypto-keys-ssh 949 957 - crypto-multihash 950 958 - crypto-numbers 959 + - crypton-x509 # failure building test suite 'test-x509' in job https://hydra.nixos.org/build/225569131 at 2023-06-28 951 960 - crypto-pubkey-openssh 952 961 - crypto-random-effect 953 962 - crypto-simple ··· 969 978 - ctkl 970 979 - cuboid 971 980 - cuckoo-filter 981 + - cuckoo # test failure in job https://hydra.nixos.org/build/225558690 at 2023-06-28 972 982 - curl-aeson 973 983 - curl-runnings 974 984 - curly-expander ··· 1059 1069 - datetime-sb 1060 1070 - dawdle 1061 1071 - dawg 1072 + - daytripper # failure in job https://hydra.nixos.org/build/225578117 at 2023-06-28 1062 1073 - dbcleaner 1063 1074 - dbf 1064 1075 - DBlimited ··· 1407 1418 - eventsource-api 1408 1419 - eventsourced 1409 1420 - eventstore 1421 + - ewe # failure building executable 'ewe' in job https://hydra.nixos.org/build/225555839 at 2023-06-28 1410 1422 - exact-cover 1411 1423 - exact-real-positional 1412 1424 - except-exceptions ··· 1498 1510 - Feval 1499 1511 - fez-conf 1500 1512 - ffeed 1501 - - fft 1502 1513 - ffunctor 1503 1514 - fgl-extras-decompositions 1504 1515 - fib ··· 1598 1609 - fortran-src-extras 1599 1610 - foscam-filename 1600 1611 - fpe 1612 + - fp-ieee # test failure in job https://hydra.nixos.org/build/225561952 at 2023-06-28 1601 1613 - FPretty 1602 1614 - fptest 1603 1615 - fquery ··· 1630 1642 - fresnel 1631 1643 - friday-devil 1632 1644 - friday-scale-dct 1645 + - friday # test failure in job https://hydra.nixos.org/build/225561573 at 2023-06-28 1633 1646 - frown 1634 1647 - frp-arduino 1635 1648 - frpnow ··· 1957 1970 - hadoop-streaming 1958 1971 - hafar 1959 1972 - Haggressive 1973 + - HaGL # test failure in job https://hydra.nixos.org/build/225563740 at 2023-06-28 1960 1974 - hahp 1961 1975 - haiji 1962 1976 - hail ··· 1982 1996 - HaLeX 1983 1997 - halfs 1984 1998 - half-space 1985 - - halide-haskell # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/212823532 at 2023-03-22 1986 1999 - halipeto 1987 2000 - halive 1988 2001 - halma ··· 2747 2760 - instant-generics 2748 2761 - instapaper-sender 2749 2762 - instinct 2763 + - integer-conversion # dependency missing in job https://hydra.nixos.org/build/225563519 at 2023-06-28 2750 2764 - integer-pure 2751 2765 - integer-simple 2752 2766 - intensional-datatys ··· 2931 2945 - keccak 2932 2946 - keenser 2933 2947 - keera-hails-reactivevalues 2948 + - keid-render-basic # failure in job https://hydra.nixos.org/build/225578420 at 2023-06-28 2934 2949 - keid-ui-dearimgui 2935 2950 - keiretsu 2936 2951 - kempe ··· 3191 3206 - lookup-tables 3192 3207 - loopbreaker 3193 3208 - loop-dsl 3209 + - looper # failure building test suite 'looper-test' in job https://hydra.nixos.org/build/225553593 at 2023-06-28 3194 3210 - loops 3195 3211 - loop-while 3196 3212 - loopy ··· 3357 3373 - midi-simple 3358 3374 - midisurface # dependency missing in job https://hydra.nixos.org/build/217805409 at 2023-04-29 3359 3375 - midi-utils 3376 + - mighttpd2 # failure in job https://hydra.nixos.org/build/225576224 at 2023-06-28 3360 3377 - mighty-metropolis # test failure in job https://hydra.nixos.org/build/214599789 at 2023-04-07 3361 3378 - migrant-postgresql-simple 3362 3379 - mikmod ··· 3448 3465 - monad-stlike-io 3449 3466 - monad-task 3450 3467 - monad-throw-exit 3468 + - monad-time-effectful # failure building library in job https://hydra.nixos.org/build/225552858 at 2023-06-28 3451 3469 - monad-timing 3452 3470 - monad-tree 3453 3471 - monad-tx ··· 4114 4132 - polysemy-socket 4115 4133 - polysemy-video 4116 4134 - polysemy-vinyl 4135 + - poly # test failure in job https://hydra.nixos.org/build/225574715 at 2023-06-28 4117 4136 - polytypeable 4118 4137 - pomaps 4119 4138 - pomohoro ··· 4607 4626 - SableCC2Hs 4608 4627 - safe-buffer-monad 4609 4628 - safe-coerce 4629 + - safe-coloured-text-gen # test failure in job https://hydra.nixos.org/build/225565471 at 2023-06-28 4630 + - safe-coloured-text-layout # test failure in job https://hydra.nixos.org/build/225562935 at 2023-06-28 4610 4631 - safecopy-migrate 4611 4632 - safecopy-store 4612 4633 - safe-freeze ··· 4823 4844 - signable 4824 4845 - signable-haskell-protoc 4825 4846 - signed-multiset 4847 + - significant-figures # test failure in job https://hydra.nixos.org/build/225555677 at 2023-06-28 4826 4848 - simd 4827 4849 - simfin 4828 4850 - simple-actors ··· 4988 5010 - sousit 4989 5011 - soyuz 4990 5012 - spacepart 5013 + - spade # dependency missing in job https://hydra.nixos.org/build/225563353 at 2023-06-28 4991 5014 - spake2 4992 5015 - spanout 4993 5016 - spars ··· 5063 5086 - statistics-dirichlet 5064 5087 - statistics-fusion 5065 5088 - statistics-hypergeometric-genvar 5089 + - statistics-skinny # failure in job https://hydra.nixos.org/build/225576019 at 2023-06-28 5066 5090 - stats 5067 5091 - statsd 5068 5092 - statvfs ··· 5196 5220 - sws 5197 5221 - syb-extras 5198 5222 - syb-with-class-instances-text 5199 - - sydtest 5223 + - sydtest-hedis # test failure in job https://hydra.nixos.org/build/225562212 at 2023-06-28 5224 + - sydtest-mongo # failure in job https://hydra.nixos.org/build/225574398 at 2023-06-28 5225 + - sydtest-persistent-postgresql # test failure in job https://hydra.nixos.org/build/225560820 at 2023-06-28 5226 + - sydtest-persistent-sqlite # test failure in job https://hydra.nixos.org/build/225566898 at 2023-06-28 5227 + - sydtest-rabbitmq # test failure in job https://hydra.nixos.org/build/225569272 at 2023-06-28 5228 + - sydtest-webdriver # test failure in job https://hydra.nixos.org/build/225552802 at 2023-06-28 5200 5229 - syfco 5201 5230 - sym 5202 5231 - symantic ··· 5365 5394 - thorn 5366 5395 - th-pprint 5367 5396 - threadmanager 5368 - - threadscope 5369 5397 - thread-supervisor # test failure in job https://hydra.nixos.org/build/214156434 at 2023-03-29 5370 5398 - threepenny-editors 5371 5399 - threepenny-gui-contextmenu ··· 5390 5418 - tidal-vis 5391 5419 - tie-knot 5392 5420 - tiempo 5421 + - tiger # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225568410 at 2023-06-28 5393 5422 - TigerHash 5394 5423 - tightrope 5395 5424 - tikzsd ··· 5669 5698 - util-plus 5670 5699 - util-primitive 5671 5700 - uuagc-bootstrap 5672 - - uuagc-cabal 5673 5701 - uuagc-diagrams 5674 5702 - uu-cco 5675 5703 - uuid-aeson
+8
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 53 53 - dhall-nixpkgs == 1.0.9 54 54 - dhall-nix == 1.1.25 55 55 56 + # 2023-06-24: HLS at large can't deal with lsp-2.0.0.0 yet 57 + - lsp == 1.6.* 58 + - lsp-types == 1.6.* 59 + - lsp-test == 0.14.* 60 + 56 61 extra-packages: 57 62 - Cabal == 2.2.* # required for jailbreak-cabal etc. 58 63 - Cabal == 2.4.* # required for cabal-install etc. ··· 310 315 - streamly 311 316 - streamly-bytestring 312 317 - taskwarrior 318 + - threadscope 313 319 - tz 314 320 - weeder 315 321 - witch ··· 699 705 gi-gtkosxapplication: [ platforms.darwin ] 700 706 gtk-mac-integration: [ platforms.darwin ] 701 707 gtk3-mac-integration: [ platforms.darwin ] 708 + halide-haskell: [ platforms.linux ] 709 + halide-JuicyPixels: [ platforms.linux ] 702 710 hommage-ds: [ platforms.windows ] 703 711 hpapi: [ platforms.linux ] # limited by pkgs.papi 704 712 hsignal: [ platforms.x86 ] # -msse2
+60 -59
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 20.23 1 + # Stackage LTS 20.26 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 10 10 - ace ==0.6 11 11 - acid-state ==0.16.1.2 12 12 - action-permutations ==0.0.0.1 13 - - active ==0.2.0.17 13 + - active ==0.2.0.18 14 14 - ad ==4.5.4 15 15 - ad-delcont ==0.3.0.0 16 16 - adjunctions ==4.4.2 ··· 33 33 - aeson-picker ==0.1.0.6 34 34 - aeson-pretty ==0.8.9 35 35 - aeson-qq ==0.8.4 36 - - aeson-schemas ==1.4.0.1 36 + - aeson-schemas ==1.4.1.0 37 37 - aeson-typescript ==0.4.2.0 38 38 - aeson-value-parser ==0.19.7.1 39 39 - aeson-yak ==0.1.1.3 ··· 148 148 - base64-string ==0.2 149 149 - base-compat ==0.12.2 150 150 - base-compat-batteries ==0.12.2 151 - - basement ==0.0.15 151 + - basement ==0.0.16 152 152 - base-orphans ==0.8.8.2 153 153 - base-prelude ==1.6.1 154 154 - base-unicode-symbols ==0.2.4.2 ··· 157 157 - bazel-runfiles ==0.12 158 158 - bbdb ==0.8 159 159 - bcp47 ==0.2.0.6 160 - - bcp47-orphans ==0.1.0.5 160 + - bcp47-orphans ==0.1.0.6 161 161 - bcrypt ==0.0.11 162 162 - beam-core ==0.9.2.1 163 163 - beam-migrate ==0.5.1.2 164 164 - beam-postgres ==0.5.2.1 165 165 - beam-sqlite ==0.5.1.2 166 - - bech32 ==1.1.2 166 + - bech32 ==1.1.3 167 167 - bech32-th ==1.1.1 168 168 - bench ==1.0.12 169 169 - benchpress ==0.2.2.22 ··· 203 203 - bitvec ==1.1.4.0 204 204 - bitwise-enum ==1.0.1.0 205 205 - blake2 ==0.3.0 206 - - Blammo ==1.1.1.2 206 + - Blammo ==1.1.2.0 207 207 - blank-canvas ==0.7.3 208 208 - blanks ==0.5.0 209 209 - blas-carray ==0.1.0.2 ··· 214 214 - blaze-builder ==0.4.2.2 215 215 - blaze-html ==0.9.1.2 216 216 - blaze-markup ==0.8.2.8 217 - - blaze-svg ==0.3.6.1 217 + - blaze-svg ==0.3.7 218 218 - blaze-textual ==0.2.3.1 219 219 - bloodhound ==0.21.0.0 220 220 - bm ==0.1.1.0 ··· 282 282 - c2hs ==0.28.8 283 283 - cabal2spec ==2.6.3 284 284 - cabal-appimage ==0.3.0.5 285 - - cabal-clean ==0.2.20220819 285 + - cabal-clean ==0.2.20230609 286 286 - cabal-debian ==5.2.1 287 287 - cabal-doctest ==1.0.9 288 288 - cabal-file ==0.1.1 ··· 378 378 - colour ==2.3.6 379 379 - columnar ==1.0.0.0 380 380 - combinatorial ==0.1.1 381 - - comfort-array ==0.5.2.1 381 + - comfort-array ==0.5.2.3 382 382 - comfort-array-shape ==0.0 383 383 - comfort-fftw ==0.0.0.1 384 384 - comfort-graph ==0.0.3.2 ··· 403 403 - composition-extra ==2.0.0 404 404 - composition-prelude ==3.0.0.2 405 405 - concise ==0.1.0.1 406 - - concurrency ==1.11.0.2 406 + - concurrency ==1.11.0.3 407 407 - concurrent-extra ==0.7.0.12 408 408 - concurrent-output ==1.10.18 409 409 - concurrent-split ==0.0.1.1 ··· 448 448 - copr-api ==0.1.0 449 449 - core-data ==0.3.9.1 450 450 - core-program ==0.6.8.0 451 - - core-telemetry ==0.2.9.1 451 + - core-telemetry ==0.2.9.3 452 452 - core-text ==0.3.8.1 453 453 - countable ==1.2 454 454 - country ==0.2.3 ··· 524 524 - data-default-instances-text ==0.0.1 525 525 - data-default-instances-unordered-containers ==0.0.1 526 526 - data-default-instances-vector ==0.0.1 527 - - data-diverse ==4.7.0.0 527 + - data-diverse ==4.7.1.0 528 528 - datadog ==0.3.0.0 529 529 - data-dword ==0.3.2.1 530 530 - data-endian ==0.1.1 ··· 554 554 - dawg-ord ==0.5.1.2 555 555 - dbcleaner ==0.1.3 556 556 - DBFunctor ==0.1.2.1 557 - - dbus ==1.2.28 557 + - dbus ==1.2.29 558 558 - dbus-hslogger ==0.1.0.1 559 559 - debian ==4.0.4 560 560 - debian-build ==0.10.2.1 ··· 564 564 - declarative ==0.5.4 565 565 - deepseq-generics ==0.2.0.0 566 566 - deferred-folds ==0.9.18.3 567 - - dejafu ==2.4.0.4 567 + - dejafu ==2.4.0.5 568 568 - dense-linear-algebra ==0.1.0.0 569 569 - dependent-map ==0.4.0.0 570 570 - dependent-sum ==0.7.2.0 ··· 590 590 - diagrams-core ==1.5.1 591 591 - diagrams-lib ==1.4.5.2 592 592 - diagrams-postscript ==1.5.1.1 593 - - diagrams-rasterific ==1.4.2.2 593 + - diagrams-rasterific ==1.4.2.3 594 594 - diagrams-solve ==0.1.3 595 595 - diagrams-svg ==1.4.3.1 596 596 - di-core ==1.0.4 ··· 617 617 - dlist ==1.0 618 618 - dlist-instances ==0.1.1.1 619 619 - dlist-nonempty ==0.1.2 620 - - dns ==4.1.0 620 + - dns ==4.1.1 621 621 - docker ==0.7.0.1 622 622 - dockerfile ==0.2.0 623 623 - doclayout ==0.4.0.1 ··· 683 683 - elm-bridge ==0.8.2 684 684 - elm-core-sources ==1.0.0 685 685 - elm-export ==0.6.0.1 686 - - elynx ==0.7.2.0 687 - - elynx-markov ==0.7.2.0 688 - - elynx-nexus ==0.7.2.0 689 - - elynx-seq ==0.7.2.0 690 - - elynx-tools ==0.7.2.0 691 - - elynx-tree ==0.7.2.0 686 + - elynx ==0.7.2.1 687 + - elynx-markov ==0.7.2.1 688 + - elynx-nexus ==0.7.2.1 689 + - elynx-seq ==0.7.2.1 690 + - elynx-tools ==0.7.2.1 691 + - elynx-tree ==0.7.2.1 692 692 - emacs-module ==0.1.1.1 693 693 - email-validate ==2.3.2.18 694 694 - emojis ==0.1.2 ··· 713 713 - errors ==2.3.0 714 714 - errors-ext ==0.4.2 715 715 - ersatz ==0.4.13 716 - - esqueleto ==3.5.9.0 716 + - esqueleto ==3.5.10.0 717 717 - essence-of-live-coding ==0.2.7 718 718 - essence-of-live-coding-gloss ==0.2.7 719 719 - essence-of-live-coding-pulse ==0.2.7 ··· 814 814 - FontyFruity ==0.5.3.5 815 815 - force-layout ==0.4.0.6 816 816 - foreign-store ==0.2 817 - - ForestStructures ==0.0.1.0 817 + - ForestStructures ==0.0.1.1 818 818 - forkable-monad ==0.2.0.3 819 819 - forma ==1.2.0 820 820 - formatn ==0.2.2 821 821 - format-numbers ==0.1.0.1 822 822 - formatting ==7.1.3 823 823 - fortran-src ==0.12.0 824 - - foundation ==0.0.29 824 + - foundation ==0.0.30 825 825 - fourmolu ==0.9.0.0 826 826 - freckle-app ==1.3.0.0 827 827 - free ==5.1.10 ··· 840 840 - funcmp ==1.9 841 841 - function-builder ==0.3.0.1 842 842 - functor-classes-compat ==2.0.0.2 843 - - fused-effects ==1.1.2.1 843 + - fused-effects ==1.1.2.2 844 844 - fusion-plugin ==0.2.6 845 845 - fusion-plugin-types ==0.1.0 846 846 - fuzzcheck ==0.1.1 ··· 901 901 - genvalidity-uuid ==1.0.0.1 902 902 - genvalidity-vector ==1.0.0.0 903 903 - geodetics ==0.1.2 904 - - geojson ==4.1.0 904 + - geojson ==4.1.1 905 905 - getopt-generics ==0.13.1.0 906 906 - ghc-bignum-orphans ==0.1.1 907 907 - ghc-byteorder ==4.11.0.0.10 ··· 945 945 - gi-gobject ==2.0.30 946 946 - gi-graphene ==1.0.7 947 947 - gi-gtk ==3.0.41 948 - - gi-gtk-hs ==0.3.14 948 + - gi-gtk-hs ==0.3.16 949 949 - gi-gtksource ==3.0.28 950 950 - gi-harfbuzz ==0.0.9 951 951 - gi-javascriptcore ==4.0.27 ··· 954 954 - githash ==0.1.6.3 955 955 - github ==0.28.0.1 956 956 - github-release ==2.0.0.6 957 - - github-rest ==1.1.2 957 + - github-rest ==1.1.3 958 958 - github-types ==0.2.1 959 959 - github-webhooks ==0.16.0 960 960 - gitlab-haskell ==1.0.0.1 ··· 985 985 - gpolyline ==0.1.0.1 986 986 - graph-core ==0.3.0.0 987 987 - graphite ==0.10.0.1 988 - - graphql-client ==1.2.1 988 + - graphql-client ==1.2.2 989 989 - graphs ==0.7.2 990 990 - graphula ==2.0.2.2 991 991 - graphviz ==2999.20.1.0 ··· 1027 1027 - hashmap ==1.3.3 1028 1028 - hashtables ==1.3.1 1029 1029 - haskeline ==0.8.2.1 1030 - - haskell-gi ==0.26.4 1031 - - haskell-gi-base ==0.26.3 1030 + - haskell-gi ==0.26.7 1031 + - haskell-gi-base ==0.26.4 1032 1032 - haskell-gi-overloading ==1.0 1033 1033 - haskell-lexer ==1.1.1 1034 - - HaskellNet ==0.6.0.2 1034 + - HaskellNet ==0.6.1.2 1035 1035 - HaskellNet-SSL ==0.3.4.4 1036 1036 - haskell-src ==1.0.4 1037 1037 - haskell-src-exts ==1.23.1 ··· 1094 1094 - hindent ==5.3.4 1095 1095 - hinfo ==0.0.3.0 1096 1096 - hinotify ==0.4.1 1097 - - hint ==0.9.0.6 1097 + - hint ==0.9.0.7 1098 1098 - hip ==1.5.6.0 1099 1099 - histogram-fill ==0.9.1.0 1100 1100 - hjsmin ==0.2.0.4 ··· 1223 1223 - http-client-restricted ==0.0.5 1224 1224 - http-client-tls ==0.3.6.1 1225 1225 - http-common ==0.8.3.4 1226 - - http-conduit ==2.3.8 1226 + - http-conduit ==2.3.8.1 1227 1227 - http-date ==0.0.11 1228 1228 - http-directory ==0.1.10 1229 1229 - http-download ==0.2.0.0 ··· 1329 1329 - interpolatedstring-perl6 ==1.0.2 1330 1330 - interpolation ==0.1.1.2 1331 1331 - Interpolation ==0.3.0 1332 - - IntervalMap ==0.6.2.0 1332 + - IntervalMap ==0.6.2.1 1333 1333 - intervals ==0.9.2 1334 1334 - intset-imperative ==0.1.0.0 1335 1335 - invariant ==0.6.1 ··· 1551 1551 - mcmc ==0.8.2.0 1552 1552 - mcmc-types ==1.0.3 1553 1553 - median-stream ==0.7.0.0 1554 - - med-module ==0.1.2.2 1554 + - med-module ==0.1.3 1555 1555 - megaparsec ==9.2.2 1556 1556 - megaparsec-tests ==9.2.2 1557 1557 - mega-sdist ==0.4.2.1 ··· 1620 1620 - monad-journal ==0.8.1 1621 1621 - monadlist ==0.0.2 1622 1622 - monadloc ==0.7.1 1623 - - monad-logger ==0.3.39 1623 + - monad-logger ==0.3.40 1624 1624 - monad-logger-aeson ==0.4.0.4 1625 1625 - monad-logger-json ==0.1.0.0 1626 1626 - monad-logger-logstash ==0.2.0.2 ··· 1697 1697 - nanospec ==0.2.2 1698 1698 - nanovg ==0.8.1.0 1699 1699 - nats ==1.1.2 1700 - - natural-arithmetic ==0.1.3.0 1700 + - natural-arithmetic ==0.1.4.0 1701 1701 - natural-induction ==0.2.0.0 1702 1702 - natural-sort ==0.1.2 1703 1703 - natural-transformation ==0.4 ··· 1707 1707 - netlib-carray ==0.1 1708 1708 - netlib-comfort-array ==0.0.0.2 1709 1709 - netlib-ffi ==0.1.1 1710 - - net-mqtt ==0.8.2.5 1710 + - net-mqtt ==0.8.3.0 1711 1711 - net-mqtt-lens ==0.1.1.0 1712 1712 - netpbm ==1.0.4 1713 1713 - netrc ==0.2.0.0 ··· 1724 1724 - network-messagepack-rpc-websocket ==0.1.1.1 1725 1725 - network-multicast ==0.3.2 1726 1726 - Network-NineP ==0.4.7.2 1727 - - network-run ==0.2.4 1727 + - network-run ==0.2.5 1728 1728 - network-simple ==0.4.5 1729 1729 - network-simple-tls ==0.4.1 1730 1730 - network-transport ==0.5.6 ··· 1765 1765 - NumInstances ==1.4 1766 1766 - numtype-dk ==0.5.0.3 1767 1767 - nuxeo ==0.3.2 1768 - - nvim-hs ==2.3.2.1 1769 - - nvim-hs-contrib ==2.0.0.1 1768 + - nvim-hs ==2.3.2.3 1769 + - nvim-hs-contrib ==2.0.0.2 1770 1770 - nvim-hs-ghcid ==2.0.1.0 1771 1771 - oauthenticated ==0.3.0.0 1772 1772 - ObjectName ==1.1.0.2 ··· 1782 1782 - OneTuple ==0.3.1 1783 1783 - Only ==0.1 1784 1784 - oo-prototypes ==0.1.0.0 1785 - - opaleye ==0.9.6.2 1785 + - opaleye ==0.9.7.0 1786 1786 - OpenAL ==1.7.0.5 1787 1787 - openapi3 ==3.2.3 1788 1788 - open-browser ==0.2.1.0 ··· 1945 1945 - polysemy-several ==0.1.1.0 1946 1946 - polysemy-webserver ==0.2.1.1 1947 1947 - polysemy-zoo ==0.8.1.0 1948 - - pontarius-xmpp ==0.5.6.5 1948 + - pontarius-xmpp ==0.5.6.6 1949 1949 - pooled-io ==0.0.2.3 1950 1950 - portable-lines ==0.1 1951 1951 - port-utils ==0.2.1.0 ··· 2041 2041 - qrcode-juicypixels ==0.8.5 2042 2042 - quadratic-irrational ==0.1.1 2043 2043 - QuasiText ==0.1.2.6 2044 - - QuickCheck ==2.14.2 2044 + - QuickCheck ==2.14.3 2045 2045 - quickcheck-arbitrary-adt ==0.3.1.0 2046 2046 - quickcheck-assertions ==0.3.0 2047 2047 - quickcheck-classes ==0.6.5.0 ··· 2051 2051 - quickcheck-io ==0.2.0 2052 2052 - quickcheck-simple ==0.1.1.1 2053 2053 - quickcheck-special ==0.1.0.6 2054 - - quickcheck-state-machine ==0.7.2 2054 + - quickcheck-state-machine ==0.7.3 2055 2055 - quickcheck-text ==0.1.2.1 2056 2056 - quickcheck-transformer ==0.3.1.2 2057 2057 - quickcheck-unicode ==1.0.1.0 ··· 2205 2205 - sample-frame-np ==0.0.5 2206 2206 - sampling ==0.3.5 2207 2207 - sandi ==0.5 2208 - - sandwich ==0.1.3.2 2208 + - sandwich ==0.1.4.0 2209 2209 - sandwich-hedgehog ==0.1.3.0 2210 2210 - sandwich-quickcheck ==0.1.0.7 2211 2211 - sandwich-slack ==0.1.1.0 ··· 2289 2289 - servant-static-th ==1.0.0.0 2290 2290 - servant-subscriber ==0.7.0.0 2291 2291 - servant-swagger ==1.1.11 2292 - - servant-swagger-ui ==0.3.5.4.5.0 2292 + - servant-swagger-ui ==0.3.5.5.0.0 2293 2293 - servant-swagger-ui-core ==0.3.5 2294 2294 - servant-swagger-ui-redoc ==0.3.4.1.22.3 2295 2295 - servant-websockets ==2.0.0 ··· 2362 2362 - skylighting-format-latex ==0.1 2363 2363 - slack-progressbar ==0.1.0.1 2364 2364 - slave-thread ==1.1.0.2 2365 - - slynx ==0.7.2.0 2366 - - smallcheck ==1.2.1 2365 + - slynx ==0.7.2.1 2366 + - smallcheck ==1.2.1.1 2367 2367 - smtp-mail ==0.3.0.0 2368 2368 - snowflake ==0.1.1.1 2369 2369 - socket ==0.8.3.0 ··· 2576 2576 - termbox-bindings-c ==0.1.0 2577 2577 - termbox-bindings-hs ==0.1.0 2578 2578 - termbox-tea ==0.1.0 2579 - - terminal-progress-bar ==0.4.1 2579 + - terminal-progress-bar ==0.4.2 2580 2580 - terminal-size ==0.3.4 2581 2581 - termonad ==4.4.0.0 2582 2582 - test-framework ==0.8.2.0 ··· 2604 2604 - text-regex-replace ==0.1.1.5 2605 2605 - text-rope ==0.2 2606 2606 - text-short ==0.1.5 2607 - - text-show ==3.10.2 2607 + - text-show ==3.10.3 2608 2608 - text-show-instances ==3.9.5 2609 2609 - text-zipper ==0.12 2610 2610 - tfp ==1.0.2 ··· 2665 2665 - tls ==1.5.8 2666 2666 - tls-debug ==0.4.8 2667 2667 - tls-session-manager ==0.0.4 2668 - - tlynx ==0.7.2.0 2668 + - tlynx ==0.7.2.1 2669 2669 - tmapchan ==0.0.3 2670 2670 - tmapmvar ==0.0.4 2671 2671 - tmp-postgres ==1.34.1.0 ··· 2673 2673 - tmp-proc-postgres ==0.5.2.2 2674 2674 - tmp-proc-rabbitmq ==0.5.1.2 2675 2675 - tmp-proc-redis ==0.5.1.2 2676 - - toml-reader ==0.2.0.0 2676 + - toml-reader ==0.2.1.0 2677 2677 - tophat ==1.0.5.1 2678 2678 - topograph ==1.0.0.2 2679 2679 - torrent ==10000.1.3 ··· 2681 2681 - tostring ==0.2.1.1 2682 2682 - tracing ==0.0.7.3 2683 2683 - tracing-control ==0.0.7.3 2684 - - transaction ==0.1.1.3 2684 + - transaction ==0.1.1.4 2685 2685 - transformers-base ==0.4.6 2686 2686 - transformers-compat ==0.7.2 2687 2687 - transformers-either ==0.1.4 ··· 2771 2771 - unix-compat ==0.5.4 2772 2772 - unix-time ==0.4.9 2773 2773 - unjson ==0.15.4 2774 - - unliftio ==0.2.24.0 2774 + - unliftio ==0.2.25.0 2775 2775 - unliftio-core ==0.2.1.0 2776 2776 - unliftio-path ==0.0.2.0 2777 2777 - unliftio-pool ==0.2.2.0 ··· 2827 2827 - vector-bytes-instances ==0.1.1 2828 2828 - vector-circular ==0.1.4 2829 2829 - vector-extras ==0.2.8 2830 + - vector-hashtables ==0.1.1.3 2830 2831 - vector-instances ==3.4.2 2831 2832 - vector-mmap ==0.0.3 2832 2833 - vector-rotcev ==0.1.0.2 ··· 2966 2967 - xor ==0.0.1.1 2967 2968 - xss-sanitize ==0.3.7.2 2968 2969 - xxhash-ffi ==0.2.0.0 2969 - - yaml ==0.11.11.0 2970 + - yaml ==0.11.11.1 2970 2971 - yaml-unscrambler ==0.1.0.13 2971 2972 - Yampa ==0.13.7 2972 2973 - yarn-lock ==0.6.5
+17 -43
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 240 240 - JsContracts 241 241 - JsonGrammar 242 242 - JuPyTer-notebook 243 - - JuicyPixels-scale-dct 244 243 - JunkDB-driver-gdbm 245 244 - JunkDB-driver-hashtables 246 245 - KiCS ··· 287 286 - MuCheck-SmallCheck 288 287 - MutationOrder 289 288 - NGLess 289 + - NTRU 290 290 - NaperianNetCDF 291 291 - NaturalLanguageAlphabets 292 292 - NearContextAlgebra ··· 452 452 - aeson-native 453 453 - affine 454 454 - afv 455 - - ag-pictgen 456 455 - agda-server 457 456 - agda-snippets-hakyll 458 457 - agentx ··· 660 659 - apiary-websockets 661 660 - apis 662 661 - apotiki 663 - - appendful-persistent 664 662 - approx-rand-test 665 663 - arbor-monad-metric-datadog 666 664 - archive-tar-bytestring ··· 680 678 - ascii-th_1_2_0_0 681 679 - ascii_1_7_0_0 682 680 - asic 683 - - asil 684 681 - assert4hs-hspec 685 682 - assert4hs-tasty 686 683 - assimp ··· 810 807 - bitcoin-tx 811 808 - bitcoin-types 812 809 - bitcoind-regtest 813 - - bitfield 814 810 - bitly-cli 815 811 - bitmaps 816 812 - bittorrent ··· 881 877 - cabal-query 882 878 - cabal-test 883 879 - cabal2arch 884 - - cabal2json 885 880 - cabalmdvrpm 886 881 - cabalrpmdeps 887 882 - caffegraph ··· 1033 1028 - compact-mutable 1034 1029 - compact-mutable-vector 1035 1030 - compact-socket 1036 - - compactable 1037 1031 - compdata-automata 1038 1032 - compdata-dags 1039 1033 - compdata-param ··· 1124 1118 - cryptoids 1125 1119 - cryptoids-class 1126 1120 - cryptol 1121 + - crypton-connection 1122 + - crypton-x509-store 1123 + - crypton-x509-system 1124 + - crypton-x509-validation 1127 1125 - crystalfontz 1128 1126 - csound-catalog 1129 1127 - csound-controllers ··· 1135 1133 - csv-enumerator 1136 1134 - ctpl 1137 1135 - cube 1138 - - cuckoo 1139 1136 - cv-combinators 1140 1137 - cypher 1141 1138 - daino ··· 1397 1394 - eventuo11y-otel 1398 1395 - eventuo11y-prometheus 1399 1396 - every-bit-counts 1400 - - ewe 1401 1397 - exference 1402 1398 - exinst-aeson 1403 1399 - exinst-base ··· 1513 1509 - fpnla-examples 1514 1510 - frame-markdown 1515 1511 - freckle-app 1516 - - freckle-app_1_9_0_2 1512 + - freckle-app_1_9_0_3 1517 1513 - free-functors 1518 1514 - free-game 1519 1515 - free-theorems-counterexamples ··· 1524 1520 - freelude 1525 1521 - freer-converse 1526 1522 - fresnel-fused-effects 1523 + - friday-juicypixels 1527 1524 - front 1528 1525 - frpnow-gloss 1529 1526 - frpnow-gtk ··· 1574 1571 - geni-util 1575 1572 - geniconvert 1576 1573 - geniserver 1577 - - genvalidity-appendful 1578 - - genvalidity-dirforest 1579 1574 - genvalidity-network-uri 1580 - - genvalidity-sydtest 1581 - - genvalidity-sydtest-aeson 1582 - - genvalidity-sydtest-hashable 1583 - - genvalidity-sydtest-lens 1584 - - genvalidity-sydtest-persistent 1585 1575 - geo-uk 1586 1576 - geodetic 1587 1577 - geolite-csv ··· 1932 1922 - hakyll-ogmarkup 1933 1923 - hakyll-shortcut-links 1934 1924 - halberd 1935 - - halide-JuicyPixels 1936 1925 - halide-arrayfire 1937 1926 - hall-symbols 1938 1927 - halma-gui ··· 1970 1959 - hascat-setup 1971 1960 - hascat-system 1972 1961 - hashable-accelerate 1973 - - hashes 1974 1962 - hashflare 1975 1963 - hask-home 1976 1964 - haskdeep ··· 2288 2276 - htsn-import 2289 2277 - http-client-auth 2290 2278 - http-client-rustls 2279 + - http-client-tls_0_3_6_2 2291 2280 - http-enumerator 2292 2281 - http2-client-grpc 2293 2282 - http2-grpc-proto-lens ··· 2345 2334 - ideas-math-types 2346 2335 - ideas-statistics 2347 2336 - ige-mac-integration 2337 + - igrf 2348 2338 - ihaskell-rlangqq 2349 2339 - ihttp 2350 2340 - imap ··· 2674 2664 - loli 2675 2665 - longshot 2676 2666 - loop-effin 2677 - - looper 2678 2667 - lorentz 2679 2668 - lostcities 2680 2669 - loup ··· 2797 2786 - monetdb-mapi 2798 2787 - mongrel2-handler 2799 2788 - monky 2789 + - monoidmap 2800 2790 - monte-carlo 2801 2791 - moo 2802 2792 - moonshine ··· 2905 2895 - nettle-openflow 2906 2896 - network-anonymous-i2p 2907 2897 - network-anonymous-tor 2898 + - network-conduit-tls_1_4_0 2908 2899 - network-connection 2909 2900 - network-enumerator 2910 2901 - network-hans ··· 2945 2936 - nri-test-encoding 2946 2937 - numerals-base 2947 2938 - numeric-ode 2939 + - numeric-optimization-backprop 2948 2940 - numerical 2949 2941 - numhask-hedgehog 2950 2942 - numhask-range ··· 3242 3234 - queryparser-presto 3243 3235 - queryparser-vertica 3244 3236 - queuelike 3237 + - quic 3245 3238 - quickbench 3246 3239 - quickcheck-poly 3247 3240 - quickcheck-regex ··· 3378 3371 - remotion 3379 3372 - repa-array 3380 3373 - repa-convert 3381 - - repa-fftw 3382 3374 - repa-flow 3383 3375 - repa-plugin 3384 3376 - repa-stream ··· 3450 3442 - rose-trie 3451 3443 - roshask 3452 3444 - rosmsg-bin 3445 + - rounded-hw 3453 3446 - roundtrip-xml 3454 3447 - route-generator 3455 3448 - route-planning ··· 3465 3458 - runtime-arbitrary 3466 3459 - rv 3467 3460 - s-expression 3468 - - safe-coloured-text-gen 3469 - - safe-coloured-text-layout 3470 3461 - safe-coloured-text-layout-gen 3471 3462 - safe-coupling 3472 3463 - safe-plugins ··· 3798 3789 - swapper 3799 3790 - sweet-egison 3800 3791 - switch 3801 - - sydtest-aeson 3802 3792 - sydtest-amqp 3803 - - sydtest-autodocodec 3804 - - sydtest-hedgehog 3805 - - sydtest-hedgehog_0_4_0_0 3806 - - sydtest-hedis 3807 - - sydtest-hspec 3808 - - sydtest-hspec_0_4_0_0 3809 - - sydtest-mongo 3810 - - sydtest-persistent 3811 - - sydtest-persistent-postgresql 3812 - - sydtest-persistent-sqlite 3813 - - sydtest-process 3814 - - sydtest-rabbitmq 3815 - - sydtest-servant 3816 - - sydtest-typed-process 3817 - - sydtest-wai 3818 - - sydtest-webdriver 3819 3793 - sydtest-webdriver-screenshot 3820 3794 - sydtest-webdriver-yesod 3821 3795 - sydtest-yesod ··· 3893 3867 - thumbnail-polish 3894 3868 - tic-tac-toe 3895 3869 - tickle 3896 - - tiger 3897 3870 - tighttp 3898 3871 - timberc 3899 3872 - time-exts ··· 3915 3888 - tlex-encoding 3916 3889 - tlex-th 3917 3890 - tls-extra 3891 + - tls_1_7_0 3918 3892 - tn 3919 3893 - to-string-instances 3920 3894 - toboggan 3921 3895 - todos 3922 - - token-limiter-concurrent 3923 3896 - toktok 3924 3897 - tomlcheck 3925 3898 - tonatona ··· 4060 4033 - uu-cco-hut-parsing 4061 4034 - uu-cco-uu-parsinglib 4062 4035 - uu-options 4063 - - uuagc 4064 4036 - uuid-crypto 4065 4037 - uvector-algorithms 4066 4038 - v4l2 ··· 4132 4104 - waldo 4133 4105 - warp-grpc 4134 4106 - warp-quic 4107 + - warp_3_3_27 4135 4108 - warped 4136 4109 - wavesurfer 4137 4110 - wavy ··· 4192 4165 - wumpus-drawing 4193 4166 - wumpus-microprint 4194 4167 - wumpus-tree 4168 + - wuss_2_0_1_4 4195 4169 - wx 4196 4170 - wxAsteroids 4197 4171 - wxFruit
+69 -5
pkgs/development/haskell-modules/configuration-nix.nix
··· 192 192 # Link the proper version. 193 193 zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; }; 194 194 195 + threadscope = enableSeparateBinOutput super.threadscope; 196 + 195 197 # Use the default version of mysql to build this package (which is actually mariadb). 196 198 # test phase requires networking 197 199 mysql = dontCheck super.mysql; ··· 214 216 ''; 215 217 }) super.nvvm; 216 218 219 + # hledger* overrides 220 + inherit ( 221 + let 222 + # Copy hledger man pages from the source tarball into the proper place. 223 + # It always contains the relevant man page(s) at the top level. For 224 + # hledger it additionally has all the other man pages in embeddedfiles/ 225 + # which we ignore. 226 + installHledgerManPages = overrideCabal (drv: { 227 + buildTools = drv.buildTools or [] ++ [ 228 + pkgs.buildPackages.installShellFiles 229 + ]; 230 + postInstall = '' 231 + for i in $(seq 1 9); do 232 + installManPage *.$i 233 + done 234 + 235 + install -v -Dm644 *.info* -t "$out/share/info/" 236 + ''; 237 + }); 238 + 239 + hledgerWebTestFix = overrideCabal (drv: { 240 + preCheck = '' 241 + ${drv.preCheck or ""} 242 + export HOME="$(mktemp -d)" 243 + ''; 244 + }); 245 + in 246 + { 247 + hledger = installHledgerManPages super.hledger; 248 + hledger-web = installHledgerManPages (hledgerWebTestFix super.hledger-web); 249 + hledger-ui = installHledgerManPages super.hledger-ui; 250 + 251 + hledger_1_30_1 = installHledgerManPages 252 + (doDistribute (super.hledger_1_30_1.override { 253 + hledger-lib = self.hledger-lib_1_30; 254 + })); 255 + hledger-web_1_30 = installHledgerManPages (hledgerWebTestFix 256 + (doDistribute (super.hledger-web_1_30.override { 257 + hledger = self.hledger_1_30_1; 258 + hledger-lib = self.hledger-lib_1_30; 259 + }))); 260 + } 261 + ) hledger 262 + hledger-web 263 + hledger-ui 264 + hledger_1_30_1 265 + hledger-web_1_30 266 + ; 267 + 217 268 cufft = overrideCabal (drv: { 218 269 preConfigure = '' 219 270 export CUDA_PATH=${pkgs.cudatoolkit} ··· 232 283 sfml-audio = appendConfigureFlag "--extra-include-dirs=${pkgs.openal}/include/AL" super.sfml-audio; 233 284 234 285 # avoid compiling twice by providing executable as a separate output (with small closure size) 286 + cabal-fmt = enableSeparateBinOutput super.cabal-fmt; 287 + hindent = enableSeparateBinOutput super.hindent; 288 + releaser = enableSeparateBinOutput super.releaser; 289 + eventlog2html = enableSeparateBinOutput super.eventlog2html; 290 + ghc-debug-brick = enableSeparateBinOutput super.ghc-debug-brick; 291 + nixfmt = enableSeparateBinOutput super.nixfmt; 292 + calligraphy = enableSeparateBinOutput super.calligraphy; 235 293 niv = enableSeparateBinOutput (self.generateOptparseApplicativeCompletions [ "niv" ] super.niv); 236 294 ghcid = enableSeparateBinOutput super.ghcid; 237 295 ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] (enableSeparateBinOutput super.ormolu); ··· 264 322 gio = lib.pipe super.gio 265 323 [ (disableHardening ["fortify"]) 266 324 (addBuildTool self.buildHaskellPackages.gtk2hs-buildtools) 267 - (addPkgconfigDepends (with pkgs; [ glib pcre2 util-linux pcre ] 268 - ++ (if pkgs.stdenv.isLinux then [libselinux libsepol] else []))) 325 + (addPkgconfigDepends (with pkgs; [ glib pcre2 pcre ] 326 + ++ lib.optionals pkgs.stdenv.isLinux [ util-linux libselinux libsepol ])) 269 327 ]; 270 328 glib = disableHardening ["fortify"] (addPkgconfigDepend pkgs.glib (addBuildTool self.buildHaskellPackages.gtk2hs-buildtools super.glib)); 271 329 gtk3 = disableHardening ["fortify"] (super.gtk3.override { inherit (pkgs) gtk3; }); 272 330 gtk = lib.pipe super.gtk ( 273 331 [ (disableHardening ["fortify"]) 274 332 (addBuildTool self.buildHaskellPackages.gtk2hs-buildtools) 275 - (addPkgconfigDepends (with pkgs; [ gtk2 pcre2 util-linux pcre fribidi 333 + (addPkgconfigDepends (with pkgs; [ gtk2 pcre2 pcre fribidi 276 334 libthai libdatrie xorg.libXdmcp libdeflate 277 335 ] 278 - ++ (if pkgs.stdenv.isLinux then [libselinux libsepol] else []))) 336 + ++ lib.optionals pkgs.stdenv.isLinux [ util-linux libselinux libsepol ])) 279 337 ] ++ 280 338 ( if pkgs.stdenv.isDarwin then [(appendConfigureFlag "-fhave-quartz-gtk")] else [] ) 281 339 ); ··· 970 1028 wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ 971 1029 pkgs.lib.makeBinPath [ 972 1030 pkgs.nvchecker 973 - pkgs.nix-prefetch 1031 + pkgs.nix # nix-prefetch-url 1032 + pkgs.nix-prefetch-git 974 1033 pkgs.nix-prefetch-docker 975 1034 ] 976 1035 }" ··· 1239 1298 # Disable checks to break dependency loop with SCalendar 1240 1299 scalendar = dontCheck super.scalendar; 1241 1300 1301 + halide-haskell = super.halide-haskell.override { Halide = pkgs.halide; }; 1302 + # Sydtest has a brittle test suite that will only work with the exact 1303 + 1304 + # versions that it ships with. 1305 + sydtest = dontCheck super.sydtest; 1242 1306 }
+1 -1
pkgs/development/haskell-modules/generic-builder.nix
··· 34 34 , doInstallIntermediates ? false 35 35 , editedCabalFile ? null 36 36 # aarch64 outputs otherwise exceed 2GB limit 37 - , enableLibraryProfiling ? !(ghc.isGhcjs or stdenv.targetPlatform.isAarch64 or false) 37 + , enableLibraryProfiling ? !(ghc.isGhcjs or stdenv.hostPlatform.isAarch64 or false) 38 38 , enableExecutableProfiling ? false 39 39 , profilingDetail ? "exported-functions" 40 40 # TODO enable shared libs for cross-compiling
+1610 -861
pkgs/development/haskell-modules/hackage-packages.nix
··· 2071 2071 }: 2072 2072 mkDerivation { 2073 2073 pname = "Blammo"; 2074 - version = "1.1.1.2"; 2075 - sha256 = "156c3yx3gzyic5pnmzkk6fzvw74a2zw2vchf5j12j09qmjq6hyss"; 2074 + version = "1.1.2.0"; 2075 + sha256 = "1lp71amm5bzky8w6rw7lr551yrxhzaza0mq6ph4vb77864wnf959"; 2076 2076 libraryHaskellDepends = [ 2077 2077 aeson base bytestring case-insensitive clock containers dlist 2078 2078 envparse exceptions fast-logger http-types lens monad-logger-aeson ··· 3342 3342 pname = "ChasingBottoms"; 3343 3343 version = "1.3.1.12"; 3344 3344 sha256 = "1vy9yq07p95qiap1pcp2bbbn1mqvp3spyrswpdz0qfcn06656650"; 3345 - revision = "1"; 3346 - editedCabalFile = "0ra041bg2m04niqzi0y468cfmv2bkjh8ckix2i8xf2shw7v2zn4r"; 3345 + revision = "2"; 3346 + editedCabalFile = "12sdz0xdifdl9gaz8nc7smdv6ldjzg423i5r5cw8myshh8s63rga"; 3347 3347 libraryHaskellDepends = [ 3348 3348 base containers mtl QuickCheck random syb 3349 3349 ]; ··· 6502 6502 }) {}; 6503 6503 6504 6504 "ForestStructures" = callPackage 6505 - ({ mkDerivation, base, bifunctors, containers, criterion, fgl, lens 6506 - , QuickCheck, tasty, tasty-quickcheck, tasty-th 6505 + ({ mkDerivation, aeson, base, bifunctors, containers, criterion 6506 + , deepseq, fgl, lens, QuickCheck, tasty, tasty-quickcheck, tasty-th 6507 6507 , unordered-containers, vector, vector-th-unbox 6508 6508 }: 6509 6509 mkDerivation { 6510 6510 pname = "ForestStructures"; 6511 - version = "0.0.1.0"; 6512 - sha256 = "1hhmcc0cpjbixqjgl35gv9dpymamdfb4vhhd5hard0qpg1xllnvw"; 6511 + version = "0.0.1.1"; 6512 + sha256 = "1fqw4vm3i76is9z5p7bw4pjlsqdcvsp71jadqmwdz53d0nfwrc33"; 6513 6513 libraryHaskellDepends = [ 6514 - base bifunctors containers fgl lens QuickCheck unordered-containers 6515 - vector vector-th-unbox 6514 + aeson base bifunctors containers deepseq fgl lens QuickCheck 6515 + unordered-containers vector vector-th-unbox 6516 6516 ]; 6517 6517 testHaskellDepends = [ 6518 6518 base containers QuickCheck tasty tasty-quickcheck tasty-th vector ··· 10002 10002 broken = true; 10003 10003 }) {}; 10004 10004 10005 + "HaGL" = callPackage 10006 + ({ mkDerivation, array, base, bytestring, containers 10007 + , cryptohash-md5, directory, gl-capture, GLUT, hashable, HUnit 10008 + , matrix, mtl, OpenGL, OpenGLRaw, template-haskell, time 10009 + , unordered-containers 10010 + }: 10011 + mkDerivation { 10012 + pname = "HaGL"; 10013 + version = "0.1.0.0"; 10014 + sha256 = "00h4p6hialbfhcdgspklaf9ncyg13rz5cspbngrpv3cm2pprii2q"; 10015 + libraryHaskellDepends = [ 10016 + array base bytestring containers cryptohash-md5 gl-capture GLUT 10017 + hashable matrix mtl OpenGL OpenGLRaw template-haskell time 10018 + unordered-containers 10019 + ]; 10020 + testHaskellDepends = [ base bytestring directory GLUT HUnit ]; 10021 + description = "Haskell-embedded OpenGL"; 10022 + license = lib.licenses.mit; 10023 + hydraPlatforms = lib.platforms.none; 10024 + broken = true; 10025 + }) {}; 10026 + 10005 10027 "HaLeX" = callPackage 10006 10028 ({ mkDerivation, base, HUnit, mtl, QuickCheck }: 10007 10029 mkDerivation { ··· 10569 10591 }: 10570 10592 mkDerivation { 10571 10593 pname = "HaskellNet"; 10572 - version = "0.6.0.2"; 10573 - sha256 = "0lqdqch6qwfrf89hfmvvcna2wgvhzx02v0cwsm7bbhq258alfapj"; 10574 - libraryHaskellDepends = [ 10575 - array base base64 bytestring cryptohash-md5 mime-mail mtl network 10576 - network-bsd old-time pretty text 10577 - ]; 10578 - description = "Client support for POP3, SMTP, and IMAP"; 10579 - license = lib.licenses.bsd3; 10580 - }) {}; 10581 - 10582 - "HaskellNet_0_6_1_2" = callPackage 10583 - ({ mkDerivation, array, base, base64, bytestring, cryptohash-md5 10584 - , mime-mail, mtl, network, network-bsd, old-time, pretty, text 10585 - }: 10586 - mkDerivation { 10587 - pname = "HaskellNet"; 10588 10594 version = "0.6.1.2"; 10589 10595 sha256 = "0yd0n6c9favb6kv37flz2cn9wz5kapx3iqljq2h7l6qvx6kd92v5"; 10596 + revision = "1"; 10597 + editedCabalFile = "1j5g09v40rvsk4crfjabs0mma5nlwsbzbny25803bc6805jh9058"; 10590 10598 libraryHaskellDepends = [ 10591 10599 array base base64 bytestring cryptohash-md5 mime-mail mtl network 10592 10600 network-bsd old-time pretty text 10593 10601 ]; 10594 10602 description = "Client support for POP3, SMTP, and IMAP"; 10595 10603 license = lib.licenses.bsd3; 10596 - hydraPlatforms = lib.platforms.none; 10597 10604 }) {}; 10598 10605 10599 10606 "HaskellNet-SSL" = callPackage ··· 11272 11279 license = lib.licenses.publicDomain; 11273 11280 }) {inherit (pkgs) openssl;}; 11274 11281 11282 + "HsOpenSSL_0_11_7_6" = callPackage 11283 + ({ mkDerivation, base, bytestring, Cabal, network, openssl, time }: 11284 + mkDerivation { 11285 + pname = "HsOpenSSL"; 11286 + version = "0.11.7.6"; 11287 + sha256 = "18n7yhffqhgl2favmwlky9j0xx61bhs1akhf7ccc3ajapf8y4bb6"; 11288 + setupHaskellDepends = [ base Cabal ]; 11289 + libraryHaskellDepends = [ base bytestring network time ]; 11290 + librarySystemDepends = [ openssl ]; 11291 + testHaskellDepends = [ base bytestring ]; 11292 + description = "Partial OpenSSL binding for Haskell"; 11293 + license = lib.licenses.publicDomain; 11294 + hydraPlatforms = lib.platforms.none; 11295 + }) {inherit (pkgs) openssl;}; 11296 + 11275 11297 "HsOpenSSL-x509-system" = callPackage 11276 11298 ({ mkDerivation, base, bytestring, HsOpenSSL, unix }: 11277 11299 mkDerivation { ··· 11865 11887 }: 11866 11888 mkDerivation { 11867 11889 pname = "IntervalMap"; 11868 - version = "0.6.2.0"; 11869 - sha256 = "03964pa13nap4gnhdagkfwjc8y74x0pikywa7pv8944a5v9ziwss"; 11890 + version = "0.6.2.1"; 11891 + sha256 = "17v9q1vnm3pzrr5xhv8xvxqh27facwwfladrr10l57fzibp82265"; 11870 11892 libraryHaskellDepends = [ base containers deepseq ]; 11871 11893 testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; 11872 11894 benchmarkHaskellDepends = [ ··· 12354 12376 ]; 12355 12377 description = "Scale JuicyPixels images with DCT"; 12356 12378 license = lib.licenses.bsd3; 12357 - hydraPlatforms = lib.platforms.none; 12358 12379 }) {}; 12359 12380 12360 12381 "JuicyPixels-stbir" = callPackage ··· 14889 14910 ]; 14890 14911 description = "NTRU Cryptography"; 14891 14912 license = "GPL"; 14913 + hydraPlatforms = lib.platforms.none; 14892 14914 }) {}; 14893 14915 14894 14916 "NXT" = callPackage ··· 17338 17360 }: 17339 17361 mkDerivation { 17340 17362 pname = "QuickCheck"; 17341 - version = "2.14.2"; 17342 - sha256 = "1wrnrm9sq4s0bly0q58y80g4153q45iglqa34xsi2q3bd62nqyyq"; 17363 + version = "2.14.3"; 17364 + sha256 = "0085lwy14r7hk7ibmv8d7d54ja9zin0ijf0b27xai898dfrj43sw"; 17343 17365 libraryHaskellDepends = [ 17344 17366 base containers deepseq random splitmix template-haskell 17345 17367 transformers ··· 18220 18242 }: 18221 18243 mkDerivation { 18222 18244 pname = "RtMidi"; 18223 - version = "0.6.1.0"; 18224 - sha256 = "0x2hk8bg3bwnhl1si7wll47xn2xq1dj3lakhg03is5j2692lpalk"; 18245 + version = "0.7.0.0"; 18246 + sha256 = "0gfhl9p961hpzljcx3cphl5wzhgjkbklnf5a1wikmm86xa5ziz1w"; 18225 18247 isLibrary = true; 18226 18248 isExecutable = true; 18227 18249 libraryHaskellDepends = [ base deepseq vector ]; ··· 22972 22994 license = lib.licenses.bsd3; 22973 22995 }) {}; 22974 22996 22975 - "Yampa_0_14_2" = callPackage 22997 + "Yampa_0_14_3" = callPackage 22976 22998 ({ mkDerivation, base, deepseq, random, simple-affine-space }: 22977 22999 mkDerivation { 22978 23000 pname = "Yampa"; 22979 - version = "0.14.2"; 22980 - sha256 = "0d063a1giib89pm4d2v3y90dfjrldijff8izwgjazw0ivh515qqp"; 23001 + version = "0.14.3"; 23002 + sha256 = "0hsi2458m0wncb6khzjzplzxlmcwz3czm3q59fcqfz0c6yn8px7j"; 22981 23003 isLibrary = true; 22982 23004 isExecutable = true; 22983 23005 libraryHaskellDepends = [ ··· 25045 25067 }: 25046 25068 mkDerivation { 25047 25069 pname = "active"; 25048 - version = "0.2.0.17"; 25049 - sha256 = "1y2prarbrj6zpd7zp6cka5j6ylnbyv5a3f11i9ggj361z2y4r00f"; 25070 + version = "0.2.0.18"; 25071 + sha256 = "1fn3cyf43x18p2phs8bhacbp8zl8aifrh7ndzs0qi6n6g9sw95qn"; 25050 25072 libraryHaskellDepends = [ 25051 25073 base lens linear semigroupoids semigroups vector 25052 25074 ]; ··· 26519 26541 }: 26520 26542 mkDerivation { 26521 26543 pname = "aeson-schemas"; 26522 - version = "1.4.0.1"; 26523 - sha256 = "1yv4d4i8gmbv0mmlalhlafn9a6kv51wdwnpbksiajm6m47bajqym"; 26524 - libraryHaskellDepends = [ 26525 - aeson base first-class-families hashable megaparsec 26526 - template-haskell text unordered-containers 26527 - ]; 26528 - testHaskellDepends = [ 26529 - aeson aeson-qq base deepseq directory filepath interpolate process 26530 - QuickCheck raw-strings-qq tasty tasty-golden tasty-hunit 26531 - tasty-quickcheck template-haskell temporary text th-orphans 26532 - th-test-utils 26533 - ]; 26534 - benchmarkHaskellDepends = [ 26535 - aeson base criterion deepseq template-haskell th-test-utils 26536 - ]; 26537 - description = "Easily consume JSON data on-demand with type-safety"; 26538 - license = lib.licenses.bsd3; 26539 - }) {}; 26540 - 26541 - "aeson-schemas_1_4_1_0" = callPackage 26542 - ({ mkDerivation, aeson, aeson-qq, base, criterion, deepseq 26543 - , directory, filepath, first-class-families, hashable, interpolate 26544 - , megaparsec, process, QuickCheck, raw-strings-qq, tasty 26545 - , tasty-golden, tasty-hunit, tasty-quickcheck, template-haskell 26546 - , temporary, text, th-orphans, th-test-utils, unordered-containers 26547 - }: 26548 - mkDerivation { 26549 - pname = "aeson-schemas"; 26550 26544 version = "1.4.1.0"; 26551 26545 sha256 = "0l9qdzcx6fs661zn9vrkpflr5fl92s1w16nb94cabh8v1xzbagxh"; 26552 26546 libraryHaskellDepends = [ ··· 26564 26558 ]; 26565 26559 description = "Easily consume JSON data on-demand with type-safety"; 26566 26560 license = lib.licenses.bsd3; 26567 - hydraPlatforms = lib.platforms.none; 26568 26561 }) {}; 26569 26562 26570 26563 "aeson-serialize" = callPackage ··· 26949 26942 license = lib.licenses.bsd3; 26950 26943 hydraPlatforms = lib.platforms.none; 26951 26944 mainProgram = "ag-pictgen"; 26945 + broken = true; 26952 26946 }) {}; 26953 26947 26954 26948 "agda-language-server" = callPackage ··· 27096 27090 pname = "agda2lagda"; 27097 27091 version = "0.2021.6.1"; 27098 27092 sha256 = "1108xzl4fv86qpasg1wbc26bypd06s41kmgzybrggc76pv15hbis"; 27093 + revision = "1"; 27094 + editedCabalFile = "0qba16r072www9544g30ahmlk8k3kiq8q18g3wn7b7sgz2jmp8mc"; 27099 27095 isLibrary = false; 27100 27096 isExecutable = true; 27101 27097 executableHaskellDepends = [ ··· 27108 27104 mainProgram = "agda2lagda"; 27109 27105 }) {}; 27110 27106 27111 - "agda2lagda_0_2023_3_25" = callPackage 27107 + "agda2lagda_0_2023_6_9" = callPackage 27112 27108 ({ mkDerivation, base, directory, filepath, goldplate 27113 27109 , optparse-applicative, process 27114 27110 }: 27115 27111 mkDerivation { 27116 27112 pname = "agda2lagda"; 27117 - version = "0.2023.3.25"; 27118 - sha256 = "0gvf5fd4xddhivmfv6lhra8y4qg18hpdw566avbdb8dz58g9gmvn"; 27113 + version = "0.2023.6.9"; 27114 + sha256 = "1zhzvahqrj5srxva8aq72fn0rlqfq27xvn17nwr19cq6a4ap9725"; 27119 27115 isLibrary = false; 27120 27116 isExecutable = true; 27121 27117 executableHaskellDepends = [ ··· 28220 28216 }: 28221 28217 mkDerivation { 28222 28218 pname = "align-audio"; 28223 - version = "0.0"; 28224 - sha256 = "0sa7q5fzkc0z4vzibs5l21pvrkil0swdpbl27qn30vb6giy3yh7a"; 28225 - revision = "2"; 28226 - editedCabalFile = "1225s8vbwfblyzfbfv7b2v4xcxlp0aavaaivmx5154xlba56n10s"; 28219 + version = "0.0.0.1"; 28220 + sha256 = "1r1660igj6bmzhccw30vj0wsz7jjkd5k0vbr4nrcbpcwkxllshnb"; 28227 28221 isLibrary = false; 28228 28222 isExecutable = true; 28229 28223 executableHaskellDepends = [ ··· 32981 32975 pname = "apecs"; 32982 32976 version = "0.9.5"; 32983 32977 sha256 = "1n01kbyxgfk1jyc9adpmb4cglwz6i20i8wp9mg4nxsjpy93hbp1z"; 32978 + revision = "1"; 32979 + editedCabalFile = "1vpjwmyir3ivqzcalazzp4mczln5s2b23lb3rmaag0p1lrlxjxz0"; 32984 32980 libraryHaskellDepends = [ 32985 32981 array base containers exceptions mtl template-haskell vector 32986 32982 ]; ··· 33793 33789 ]; 33794 33790 testToolDepends = [ sydtest-discover ]; 33795 33791 license = lib.licenses.mit; 33796 - hydraPlatforms = lib.platforms.none; 33797 33792 }) {}; 33798 33793 33799 33794 "appendmap" = callPackage ··· 36150 36145 description = "Action Script Instrumentation Library"; 36151 36146 license = "LGPL"; 36152 36147 hydraPlatforms = lib.platforms.none; 36148 + broken = true; 36153 36149 }) {}; 36154 36150 36155 36151 "asn" = callPackage ··· 36671 36667 ]; 36672 36668 description = "Amateur astronomical computations"; 36673 36669 license = lib.licenses.bsd3; 36670 + hydraPlatforms = lib.platforms.none; 36671 + broken = true; 36674 36672 }) {}; 36675 36673 36676 36674 "astview" = callPackage ··· 39099 39097 pname = "aws-cloudfront-signed-cookies"; 39100 39098 version = "0.2.0.12"; 39101 39099 sha256 = "1gdam3h8ir1lz8phhj03ckiv0f371xl79adi4kz2yqk2ayvcixhv"; 39100 + revision = "1"; 39101 + editedCabalFile = "0a9zvqjp6lvpn3xhlxxd73fpvgxx6vy5j0nkigqgc9wxsrmm1vk3"; 39102 39102 isLibrary = true; 39103 39103 isExecutable = true; 39104 39104 libraryHaskellDepends = [ ··· 39667 39667 hydraPlatforms = lib.platforms.none; 39668 39668 }) {}; 39669 39669 39670 + "aws-secrets" = callPackage 39671 + ({ mkDerivation, aeson, base, bytestring, containers, hspec, mtl 39672 + , scientific, stm, text, typed-process, validation 39673 + }: 39674 + mkDerivation { 39675 + pname = "aws-secrets"; 39676 + version = "0.0.0.0"; 39677 + sha256 = "1qbly27bcc74ngc7wcazsk7gq1w4c66cihpxbaxp4xvhc541fn5n"; 39678 + revision = "1"; 39679 + editedCabalFile = "163npspzl43f63xrqnq2l2x1h620vmrnh3wj6nshb05x0q1d5ljf"; 39680 + libraryHaskellDepends = [ 39681 + aeson base bytestring containers mtl scientific stm text 39682 + typed-process validation 39683 + ]; 39684 + testHaskellDepends = [ 39685 + aeson base bytestring containers hspec mtl scientific stm text 39686 + typed-process validation 39687 + ]; 39688 + description = "Fetch data from AWS Secrets Manager"; 39689 + license = lib.licenses.mit; 39690 + }) {}; 39691 + 39670 39692 "aws-ses-easy" = callPackage 39671 39693 ({ mkDerivation, amazonka, amazonka-ses, base, criterion 39672 39694 , exceptions, lens, lucid, mtl, tasty, tasty-hspec, text ··· 41185 41207 license = lib.licenses.bsd3; 41186 41208 }) {}; 41187 41209 41210 + "base32_0_3_1_0" = callPackage 41211 + ({ mkDerivation, base, bytestring, criterion, deepseq, memory 41212 + , QuickCheck, random-bytestring, tasty, tasty-hunit 41213 + , tasty-quickcheck, text, text-short 41214 + }: 41215 + mkDerivation { 41216 + pname = "base32"; 41217 + version = "0.3.1.0"; 41218 + sha256 = "1cp2xs1kl5bqs09jpyak4kfjr4pnqgbv5rksxx1z6r8hmi9akjrg"; 41219 + libraryHaskellDepends = [ 41220 + base bytestring deepseq text text-short 41221 + ]; 41222 + testHaskellDepends = [ 41223 + base bytestring memory QuickCheck random-bytestring tasty 41224 + tasty-hunit tasty-quickcheck text text-short 41225 + ]; 41226 + benchmarkHaskellDepends = [ 41227 + base bytestring criterion deepseq memory random-bytestring text 41228 + ]; 41229 + description = "Fast RFC 4648-compliant Base32 encoding"; 41230 + license = lib.licenses.bsd3; 41231 + hydraPlatforms = lib.platforms.none; 41232 + }) {}; 41233 + 41188 41234 "base32-bytestring" = callPackage 41189 41235 ({ mkDerivation, base, bits-extras, bytestring, cpu, criterion 41190 41236 , hspec, QuickCheck ··· 41520 41566 ({ mkDerivation, base, ghc-prim }: 41521 41567 mkDerivation { 41522 41568 pname = "basement"; 41523 - version = "0.0.15"; 41524 - sha256 = "1d2xj5dmjps7nc7rwp5s0kyjcg9v8xfql6ik4yk1d3affnvazhjn"; 41569 + version = "0.0.16"; 41570 + sha256 = "00332i4n98gh06x8ii4p8mhjpq0ch1bdan9hxmdblxpgk8j7xdvz"; 41525 41571 libraryHaskellDepends = [ base ghc-prim ]; 41526 41572 description = "Foundation scrap box of array & string"; 41527 41573 license = lib.licenses.bsd3; ··· 42090 42136 42091 42137 "bcp47-orphans" = callPackage 42092 42138 ({ mkDerivation, base, bcp47, cassava, errors, esqueleto, hashable 42093 - , hspec, http-api-data, path-pieces, persistent, QuickCheck, text 42094 - }: 42095 - mkDerivation { 42096 - pname = "bcp47-orphans"; 42097 - version = "0.1.0.5"; 42098 - sha256 = "1h5pqcb1snmbbvcfpjcqrfbk9l8wry6i0mlz6vm347arhfwc62cd"; 42099 - libraryHaskellDepends = [ 42100 - base bcp47 cassava errors esqueleto hashable http-api-data 42101 - path-pieces persistent text 42102 - ]; 42103 - testHaskellDepends = [ 42104 - base bcp47 cassava hspec path-pieces persistent QuickCheck 42105 - ]; 42106 - description = "BCP47 orphan instances"; 42107 - license = lib.licenses.mit; 42108 - }) {}; 42109 - 42110 - "bcp47-orphans_0_1_0_6" = callPackage 42111 - ({ mkDerivation, base, bcp47, cassava, errors, esqueleto, hashable 42112 42139 , hspec, http-api-data, path-pieces, persistent, QuickCheck 42113 42140 , serialise, text 42114 42141 }: ··· 42126 42153 ]; 42127 42154 description = "BCP47 orphan instances"; 42128 42155 license = lib.licenses.mit; 42129 - hydraPlatforms = lib.platforms.none; 42130 42156 }) {}; 42131 42157 42132 42158 "bcrypt" = callPackage ··· 42648 42674 }: 42649 42675 mkDerivation { 42650 42676 pname = "bech32"; 42651 - version = "1.1.2"; 42652 - sha256 = "1iyjnyy7l0jf2azbgg6lc5k7n25h1r41fyyqfagyaz79vhi1k7j8"; 42677 + version = "1.1.3"; 42678 + sha256 = "0pzsaj606hgm2j4c2jynnv46w6a13g2z8vsfywxkz90asy91mgwy"; 42653 42679 isLibrary = true; 42654 42680 isExecutable = true; 42655 42681 libraryHaskellDepends = [ ··· 42753 42779 hydraPlatforms = lib.platforms.none; 42754 42780 }) {}; 42755 42781 42782 + "belgian-structured-communication" = callPackage 42783 + ({ mkDerivation, base, binary, hashable, hspec, hspec-discover 42784 + , parsec, QuickCheck, template-haskell, text, validity 42785 + }: 42786 + mkDerivation { 42787 + pname = "belgian-structured-communication"; 42788 + version = "0.1.0.0"; 42789 + sha256 = "03lic7a7z2jqvfq0ar4n0vx5l27hg8mkck91fzwbcna82fjjabpw"; 42790 + libraryHaskellDepends = [ 42791 + base binary hashable parsec QuickCheck template-haskell text 42792 + validity 42793 + ]; 42794 + testHaskellDepends = [ base hspec parsec QuickCheck validity ]; 42795 + testToolDepends = [ hspec-discover ]; 42796 + description = "parsing, rendering and manipulating the structured communication of Belgian financial transactions"; 42797 + license = lib.licenses.bsd3; 42798 + }) {}; 42799 + 42756 42800 "belka" = callPackage 42757 42801 ({ mkDerivation, aeson, aeson-value-parser, attoparsec, base 42758 42802 , base-prelude, base64-bytestring, bug, bytestring ··· 46209 46253 testToolDepends = [ sydtest-discover ]; 46210 46254 description = "Generic and easy to use haskell bitfields"; 46211 46255 license = lib.licenses.mit; 46212 - hydraPlatforms = lib.platforms.none; 46213 46256 }) {}; 46214 46257 46215 46258 "bitly-cli" = callPackage ··· 46580 46623 pname = "bitwise"; 46581 46624 version = "1.0.0.1"; 46582 46625 sha256 = "03xyzdkyb99gvm9g5chl07rqbnm7qrxba7wgmrfmal0rkwm0ibkn"; 46583 - revision = "6"; 46584 - editedCabalFile = "0m4swiml8zggzvwzip2yw77y6crhf10a7imy6fj5yq0b9vd2mqkf"; 46626 + revision = "8"; 46627 + editedCabalFile = "0jmix0f28cvxg328b4wnf33sx36aa9j921hx3hd51by85lywkvrn"; 46585 46628 libraryHaskellDepends = [ array base bytestring ]; 46586 46629 testHaskellDepends = [ base QuickCheck ]; 46587 46630 benchmarkHaskellDepends = [ array base bytestring criterion ]; ··· 47267 47310 ({ mkDerivation, base, blaze-markup, mtl }: 47268 47311 mkDerivation { 47269 47312 pname = "blaze-svg"; 47270 - version = "0.3.6.1"; 47271 - sha256 = "0q5a4wam0sidng0cfsivwkyph9snyilk7rsdx4vb6wz9l6xz397n"; 47272 - revision = "1"; 47273 - editedCabalFile = "1vb78d0nvk0909963pm0mnzklcm57w563lhgx1wv7qzdfznpi8f9"; 47313 + version = "0.3.7"; 47314 + sha256 = "0pqnx1zrvm2pliya76f4m8d6aycncfp08c2n1fiyzvl1fgk62z2c"; 47274 47315 libraryHaskellDepends = [ base blaze-markup mtl ]; 47275 47316 description = "SVG combinator library"; 47276 47317 license = lib.licenses.bsd3; ··· 49602 49643 ({ mkDerivation, base, brick, containers, microlens, vector }: 49603 49644 mkDerivation { 49604 49645 pname = "brick-list-skip"; 49605 - version = "0.1.1.3"; 49606 - sha256 = "0pa3k28qia4pjmiwv8zmzka7vmfgqwf570b6fjigxvid4wlh58d3"; 49646 + version = "0.1.1.4"; 49647 + sha256 = "09f6w8m0wpljfxksm4d09014jhf4hh0ngr5cgp3616nf7mp3cazr"; 49607 49648 isLibrary = true; 49608 49649 isExecutable = true; 49609 49650 libraryHaskellDepends = [ base brick containers microlens vector ]; ··· 49675 49716 }: 49676 49717 mkDerivation { 49677 49718 pname = "brick-tabular-list"; 49678 - version = "2.2.0.1"; 49679 - sha256 = "0iplqfvvb5q7p99fgizj0py350sghmmd7pgyq87yx28rv4d4mbm3"; 49719 + version = "2.2.0.2"; 49720 + sha256 = "19kk4rr5h5a6cis2k6qvh7c8l7hixx3lmx79ax2qzfb1vps5ri5g"; 49680 49721 isLibrary = true; 49681 49722 isExecutable = true; 49682 49723 libraryHaskellDepends = [ ··· 50758 50799 pname = "bugzilla-redhat"; 50759 50800 version = "1.0.1"; 50760 50801 sha256 = "19dir39yxqd5psf3gj4f3vhcbdad1np7374nkxfk0gg4xxvywcvi"; 50761 - revision = "1"; 50762 - editedCabalFile = "1yai855w6s9xjyswpx206hnryi1y6kda1310vcfff0ghl4gdxpxw"; 50802 + revision = "2"; 50803 + editedCabalFile = "0gqsmxrydy6isyfx4g8snpg50i3f0jcw9yyr385ys28zw7ak29qr"; 50763 50804 isLibrary = true; 50764 50805 isExecutable = true; 50765 50806 libraryHaskellDepends = [ ··· 52712 52753 license = lib.licenses.agpl3Only; 52713 52754 }) {}; 52714 52755 52715 - "cabal-appimage_0_4_0_0" = callPackage 52756 + "cabal-appimage_0_4_0_1" = callPackage 52716 52757 ({ mkDerivation, base, Cabal, filepath }: 52717 52758 mkDerivation { 52718 52759 pname = "cabal-appimage"; 52719 - version = "0.4.0.0"; 52720 - sha256 = "1ws5alrffpzr6yikwsq6yvazdqbclbsa509rc4csc7dmka8xc4dp"; 52760 + version = "0.4.0.1"; 52761 + sha256 = "1fk5dz1gnd5rkf58m9m1ynildmajv1if3ymr2xg2gylvnygwr4rn"; 52721 52762 libraryHaskellDepends = [ base Cabal filepath ]; 52722 52763 description = "Cabal support for creating AppImage applications"; 52723 52764 license = lib.licenses.agpl3Only; ··· 52885 52926 }: 52886 52927 mkDerivation { 52887 52928 pname = "cabal-clean"; 52888 - version = "0.2.20220819"; 52889 - sha256 = "17zrny2wyqfvyjdsqj6z18cdq66ycj66i6mpr122paa08608kyrn"; 52929 + version = "0.2.20230609"; 52930 + sha256 = "0mncw7729lgyw9qy9gh3r22kmvxkz2pi6v62xypiqjjriljhhkp2"; 52890 52931 isLibrary = false; 52891 52932 isExecutable = true; 52892 52933 executableHaskellDepends = [ ··· 53735 53776 pname = "cabal-rpm"; 53736 53777 version = "2.1.1"; 53737 53778 sha256 = "0p75a9q4hjrvbiqq3h7730h1b400z7v5v9kns703d09hr2l0zgg0"; 53779 + revision = "1"; 53780 + editedCabalFile = "1a4r0h635wzrg27b2mg2lhnsy8d5vrn3ps4bc7qzflx82rxmpvvl"; 53738 53781 isLibrary = false; 53739 53782 isExecutable = true; 53740 53783 executableHaskellDepends = [ ··· 54051 54094 license = lib.licenses.mit; 54052 54095 hydraPlatforms = lib.platforms.none; 54053 54096 mainProgram = "cabal2json"; 54097 + broken = true; 54054 54098 }) {}; 54055 54099 54056 54100 "cabal2nix" = callPackage ··· 55269 55313 }: 55270 55314 mkDerivation { 55271 55315 pname = "candid"; 55272 - version = "0.4.0.1"; 55273 - sha256 = "14np7yakm97d6scw5ldlsjacri317wwyingwsys7987zk01dfcln"; 55316 + version = "0.4.0.2"; 55317 + sha256 = "04gy0nlk28hd5glzbscfhh0f01kxvxvjy2pcis8m0n4r6n7l2qlr"; 55274 55318 isLibrary = true; 55275 55319 isExecutable = true; 55276 55320 libraryHaskellDepends = [ ··· 56991 57035 "cattrap" = callPackage 56992 57036 ({ mkDerivation, balkon, base, bytestring, containers, css-syntax 56993 57037 , fontconfig-pure, gl, GLUT, harfbuzz-pure, hspec, QuickCheck 56994 - , scientific, stylist-traits, text, xml 57038 + , scientific, stylist-traits, text, unordered-containers, xml 56995 57039 }: 56996 57040 mkDerivation { 56997 57041 pname = "cattrap"; 56998 - version = "0.1.0.0"; 56999 - sha256 = "0qp9lpq95a967yvdnzbdy5jzd6v0pvrr43v244fh4rkr5gh11j11"; 57042 + version = "0.2.0.0"; 57043 + sha256 = "1xl4nv2p1qcxijpvd4lgxx5qggzxf75jv2lz51yqw6wj6237c09s"; 57000 57044 isLibrary = true; 57001 57045 isExecutable = true; 57002 57046 libraryHaskellDepends = [ 57003 57047 balkon base bytestring containers css-syntax fontconfig-pure 57004 - harfbuzz-pure scientific stylist-traits text 57048 + harfbuzz-pure scientific stylist-traits text unordered-containers 57005 57049 ]; 57006 57050 executableHaskellDepends = [ 57007 57051 base css-syntax gl GLUT stylist-traits text xml 57008 57052 ]; 57009 57053 testHaskellDepends = [ 57010 57054 base css-syntax hspec QuickCheck stylist-traits 57055 + unordered-containers 57011 57056 ]; 57012 57057 description = "Lays out boxes according to the CSS Box Model"; 57013 57058 license = lib.licenses.gpl3Only; ··· 57937 57982 pname = "cgi"; 57938 57983 version = "3001.5.0.1"; 57939 57984 sha256 = "044gfqfdw5xdr6mzp5i3956a5fcj15j32zwzzd6ym15nxgrvjqh3"; 57985 + revision = "1"; 57986 + editedCabalFile = "0bl9lnqsm93hic23mdqfd9gykrk9fr3bbfm88qgyj07ycm6jbdaf"; 57940 57987 isLibrary = true; 57941 57988 isExecutable = true; 57942 57989 libraryHaskellDepends = [ ··· 58764 58811 testHaskellDepends = [ base doctest QuickCheck ]; 58765 58812 description = "Checks context free grammar for ambiguity using brute force up to given limit"; 58766 58813 license = lib.licenses.bsd3; 58814 + hydraPlatforms = lib.platforms.none; 58815 + broken = true; 58767 58816 }) {}; 58768 58817 58769 58818 "check-email" = callPackage ··· 60116 60165 maintainers = [ lib.maintainers.dschrempf ]; 60117 60166 }) {}; 60118 60167 60168 + "circular-enum" = callPackage 60169 + ({ mkDerivation, base, hspec }: 60170 + mkDerivation { 60171 + pname = "circular-enum"; 60172 + version = "0.1.0.0"; 60173 + sha256 = "0d8p2xavgvlnvzh65zw99sbjirnsv4hmhgxm2v49z0fg847c8liq"; 60174 + libraryHaskellDepends = [ base ]; 60175 + testHaskellDepends = [ base hspec ]; 60176 + description = "Make bounded enum types circular"; 60177 + license = lib.licenses.mit; 60178 + hydraPlatforms = lib.platforms.none; 60179 + broken = true; 60180 + }) {}; 60181 + 60119 60182 "circus" = callPackage 60120 60183 ({ mkDerivation, aeson, base, bytestring, containers, mtl, syb 60121 60184 , text ··· 62965 63028 pname = "co-log-concurrent"; 62966 63029 version = "0.5.1.0"; 62967 63030 sha256 = "07qmx9z03vmgq2cgz4352fsav7r1nx8n7svmrhg2lkdiyp0j7a59"; 62968 - revision = "2"; 62969 - editedCabalFile = "1ldh0c0927ay8wpamybaw66cz4rz3jskv8iwvxlxw8mmr4pwyvk0"; 63031 + revision = "3"; 63032 + editedCabalFile = "17pmkgly1882hbwa6b2qb0y1wh4x4nawhw1vl8fsy252caxkck0s"; 62970 63033 libraryHaskellDepends = [ base co-log-core stm ]; 62971 63034 description = "Asynchronous backend for co-log library"; 62972 63035 license = lib.licenses.mpl20; ··· 63495 63558 pname = "coercible-subtypes"; 63496 63559 version = "0.3.0.0"; 63497 63560 sha256 = "14swbn5509wb46iwgp2lj8hqi3ca82jacgq028cmwz35zsc1zjds"; 63561 + revision = "1"; 63562 + editedCabalFile = "0b60xy5pcfkys6a2q6ykzva9ld1gsq09j3chnq9vab9bxx4r92dh"; 63498 63563 libraryHaskellDepends = [ base profunctors ]; 63499 63564 description = "Coercible but only in one direction"; 63500 63565 license = lib.licenses.bsd3; ··· 64559 64624 ({ mkDerivation, base, ChasingBottoms, containers, deepseq 64560 64625 , doctest-exitcode-stdio, doctest-lib, guarded-allocation 64561 64626 , non-empty, prelude-compat, primitive, QuickCheck, semigroups 64562 - , storable-record, storablevector, tagged, transformers, utility-ht 64627 + , storable-record, storablevector, tagged, transformers 64628 + , transformers-compat, utility-ht 64563 64629 }: 64564 64630 mkDerivation { 64565 64631 pname = "comfort-array"; 64566 - version = "0.5.2.1"; 64567 - sha256 = "01vijksddhqmypikk0kgsw02fqdp3anvxvvmhimw11kg87n5dy7v"; 64568 - revision = "1"; 64569 - editedCabalFile = "1ly48lsdy806r323k7mxaz5wq5xhgiwlhvdmsg7qxa6jmb6iyx1n"; 64632 + version = "0.5.2.3"; 64633 + sha256 = "0x9pwk25bpq63nllqc00mmjbrvwzz0nw8pgxbdakpmm2ymyj9p14"; 64570 64634 libraryHaskellDepends = [ 64571 64635 base containers deepseq guarded-allocation non-empty prelude-compat 64572 64636 primitive QuickCheck semigroups storable-record storablevector 64573 - tagged transformers utility-ht 64637 + tagged transformers transformers-compat utility-ht 64574 64638 ]; 64575 64639 testHaskellDepends = [ 64576 64640 base ChasingBottoms containers deepseq doctest-exitcode-stdio ··· 64603 64667 maintainers = [ lib.maintainers.thielema ]; 64604 64668 }) {}; 64605 64669 64670 + "comfort-blas" = callPackage 64671 + ({ mkDerivation, base, blas-ffi, comfort-array, containers, deepseq 64672 + , doctest-exitcode-stdio, doctest-lib, guarded-allocation 64673 + , netlib-ffi, QuickCheck, transformers, utility-ht 64674 + }: 64675 + mkDerivation { 64676 + pname = "comfort-blas"; 64677 + version = "0.0"; 64678 + sha256 = "0abaza4n7v2lq4pbpxw6208i7aazxg1x59a2yr28dky7ishlq4px"; 64679 + libraryHaskellDepends = [ 64680 + base blas-ffi comfort-array containers deepseq guarded-allocation 64681 + netlib-ffi transformers utility-ht 64682 + ]; 64683 + testHaskellDepends = [ 64684 + base comfort-array containers doctest-exitcode-stdio doctest-lib 64685 + netlib-ffi QuickCheck utility-ht 64686 + ]; 64687 + description = "Numerical Basic Linear Algebra using BLAS"; 64688 + license = lib.licenses.bsd3; 64689 + maintainers = [ lib.maintainers.thielema ]; 64690 + }) {}; 64691 + 64606 64692 "comfort-fftw" = callPackage 64607 64693 ({ mkDerivation, base, comfort-array, deepseq 64608 64694 , doctest-exitcode-stdio, doctest-lib, fftw-ffi, netlib-ffi ··· 65301 65387 description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; 65302 65388 license = lib.licenses.bsd3; 65303 65389 hydraPlatforms = lib.platforms.none; 65390 + broken = true; 65304 65391 }) {}; 65305 65392 65306 65393 "compactmap" = callPackage ··· 66526 66613 }: 66527 66614 mkDerivation { 66528 66615 pname = "concurrency"; 66529 - version = "1.11.0.2"; 66530 - sha256 = "0c7nq4d29s49a3h9wzjdi3idm6r68vxn6ybphsbrk2vmwqyfq36y"; 66616 + version = "1.11.0.3"; 66617 + sha256 = "1qzwf71s5jgdmqqwzyzln5jhzp0rgzpwsi75nrbdjynby2lwvwn2"; 66531 66618 libraryHaskellDepends = [ 66532 66619 array atomic-primops base exceptions monad-control mtl stm 66533 66620 transformers ··· 67928 68015 pname = "config-value"; 67929 68016 version = "0.8.3"; 67930 68017 sha256 = "0pkcwxg91wali7986k03d7q940hb078hlsxfknqhkp2spr3d1f3w"; 67931 - revision = "1"; 67932 - editedCabalFile = "0j5prsqs7sq6sdpylphrym4r6p78circ6ixw7r55bwp92knqr5h8"; 68018 + revision = "2"; 68019 + editedCabalFile = "1phsi1a7j307kk2qw6a1l8kps2jicmxv1dc3j8yl9yy0v9q2v6j4"; 67933 68020 libraryHaskellDepends = [ array base containers pretty text ]; 67934 68021 libraryToolDepends = [ alex happy ]; 67935 68022 testHaskellDepends = [ base text ]; ··· 68241 68328 pname = "connection"; 68242 68329 version = "0.3.1"; 68243 68330 sha256 = "1nbmafhlg0wy4aa3p7amjddbamdz6avzrxn4py3lvhrjqn4raxax"; 68244 - revision = "1"; 68245 - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; 68331 + revision = "2"; 68332 + editedCabalFile = "1z6v1mhq3wvkbbvhaazlxli3d494iarsqvbx4qwx6xqn1pqz5jrx"; 68246 68333 libraryHaskellDepends = [ 68247 68334 base basement bytestring containers data-default-class network 68248 68335 socks tls x509 x509-store x509-system x509-validation ··· 69204 69291 ]; 69205 69292 description = "Continued fractions"; 69206 69293 license = lib.licenses.publicDomain; 69294 + hydraPlatforms = lib.platforms.none; 69295 + broken = true; 69207 69296 }) {}; 69208 69297 69209 69298 "continuum" = callPackage ··· 70200 70289 }: 70201 70290 mkDerivation { 70202 70291 pname = "core-telemetry"; 70203 - version = "0.2.9.1"; 70204 - sha256 = "0x36wzm4akxd5lq67hqmfrm1pddriw1mvq455bz308nabjdd65vl"; 70292 + version = "0.2.9.3"; 70293 + sha256 = "05q5rfsljmpf6v1v7r4gh8niqda6i6jrc2xgh54d7pfwmbqfzcm6"; 70205 70294 libraryHaskellDepends = [ 70206 70295 base bytestring core-data core-program core-text exceptions 70207 70296 http-streams io-streams mtl network-info random safe-exceptions ··· 71615 71704 pname = "credentials"; 71616 71705 version = "0.0.2"; 71617 71706 sha256 = "12637ggwm4g81r2ilsjxvdcyj7di74fxaxsfwz9rrs80659h2myd"; 71707 + revision = "1"; 71708 + editedCabalFile = "1rvz915rzf3qifdlhjdkhi3qciwm5m3a84p5viskbmklwvd3rz8h"; 71618 71709 libraryHaskellDepends = [ 71619 71710 aeson amazonka amazonka-core amazonka-dynamodb amazonka-kms base 71620 71711 bytestring conduit cryptonite exceptions lens memory retry ··· 72599 72690 }) {}; 72600 72691 72601 72692 "crypto-token" = callPackage 72602 - ({ mkDerivation, array, base, cryptonite, memory }: 72693 + ({ mkDerivation, array, base, crypton, memory }: 72603 72694 mkDerivation { 72604 72695 pname = "crypto-token"; 72605 - version = "0.0.1"; 72606 - sha256 = "1djn3fhxm639qarjjrax60p3kva54baj8sdcdlng02034kjzx6i6"; 72607 - libraryHaskellDepends = [ array base cryptonite memory ]; 72696 + version = "0.0.2"; 72697 + sha256 = "04rdbfdvnf8wdfzqg32rzxjp1gbk7yjzhdiyf5rmzym2qb7y8jpf"; 72698 + libraryHaskellDepends = [ array base crypton memory ]; 72608 72699 description = "crypto tokens"; 72609 72700 license = lib.licenses.bsd3; 72610 72701 }) {}; ··· 72912 73003 hydraPlatforms = lib.platforms.none; 72913 73004 }) {}; 72914 73005 73006 + "crypton" = callPackage 73007 + ({ mkDerivation, base, basement, bytestring, deepseq, gauge 73008 + , ghc-prim, integer-gmp, memory, random, tasty, tasty-hunit 73009 + , tasty-kat, tasty-quickcheck 73010 + }: 73011 + mkDerivation { 73012 + pname = "crypton"; 73013 + version = "0.31"; 73014 + sha256 = "1vjar7nvjc7gbyv0ij0sjlaqkd4nlxibs2asxpb4div844xm20ls"; 73015 + libraryHaskellDepends = [ 73016 + base basement bytestring deepseq ghc-prim integer-gmp memory 73017 + ]; 73018 + testHaskellDepends = [ 73019 + base bytestring memory tasty tasty-hunit tasty-kat tasty-quickcheck 73020 + ]; 73021 + benchmarkHaskellDepends = [ 73022 + base bytestring deepseq gauge memory random 73023 + ]; 73024 + description = "Cryptography Primitives sink"; 73025 + license = lib.licenses.bsd3; 73026 + }) {}; 73027 + 73028 + "crypton-connection" = callPackage 73029 + ({ mkDerivation, base, basement, bytestring, containers 73030 + , crypton-x509, crypton-x509-store, crypton-x509-system 73031 + , crypton-x509-validation, data-default-class, network, socks, tls 73032 + }: 73033 + mkDerivation { 73034 + pname = "crypton-connection"; 73035 + version = "0.3.1"; 73036 + sha256 = "1k0xv14yzikxlyix8qzqbjwjgfw99v1ngg4dnxfrfpsjysa3c1q3"; 73037 + libraryHaskellDepends = [ 73038 + base basement bytestring containers crypton-x509 crypton-x509-store 73039 + crypton-x509-system crypton-x509-validation data-default-class 73040 + network socks tls 73041 + ]; 73042 + description = "Simple and easy network connections API"; 73043 + license = lib.licenses.bsd3; 73044 + hydraPlatforms = lib.platforms.none; 73045 + }) {}; 73046 + 73047 + "crypton-x509" = callPackage 73048 + ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base 73049 + , bytestring, containers, crypton, hourglass, memory, mtl, pem 73050 + , tasty, tasty-quickcheck, transformers, x509 73051 + }: 73052 + mkDerivation { 73053 + pname = "crypton-x509"; 73054 + version = "1.7.6"; 73055 + sha256 = "1zyaz0krf08g36g30zr5wn8f2x51l4dj2zcjnhpiw9h05p54mdzb"; 73056 + revision = "1"; 73057 + editedCabalFile = "10a2x47znhbayyfr6fqgq27623akpycyjbfxz4hnavavf1x6ary5"; 73058 + libraryHaskellDepends = [ 73059 + asn1-encoding asn1-parse asn1-types base bytestring containers 73060 + crypton hourglass memory pem transformers 73061 + ]; 73062 + testHaskellDepends = [ 73063 + asn1-types base bytestring crypton hourglass mtl tasty 73064 + tasty-quickcheck x509 73065 + ]; 73066 + description = "X509 reader and writer"; 73067 + license = lib.licenses.bsd3; 73068 + hydraPlatforms = lib.platforms.none; 73069 + broken = true; 73070 + }) {}; 73071 + 73072 + "crypton-x509-store" = callPackage 73073 + ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 73074 + , containers, crypton, crypton-x509, directory, filepath, mtl, pem 73075 + , tasty, tasty-hunit 73076 + }: 73077 + mkDerivation { 73078 + pname = "crypton-x509-store"; 73079 + version = "1.6.9"; 73080 + sha256 = "0vr5b9cyf9x016wn1g0bryslf5nz8jq2sy8r3llwqfg02apihqiy"; 73081 + libraryHaskellDepends = [ 73082 + asn1-encoding asn1-types base bytestring containers crypton 73083 + crypton-x509 directory filepath mtl pem 73084 + ]; 73085 + testHaskellDepends = [ 73086 + base bytestring crypton-x509 tasty tasty-hunit 73087 + ]; 73088 + description = "X.509 collection accessing and storing methods"; 73089 + license = lib.licenses.bsd3; 73090 + hydraPlatforms = lib.platforms.none; 73091 + }) {}; 73092 + 73093 + "crypton-x509-system" = callPackage 73094 + ({ mkDerivation, base, bytestring, containers, crypton-x509 73095 + , crypton-x509-store, directory, filepath, mtl, pem, process 73096 + }: 73097 + mkDerivation { 73098 + pname = "crypton-x509-system"; 73099 + version = "1.6.7"; 73100 + sha256 = "1jilnr9715njlx1hqvg5lrsrwk12r04maypmh18di0sybwg2cdm4"; 73101 + libraryHaskellDepends = [ 73102 + base bytestring containers crypton-x509 crypton-x509-store 73103 + directory filepath mtl pem process 73104 + ]; 73105 + description = "Handle per-operating-system X.509 accessors and storage"; 73106 + license = lib.licenses.bsd3; 73107 + hydraPlatforms = lib.platforms.none; 73108 + }) {}; 73109 + 73110 + "crypton-x509-validation" = callPackage 73111 + ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 73112 + , containers, crypton, crypton-x509, crypton-x509-store 73113 + , data-default-class, hourglass, memory, mtl, pem, tasty 73114 + , tasty-hunit 73115 + }: 73116 + mkDerivation { 73117 + pname = "crypton-x509-validation"; 73118 + version = "1.6.12"; 73119 + sha256 = "1xjhwvmkcy47a6xiqxb3xy944ca7g660203jdrz5xzd46zibfq0f"; 73120 + libraryHaskellDepends = [ 73121 + asn1-encoding asn1-types base bytestring containers crypton 73122 + crypton-x509 crypton-x509-store data-default-class hourglass memory 73123 + mtl pem 73124 + ]; 73125 + testHaskellDepends = [ 73126 + asn1-encoding asn1-types base bytestring crypton crypton-x509 73127 + crypton-x509-store data-default-class hourglass memory tasty 73128 + tasty-hunit 73129 + ]; 73130 + description = "X.509 Certificate and CRL validation"; 73131 + license = lib.licenses.bsd3; 73132 + hydraPlatforms = lib.platforms.none; 73133 + }) {}; 73134 + 72915 73135 "cryptonite" = callPackage 72916 73136 ({ mkDerivation, base, basement, bytestring, deepseq, gauge 72917 73137 , ghc-prim, integer-gmp, memory, random, tasty, tasty-hunit ··· 73740 73960 description = "Haskell Implementation of Cuckoo Filters"; 73741 73961 license = lib.licenses.bsd3; 73742 73962 hydraPlatforms = lib.platforms.none; 73963 + broken = true; 73743 73964 }) {}; 73744 73965 73745 73966 "cuckoo-filter" = callPackage ··· 75866 76087 75867 76088 "data-diverse" = callPackage 75868 76089 ({ mkDerivation, base, containers, criterion, deepseq, ghc-prim 75869 - , hspec, tagged 75870 - }: 75871 - mkDerivation { 75872 - pname = "data-diverse"; 75873 - version = "4.7.0.0"; 75874 - sha256 = "0ccbb8kf2spaa2h6k10y26zzaij1w28vrifhc8c1ljlvsmc9dkf3"; 75875 - libraryHaskellDepends = [ 75876 - base containers deepseq ghc-prim tagged 75877 - ]; 75878 - testHaskellDepends = [ base hspec tagged ]; 75879 - benchmarkHaskellDepends = [ base criterion ]; 75880 - description = "Extensible records and polymorphic variants"; 75881 - license = lib.licenses.bsd3; 75882 - hydraPlatforms = lib.platforms.none; 75883 - broken = true; 75884 - }) {}; 75885 - 75886 - "data-diverse_4_7_1_0" = callPackage 75887 - ({ mkDerivation, base, containers, criterion, deepseq, ghc-prim 75888 76090 , hashable, hspec, tagged 75889 76091 }: 75890 76092 mkDerivation { ··· 77708 77910 license = lib.licenses.bsd3; 77709 77911 }) {}; 77710 77912 77913 + "daytripper" = callPackage 77914 + ({ mkDerivation, base, bytestring, directory, falsify 77915 + , optparse-applicative, tagged, tasty, tasty-hunit 77916 + }: 77917 + mkDerivation { 77918 + pname = "daytripper"; 77919 + version = "0.2.1"; 77920 + sha256 = "15bx4hla164cv328hv26fghpwjay3h96flfl7yajcfs9vfyamjyq"; 77921 + libraryHaskellDepends = [ 77922 + base bytestring directory falsify optparse-applicative tagged tasty 77923 + tasty-hunit 77924 + ]; 77925 + testHaskellDepends = [ 77926 + base bytestring directory falsify optparse-applicative tagged tasty 77927 + tasty-hunit 77928 + ]; 77929 + description = "Helpers for round-trip tests"; 77930 + license = lib.licenses.bsd3; 77931 + hydraPlatforms = lib.platforms.none; 77932 + broken = true; 77933 + }) {}; 77934 + 77711 77935 "dbcleaner" = callPackage 77712 77936 ({ mkDerivation, base, hspec, postgresql-simple, text }: 77713 77937 mkDerivation { ··· 77912 78136 }: 77913 78137 mkDerivation { 77914 78138 pname = "dbus"; 77915 - version = "1.2.28"; 77916 - sha256 = "0j2acn3i85v22vdf1kcjnwx2bagghdv5lil8h4i5v5wnydlaf4vw"; 78139 + version = "1.2.29"; 78140 + sha256 = "0c2c2lfckhzgf9n5hf2w39ryyb2q0wxsymrxr54y4j95353wdsn2"; 77917 78141 libraryHaskellDepends = [ 77918 78142 base bytestring cereal conduit containers deepseq exceptions 77919 78143 filepath lens network parsec random split template-haskell text ··· 78807 79031 pname = "decision-diagrams"; 78808 79032 version = "0.2.0.0"; 78809 79033 sha256 = "0l03mwig95h300rn1cfhd5ahwrlap6zsw09lwmkx6wkw6rjf4a5s"; 78810 - revision = "2"; 78811 - editedCabalFile = "0hp3k385p5lngfa3v3g8rnf34d3x0drk8i76mlk2c9bmbsl9dmfh"; 79034 + revision = "3"; 79035 + editedCabalFile = "11gb1dm0rladnjr8y2w15pba8dp4hr4kb2gshikq7xiiffgx70lz"; 78812 79036 libraryHaskellDepends = [ 78813 79037 base containers hashable hashtables intern mwc-random primitive 78814 79038 random reflection unordered-containers vector ··· 79300 79524 }: 79301 79525 mkDerivation { 79302 79526 pname = "dejafu"; 79303 - version = "2.4.0.4"; 79304 - sha256 = "0nf89l7ps8wrm97skkn8nmi7wmmnr3dxmvjmhs69abnlahj7zjqh"; 79527 + version = "2.4.0.5"; 79528 + sha256 = "1w38gxq3l4ch4g8rjm9wxlsf06a0334ln681jmrc27h3axn5fgh9"; 79305 79529 libraryHaskellDepends = [ 79306 79530 base concurrency containers contravariant deepseq exceptions 79307 79531 leancheck profunctors random transformers ··· 80468 80692 }: 80469 80693 mkDerivation { 80470 80694 pname = "desktop-portal"; 80471 - version = "0.2.0.0"; 80472 - sha256 = "0h5zdkr165jgpg5v2r16d4d77k3brqyn99imnfd6gavgddm41r1r"; 80695 + version = "0.2.1.0"; 80696 + sha256 = "0fa1d5fqvfixbvl50yrqhqiw1dc4wkjlh7qdd9iavn44iz4b06zq"; 80473 80697 libraryHaskellDepends = [ 80474 80698 base binary bytestring containers data-default-class dbus 80475 80699 modern-uri random text ··· 82167 82391 }: 82168 82392 mkDerivation { 82169 82393 pname = "diagrams-input"; 82170 - version = "0.1.1"; 82171 - sha256 = "0wad5xdvw33dp5fzqq9h52px3m81nsic35k9wd27ss23bfzgbb6b"; 82394 + version = "0.1.2"; 82395 + sha256 = "0p16anpvi627w89aqiz9hi1d8wi22pj35lsmk65gmrzbvp7hyzf3"; 82172 82396 libraryHaskellDepends = [ 82173 82397 attoparsec base base64-bytestring blaze-builder blaze-markup 82174 82398 bytestring colour conduit conduit-extra containers css-text ··· 82357 82581 }: 82358 82582 mkDerivation { 82359 82583 pname = "diagrams-rasterific"; 82360 - version = "1.4.2.2"; 82361 - sha256 = "1q0b3yh7wbi3yq0y8qswhvfmcz52f6njl4dawq9gl71jyfb2g8nq"; 82362 - revision = "2"; 82363 - editedCabalFile = "1vkk5r4k2myfdrvg3s7l8cmwi3wz1nydnj0011747s1qhgzx3fjf"; 82364 - libraryHaskellDepends = [ 82365 - base bytestring containers data-default-class diagrams-core 82366 - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels 82367 - lens mtl optparse-applicative Rasterific 82368 - ]; 82369 - testHaskellDepends = [ base diagrams-core diagrams-lib ]; 82370 - description = "Rasterific backend for diagrams"; 82371 - license = lib.licenses.bsd3; 82372 - }) {}; 82373 - 82374 - "diagrams-rasterific_1_4_2_3" = callPackage 82375 - ({ mkDerivation, base, bytestring, containers, data-default-class 82376 - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity 82377 - , hashable, JuicyPixels, lens, mtl, optparse-applicative 82378 - , Rasterific 82379 - }: 82380 - mkDerivation { 82381 - pname = "diagrams-rasterific"; 82382 82584 version = "1.4.2.3"; 82383 82585 sha256 = "0n46scybjs8mnhrnh5z3nkrah6f8v1rv4cca8k8mqzsf8ss30q5l"; 82384 82586 libraryHaskellDepends = [ ··· 82389 82591 testHaskellDepends = [ base diagrams-core diagrams-lib ]; 82390 82592 description = "Rasterific backend for diagrams"; 82391 82593 license = lib.licenses.bsd3; 82392 - hydraPlatforms = lib.platforms.none; 82393 82594 }) {}; 82394 82595 82395 82596 "diagrams-reflex" = callPackage ··· 82455 82656 pname = "diagrams-svg"; 82456 82657 version = "1.4.3.1"; 82457 82658 sha256 = "002lgmq78c6rsvds9bgm6m4w8j6qpg260mc52hf97wj6m050l237"; 82458 - revision = "4"; 82459 - editedCabalFile = "026mkj9fz64rdrap25mp8cwdrzwj90h35qg9kkn078fac93aaq10"; 82659 + revision = "5"; 82660 + editedCabalFile = "00hjvv9ncf5il7a09g2gh45bwah4jbnfnhb523jz9lhqqbzxfxny"; 82460 82661 libraryHaskellDepends = [ 82461 82662 base base64-bytestring bytestring colour containers diagrams-core 82462 82663 diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl ··· 85546 85747 85547 85748 "dns" = callPackage 85548 85749 ({ mkDerivation, array, async, attoparsec, auto-update, base 85549 - , base16-bytestring, base64-bytestring, bytestring, containers 85550 - , cryptonite, doctest, hourglass, hspec, hspec-discover, iproute 85551 - , mtl, network, psqueues, QuickCheck, word8 85750 + , base16-bytestring, base64-bytestring, bytestring 85751 + , case-insensitive, containers, cryptonite, doctest, hourglass 85752 + , hspec, hspec-discover, iproute, mtl, network, psqueues 85753 + , QuickCheck, word8 85552 85754 }: 85553 85755 mkDerivation { 85554 85756 pname = "dns"; 85555 - version = "4.1.0"; 85556 - sha256 = "1l80y48s9ryqcap587w41wrr2jzwh55gi16k7yib58xpqarcxqs5"; 85757 + version = "4.1.1"; 85758 + sha256 = "0f1i0w509qdzl3lpvkwrmkgfj3z694sac30ac4n46w1wx80b7cm9"; 85557 85759 libraryHaskellDepends = [ 85558 85760 array async attoparsec auto-update base base16-bytestring 85559 - base64-bytestring bytestring containers cryptonite hourglass 85560 - iproute mtl network psqueues 85761 + base64-bytestring bytestring case-insensitive containers cryptonite 85762 + hourglass iproute mtl network psqueues 85561 85763 ]; 85562 85764 testHaskellDepends = [ 85563 - base bytestring doctest hspec iproute network QuickCheck word8 85765 + base bytestring case-insensitive doctest hspec iproute network 85766 + QuickCheck word8 85564 85767 ]; 85565 85768 testToolDepends = [ hspec-discover ]; 85566 85769 doHaddock = false; ··· 86387 86590 }: 86388 86591 mkDerivation { 86389 86592 pname = "doctest-extract"; 86390 - version = "0.1"; 86391 - sha256 = "1ncrq67d6zcqw5al5m2g7q6ys8rxhsq8rrzbj1dlsyl4q63vyrms"; 86392 - revision = "4"; 86393 - editedCabalFile = "021s7c8zj5b2ssva02ssnhcrn7avrshidj29zdpccipr4xy1vd0v"; 86593 + version = "0.1.1"; 86594 + sha256 = "15hizi4m879c2rahxxl78smpr5iqwry05jma58ldsypmwrlyxniz"; 86394 86595 isLibrary = false; 86395 86596 isExecutable = true; 86396 86597 executableHaskellDepends = [ ··· 87071 87272 mainProgram = "dotenv"; 87072 87273 }) {}; 87073 87274 87074 - "dotenv_0_11_0_0" = callPackage 87075 - ({ mkDerivation, base, base-compat, containers, directory 87076 - , exceptions, hspec, hspec-discover, hspec-megaparsec, megaparsec 87077 - , mtl, optparse-applicative, process, shellwords, text 87275 + "dotenv_0_11_0_1" = callPackage 87276 + ({ mkDerivation, base, base-compat, containers, data-default-class 87277 + , directory, exceptions, hspec, hspec-discover, hspec-megaparsec 87278 + , megaparsec, mtl, optparse-applicative, process, shellwords, text 87078 87279 }: 87079 87280 mkDerivation { 87080 87281 pname = "dotenv"; 87081 - version = "0.11.0.0"; 87082 - sha256 = "0cw24w6vkc17ahf0s5l2bgvv7yi0j5rlr549gz1wwa462qm9mlgi"; 87282 + version = "0.11.0.1"; 87283 + sha256 = "0z09l3dmj9dhq8vgkdiz07wjmn3i0d9fg6zqs9ryjnqdfa27yy4i"; 87083 87284 isLibrary = true; 87084 87285 isExecutable = true; 87085 87286 enableSeparateDataOutput = true; 87086 87287 libraryHaskellDepends = [ 87087 - base containers directory exceptions megaparsec mtl process 87088 - shellwords text 87288 + base containers data-default-class directory exceptions megaparsec 87289 + mtl process shellwords text 87089 87290 ]; 87090 87291 executableHaskellDepends = [ 87091 87292 base base-compat megaparsec optparse-applicative process text 87092 87293 ]; 87093 87294 testHaskellDepends = [ 87094 - base base-compat containers directory exceptions hspec 87095 - hspec-megaparsec megaparsec mtl process shellwords text 87295 + base hspec hspec-megaparsec megaparsec process text 87096 87296 ]; 87097 87297 testToolDepends = [ hspec-discover ]; 87098 87298 description = "Loads environment variables from dotenv files"; ··· 87665 87865 }: 87666 87866 mkDerivation { 87667 87867 pname = "dprox"; 87668 - version = "0.4.1"; 87669 - sha256 = "1gqx18pfq749hzgq5q7c146cfkdw688l2398pxm59wz65g19bvl4"; 87868 + version = "0.4.2"; 87869 + sha256 = "1l0bnhhprx944kwn3k7acyh1129wi9bim9rikc86raws8nmfqzwp"; 87670 87870 isLibrary = false; 87671 87871 isExecutable = true; 87672 87872 executableHaskellDepends = [ ··· 91258 91458 }: 91259 91459 mkDerivation { 91260 91460 pname = "elasticsearch-interchange"; 91261 - version = "0.1.0.0"; 91262 - sha256 = "0js90hcq3m1b928fywcvm8yyc1d35ya630zxdxpbylmqv4h0yz6y"; 91461 + version = "0.2.0.0"; 91462 + sha256 = "0mh8fb6x99xx3hz41g90pah5zj3dns5q8jy310klsh615hym72bp"; 91263 91463 libraryHaskellDepends = [ 91264 91464 base bytebuild json-query json-syntax primitive text-short 91265 91465 unpacked-maybe-text ··· 91999 92199 }: 92000 92200 mkDerivation { 92001 92201 pname = "elynx"; 92002 - version = "0.7.2.0"; 92003 - sha256 = "0dx2s3p1c59mg6wyw2g2gjr3q32gqmzycrhg98f48v9g2zy8icy3"; 92202 + version = "0.7.2.1"; 92203 + sha256 = "031wmjf9vbfkvcrkqjy0c27g9c7qkmcdnldq51zc9jpxnhy03s6y"; 92004 92204 isLibrary = false; 92005 92205 isExecutable = true; 92006 92206 executableHaskellDepends = [ ··· 92019 92219 }: 92020 92220 mkDerivation { 92021 92221 pname = "elynx-markov"; 92022 - version = "0.7.2.0"; 92023 - sha256 = "1qwizz89cckmp6xfn88g2psqs9ajirj26qpyp488ilvmcckgj91g"; 92222 + version = "0.7.2.1"; 92223 + sha256 = "0zp3xjvbpnd6i2j8aviil82zah0qf2j8m4ys22xbggsmr2jmcyfr"; 92024 92224 libraryHaskellDepends = [ 92025 92225 async attoparsec base bytestring containers elynx-seq hmatrix 92026 92226 integration math-functions mwc-random random statistics vector ··· 92038 92238 ({ mkDerivation, attoparsec, base, bytestring, hspec }: 92039 92239 mkDerivation { 92040 92240 pname = "elynx-nexus"; 92041 - version = "0.7.2.0"; 92042 - sha256 = "051nqb3sppppymhs022srmbxndzjvp4slwjb1swhvp0f5njwi3xg"; 92241 + version = "0.7.2.1"; 92242 + sha256 = "1lfadvw43m97jv4if1prb4xnnsbva96fjplhbzgvvc2anpaarfy0"; 92043 92243 libraryHaskellDepends = [ attoparsec base bytestring ]; 92044 92244 testHaskellDepends = [ base hspec ]; 92045 92245 description = "Import and export Nexus files"; ··· 92054 92254 }: 92055 92255 mkDerivation { 92056 92256 pname = "elynx-seq"; 92057 - version = "0.7.2.0"; 92058 - sha256 = "1xj27aw1w6pbaalk1xkl1v9q3b8asklr60j5hcpp823cc395wz4p"; 92257 + version = "0.7.2.1"; 92258 + sha256 = "0cp44r66cb3vw5dahlzxk7gqqb2dafy4diygc28k0h9az4iv7w8k"; 92059 92259 libraryHaskellDepends = [ 92060 92260 aeson attoparsec base bytestring containers matrices parallel 92061 92261 primitive random vector vector-th-unbox word8 ··· 92076 92276 }: 92077 92277 mkDerivation { 92078 92278 pname = "elynx-tools"; 92079 - version = "0.7.2.0"; 92080 - sha256 = "1cj139n51gr372aj2d8ahqrinlif7b3zyza6dqqa16nb01xh9qi5"; 92279 + version = "0.7.2.1"; 92280 + sha256 = "01cw6n3br15alrjhwf3bx7mn0vbxkdwn51cdg004i0s35fzb5dxn"; 92081 92281 libraryHaskellDepends = [ 92082 92282 aeson attoparsec base base16-bytestring bytestring 92083 92283 cryptohash-sha256 directory hmatrix optparse-applicative random ··· 92096 92296 }: 92097 92297 mkDerivation { 92098 92298 pname = "elynx-tree"; 92099 - version = "0.7.2.0"; 92100 - sha256 = "16ryvri7maxzsd61f0vim2lqw6xplnpyaa0lbyjalvrdqiaqb4is"; 92299 + version = "0.7.2.1"; 92300 + sha256 = "018hk2gsh1qf6vk4vcs76mc7sakvq34a2lamlwasgw8q155mc45g"; 92101 92301 libraryHaskellDepends = [ 92102 92302 aeson attoparsec base bytestring comonad containers 92103 92303 data-default-class deepseq elynx-nexus math-functions parallel ··· 94401 94601 }: 94402 94602 mkDerivation { 94403 94603 pname = "esqueleto"; 94404 - version = "3.5.9.0"; 94405 - sha256 = "0r9p4kg3m9g4cpd9lcw9ljzf9wrl8wwdcp4gqwidg75wbpy3fy47"; 94604 + version = "3.5.10.0"; 94605 + sha256 = "0nbb6l4q22y8rwcjsrwqri3ndjn4rslpnglj3nkh00rixdm9jhsr"; 94406 94606 libraryHaskellDepends = [ 94407 94607 aeson attoparsec base blaze-html bytestring conduit containers 94408 94608 monad-logger persistent resourcet tagged template-haskell text time ··· 95130 95330 pname = "evdev-streamly"; 95131 95331 version = "0.0.2.0"; 95132 95332 sha256 = "0vrkg3d1171lsr71k3vrcf9vbl18mdnvpi02sxvzjp2zbv3gs7v6"; 95333 + revision = "1"; 95334 + editedCabalFile = "11w831ml0dn9v3gchv8465w43ml8cgcfwgxmpwnjy6v8p34q14qm"; 95133 95335 libraryHaskellDepends = [ 95134 95336 base bytestring containers evdev extra filepath-bytestring 95135 95337 rawfilepath streamly streamly-fsnotify unix ··· 95895 96097 license = lib.licenses.bsd3; 95896 96098 hydraPlatforms = lib.platforms.none; 95897 96099 mainProgram = "ewe"; 96100 + broken = true; 95898 96101 }) {}; 95899 96102 95900 96103 "ex-pool" = callPackage ··· 98685 98888 98686 98889 "fastparser" = callPackage 98687 98890 ({ mkDerivation, base, bytestring, bytestring-lexing, containers 98688 - , criterion, kan-extensions, microlens, thyme, transformers 98689 - , vector-space 98891 + , kan-extensions, microlens, thyme, transformers, vector-space 98690 98892 }: 98691 98893 mkDerivation { 98692 98894 pname = "fastparser"; 98693 - version = "0.5.0"; 98694 - sha256 = "0pxd2f6f0a6kckqmkkafh9zx11x75x1zx1z90snzj3j8s4jcfg4y"; 98695 - revision = "1"; 98696 - editedCabalFile = "0h64i8z71h0hfdc89bpqqamjn733mxshmlpapa4gvlnbzylm3cwr"; 98895 + version = "0.6.0"; 98896 + sha256 = "0y0s1p4kzwgcmmdxybi8sp3jc68g95nbya12xd0afqxw1li6qabs"; 98697 98897 libraryHaskellDepends = [ 98698 98898 base bytestring bytestring-lexing containers kan-extensions 98699 98899 microlens thyme transformers vector-space 98700 98900 ]; 98701 - benchmarkHaskellDepends = [ base bytestring criterion ]; 98901 + benchmarkHaskellDepends = [ base bytestring ]; 98702 98902 description = "A fast, but bare bones, bytestring parser combinators library"; 98703 98903 license = lib.licenses.bsd3; 98704 98904 hydraPlatforms = lib.platforms.none; ··· 100274 100474 pname = "fft"; 100275 100475 version = "0.1.8.7"; 100276 100476 sha256 = "1kkdw08qzsgjgg9z7pf5876cn2hlq22cgvc3k2amidn317n2d6vz"; 100477 + revision = "1"; 100478 + editedCabalFile = "12zcr05lgc78jvpwhvsxzmcra1x7rrzlxgqlq8hh2jw4r72589lz"; 100277 100479 libraryHaskellDepends = [ 100278 100480 array base carray ix-shapable storable-complex syb transformers 100279 100481 ]; ··· 100281 100483 testHaskellDepends = [ base carray QuickCheck storable-complex ]; 100282 100484 description = "Bindings to the FFTW library"; 100283 100485 license = lib.licenses.bsd3; 100284 - hydraPlatforms = lib.platforms.none; 100285 100486 maintainers = [ lib.maintainers.thielema ]; 100286 - broken = true; 100287 100487 }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; 100288 100488 100289 100489 "fftw-ffi" = callPackage ··· 104887 105087 ({ mkDerivation, base, basement, gauge, ghc-prim }: 104888 105088 mkDerivation { 104889 105089 pname = "foundation"; 104890 - version = "0.0.29"; 104891 - sha256 = "1hbkh6a3g6wsj2z48pjimd7djkm82mdxfwc24bnmmzag8amrp0rl"; 105090 + version = "0.0.30"; 105091 + sha256 = "11hdqd01ggdr7fjw3w00giay06bzz97qqiiq60vi1l1dzz1wrwzn"; 104892 105092 libraryHaskellDepends = [ base basement ghc-prim ]; 104893 105093 testHaskellDepends = [ base basement ]; 104894 105094 benchmarkHaskellDepends = [ base basement gauge ]; ··· 105021 105221 mainProgram = "fourmolu"; 105022 105222 }) {}; 105023 105223 105024 - "fourmolu_0_12_0_0" = callPackage 105224 + "fourmolu_0_13_0_0" = callPackage 105025 105225 ({ mkDerivation, aeson, ansi-terminal, array, base, binary 105026 105226 , bytestring, Cabal-syntax, containers, deepseq, Diff, directory 105027 105227 , file-embed, filepath, ghc-lib-parser, hspec, hspec-discover ··· 105031 105231 }: 105032 105232 mkDerivation { 105033 105233 pname = "fourmolu"; 105034 - version = "0.12.0.0"; 105035 - sha256 = "0689w4h3y9qr8sxzphklns59jk31ld8y6dzk424xav5zaharmjjp"; 105036 - revision = "2"; 105037 - editedCabalFile = "0xwfsxn8n7bz47yivab2yjvmww51b2fmvbwm2wbrni11c8fh89z3"; 105234 + version = "0.13.0.0"; 105235 + sha256 = "0mx2zmr8i9qvqajri1sc7hzl9swz9s7qswi8vqf90hcz2lfc80ji"; 105038 105236 isLibrary = true; 105039 105237 isExecutable = true; 105040 105238 libraryHaskellDepends = [ ··· 105043 105241 ghc-lib-parser megaparsec MemoTrie mtl scientific syb text yaml 105044 105242 ]; 105045 105243 executableHaskellDepends = [ 105046 - base containers directory filepath ghc-lib-parser 105244 + base Cabal-syntax containers directory filepath ghc-lib-parser 105047 105245 optparse-applicative text th-env yaml 105048 105246 ]; 105049 105247 testHaskellDepends = [ 105050 105248 base Cabal-syntax containers Diff directory filepath ghc-lib-parser 105051 - hspec hspec-megaparsec path path-io pretty process QuickCheck 105052 - temporary text 105249 + hspec hspec-megaparsec megaparsec path path-io pretty process 105250 + QuickCheck temporary text 105053 105251 ]; 105054 105252 testToolDepends = [ hspec-discover ]; 105055 105253 description = "A formatter for Haskell source code"; ··· 105073 105271 benchmarkHaskellDepends = [ base tasty-bench ]; 105074 105272 description = "IEEE 754-2019 compliant operations"; 105075 105273 license = lib.licenses.bsd3; 105274 + hydraPlatforms = lib.platforms.none; 105275 + broken = true; 105076 105276 }) {}; 105077 105277 105078 105278 "fpco-api" = callPackage ··· 105475 105675 hydraPlatforms = lib.platforms.none; 105476 105676 }) {}; 105477 105677 105478 - "freckle-app_1_9_0_2" = callPackage 105678 + "freckle-app_1_9_0_3" = callPackage 105479 105679 ({ mkDerivation, aeson, aws-xray-client-persistent 105480 105680 , aws-xray-client-wai, base, Blammo, bugsnag, bytestring 105481 105681 , case-insensitive, cassava, conduit, conduit-extra, containers ··· 105493 105693 }: 105494 105694 mkDerivation { 105495 105695 pname = "freckle-app"; 105496 - version = "1.9.0.2"; 105497 - sha256 = "13hsccdflfpwkjbr6420s6c9pzp2irszj1gah6n54kiirsfw44h0"; 105696 + version = "1.9.0.3"; 105697 + sha256 = "15fih8ky1cg9sn25hkwxi5iwy0zn76lbs308saaby6kkgifqm8yv"; 105498 105698 libraryHaskellDepends = [ 105499 105699 aeson aws-xray-client-persistent aws-xray-client-wai base Blammo 105500 105700 bugsnag bytestring case-insensitive cassava conduit conduit-extra ··· 105588 105788 }: 105589 105789 mkDerivation { 105590 105790 pname = "free-algebras"; 105591 - version = "0.1.0.2"; 105592 - sha256 = "0n7zika42ljdkn5yyn70hs6p5l49n60f5cl7azpxkzvzv97l8ih8"; 105791 + version = "0.1.1.0"; 105792 + sha256 = "16y0jvvsz1wr1w0hibnh94r438576ciq5snwjha8ca5b4c9ym980"; 105593 105793 libraryHaskellDepends = [ 105594 105794 base containers data-fix dlist free groups kan-extensions mtl 105595 105795 transformers ··· 105631 105831 }: 105632 105832 mkDerivation { 105633 105833 pname = "free-category"; 105634 - version = "0.0.4.4"; 105635 - sha256 = "17xv80scr6pdyzkynk56mlcz4inbfd673095j7z9914s0d31c6cf"; 105834 + version = "0.0.4.5"; 105835 + sha256 = "0ag52rmxrlhf5afk6nhrcpqwknvqrk9rhfn977zn1i0ad5b6ghag"; 105636 105836 libraryHaskellDepends = [ base free-algebras ]; 105637 105837 testHaskellDepends = [ 105638 105838 base free-algebras QuickCheck tasty tasty-quickcheck ··· 106329 106529 ]; 106330 106530 description = "A functional image processing library for Haskell"; 106331 106531 license = lib.licenses.lgpl3Only; 106532 + hydraPlatforms = lib.platforms.none; 106533 + broken = true; 106332 106534 }) {}; 106333 106535 106334 106536 "friday-devil" = callPackage ··· 106363 106565 ]; 106364 106566 description = "Converts between the Friday and JuicyPixels image types"; 106365 106567 license = lib.licenses.bsd3; 106568 + hydraPlatforms = lib.platforms.none; 106366 106569 }) {}; 106367 106570 106368 106571 "friday-scale-dct" = callPackage ··· 107669 107872 }: 107670 107873 mkDerivation { 107671 107874 pname = "fused-effects"; 107672 - version = "1.1.2.1"; 107673 - sha256 = "1h9nnfn0i89gr8151dlxcyjh9467l25y6glyy5zbqkhwxglmjns0"; 107875 + version = "1.1.2.2"; 107876 + sha256 = "00m1lnn8zsb6iniyjmmbgiz7kd5c5kl7rxqqxlc2dkb4hpyrm4v5"; 107674 107877 libraryHaskellDepends = [ base transformers unliftio-core ]; 107675 107878 testHaskellDepends = [ 107676 107879 base containers hedgehog hedgehog-fn inspection-testing ··· 107887 108090 pname = "futhark"; 107888 108091 version = "0.24.3"; 107889 108092 sha256 = "0y83phng77asca4pk66w8grx8b4d1ip7xi77vrfjc04yjagrj1ba"; 107890 - revision = "1"; 107891 - editedCabalFile = "10784arp172kdq69a33fcdrzxy0p9ymf0i2vr1ywjrsbcl05sln9"; 108093 + revision = "2"; 108094 + editedCabalFile = "0pzhdg410mnxz0116lpr9ax8x0skg2gymhqhm730dn17sd7z6y56"; 107892 108095 isLibrary = true; 107893 108096 isExecutable = true; 107894 108097 libraryHaskellDepends = [ ··· 110600 110803 appendful base criterion genvalidity-criterion 110601 110804 ]; 110602 110805 license = lib.licenses.mit; 110603 - hydraPlatforms = lib.platforms.none; 110604 110806 }) {}; 110605 110807 110606 110808 "genvalidity-bytestring" = callPackage ··· 110720 110922 ]; 110721 110923 description = "Generators for typed directory forests"; 110722 110924 license = lib.licenses.mit; 110723 - hydraPlatforms = lib.platforms.none; 110724 110925 }) {}; 110725 110926 110726 110927 "genvalidity-hspec" = callPackage ··· 111037 111238 testToolDepends = [ sydtest-discover ]; 111038 111239 description = "Standard properties for functions on `Validity` types for the sydtest framework"; 111039 111240 license = lib.licenses.mit; 111040 - hydraPlatforms = lib.platforms.none; 111041 111241 }) {}; 111042 111242 111043 111243 "genvalidity-sydtest-aeson" = callPackage ··· 111060 111260 testToolDepends = [ sydtest-discover ]; 111061 111261 description = "Standard spec's for aeson-related instances in sydtest"; 111062 111262 license = lib.licenses.mit; 111063 - hydraPlatforms = lib.platforms.none; 111064 111263 }) {}; 111065 111264 111066 111265 "genvalidity-sydtest-hashable" = callPackage ··· 111082 111281 testToolDepends = [ sydtest-discover ]; 111083 111282 description = "Standard spec's for Hashable instances for sydtest"; 111084 111283 license = lib.licenses.mit; 111085 - hydraPlatforms = lib.platforms.none; 111086 111284 }) {}; 111087 111285 111088 111286 "genvalidity-sydtest-lens" = callPackage ··· 111102 111300 testToolDepends = [ sydtest-discover ]; 111103 111301 description = "Standard spec's for lens for sydtest"; 111104 111302 license = lib.licenses.mit; 111105 - hydraPlatforms = lib.platforms.none; 111106 111303 }) {}; 111107 111304 111108 111305 "genvalidity-sydtest-persistent" = callPackage ··· 111125 111322 testToolDepends = [ sydtest-discover ]; 111126 111323 description = "Standard spec's for persistent-related instances for sydtest"; 111127 111324 license = lib.licenses.mit; 111128 - hydraPlatforms = lib.platforms.none; 111129 111325 }) {}; 111130 111326 111131 111327 "genvalidity-text" = callPackage ··· 111402 111598 }) {}; 111403 111599 111404 111600 "geojson" = callPackage 111405 - ({ mkDerivation, aeson, base, bytestring, containers, deepseq, lens 111406 - , scientific, semigroups, tasty, tasty-hspec, tasty-quickcheck 111407 - , text, transformers, validation, vector 111601 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 111602 + , hspec, lens, scientific, semigroups, tasty, tasty-hspec 111603 + , tasty-quickcheck, text, transformers, validation, vector 111408 111604 }: 111409 111605 mkDerivation { 111410 111606 pname = "geojson"; 111411 - version = "4.1.0"; 111412 - sha256 = "1p8vl13g9axbqqj3qbl453p4qwwmz0xjhpa5vmlk1fjznr04mdx6"; 111607 + version = "4.1.1"; 111608 + sha256 = "16b5mvn4as3xi620n6wr3gfd138p48c4sif2bxqw915fwm4z10sl"; 111413 111609 libraryHaskellDepends = [ 111414 111610 aeson base containers deepseq lens scientific semigroups text 111415 111611 transformers validation vector 111416 111612 ]; 111417 111613 testHaskellDepends = [ 111418 - aeson base bytestring containers tasty tasty-hspec tasty-quickcheck 111419 - text validation 111614 + aeson base bytestring containers hspec tasty tasty-hspec 111615 + tasty-quickcheck text validation 111420 111616 ]; 111421 111617 description = "A thin GeoJSON Layer above the aeson library"; 111422 111618 license = lib.licenses.bsd3; ··· 111469 111665 }) {}; 111470 111666 111471 111667 "geomancy" = callPackage 111472 - ({ mkDerivation, base, containers, criterion, deepseq, hedgehog 111473 - , linear, mono-traversable, ptrdiff, simple-affine-space 111668 + ({ mkDerivation, base, containers, criterion, deepseq, gl-block 111669 + , hedgehog, linear, mono-traversable, ptrdiff, simple-affine-space 111474 111670 }: 111475 111671 mkDerivation { 111476 111672 pname = "geomancy"; 111477 - version = "0.2.5.0"; 111478 - sha256 = "0mpp2cl5404kxsk2ci8hqawrv6w57adjp92x6jraxf5xghrcs2d6"; 111673 + version = "0.2.6.0"; 111674 + sha256 = "14imwg21ig2n1g4l6z55wbkrjg9mzswgqdirzbdvp2y0krk6259q"; 111479 111675 libraryHaskellDepends = [ 111480 - base containers deepseq mono-traversable ptrdiff 111676 + base containers deepseq gl-block mono-traversable ptrdiff 111481 111677 simple-affine-space 111482 111678 ]; 111483 111679 testHaskellDepends = [ ··· 111612 111808 license = lib.licenses.bsd3; 111613 111809 }) {}; 111614 111810 111811 + "gev-lib" = callPackage 111812 + ({ mkDerivation, base, gev-dist, HUnit, random }: 111813 + mkDerivation { 111814 + pname = "gev-lib"; 111815 + version = "0.2.0.1"; 111816 + sha256 = "1ql1m2ywcma6dpchg255q9r2dq612kx03jwa6vgzinh8va51mc9l"; 111817 + libraryHaskellDepends = [ base random ]; 111818 + testHaskellDepends = [ base gev-dist HUnit ]; 111819 + description = "The family of Extreme Value Distributions"; 111820 + license = lib.licenses.isc; 111821 + hydraPlatforms = lib.platforms.none; 111822 + broken = true; 111823 + }) {gev-dist = null;}; 111824 + 111615 111825 "gf" = callPackage 111616 111826 ({ mkDerivation, alex, array, base, bytestring, Cabal, cgi 111617 111827 , containers, directory, exceptions, filepath, ghc-prim, happy ··· 111981 112191 }: 111982 112192 mkDerivation { 111983 112193 pname = "ghc-debug-brick"; 111984 - version = "0.4.0.1"; 111985 - sha256 = "0qnx34yasr0f0bwpnm1qsybxp5aqjfhrhxxzr0477rhz5simnbys"; 112194 + version = "0.5.0.0"; 112195 + sha256 = "1k5gl9paz5z8w9h49ilpjxk0k73qyk2rwncnfhx11b64y2n74w2m"; 111986 112196 isLibrary = false; 111987 112197 isExecutable = true; 111988 112198 executableHaskellDepends = [ ··· 111998 112208 111999 112209 "ghc-debug-client" = callPackage 112000 112210 ({ mkDerivation, async, base, binary, bitwise, bytestring 112001 - , containers, contra-tracer, directory, dom-lt, eventlog2html 112002 - , filepath, ghc-debug-common, ghc-debug-convention, ghc-prim 112003 - , hashable, language-dot, monoidal-containers, mtl, network 112004 - , process, psqueues, stm, text, unordered-containers 112211 + , containers, contra-tracer, directory, dom-lt, filepath 112212 + , ghc-debug-common, ghc-debug-convention, ghc-prim, hashable 112213 + , language-dot, monoidal-containers, mtl, network, process 112214 + , psqueues, stm, text, unordered-containers 112005 112215 }: 112006 112216 mkDerivation { 112007 112217 pname = "ghc-debug-client"; 112008 - version = "0.4.0.1"; 112009 - sha256 = "0yfcl2hz9pzbyavp6xc08my1q37cngdqq85bdf4d1xkb5hvschib"; 112218 + version = "0.5.0.0"; 112219 + sha256 = "0djv1y0fxg0vzr0baxml023i3a9di2zy0xhyxqg8wb0j9k5pszh0"; 112010 112220 libraryHaskellDepends = [ 112011 112221 async base binary bitwise bytestring containers contra-tracer 112012 - directory dom-lt eventlog2html filepath ghc-debug-common 112013 - ghc-debug-convention ghc-prim hashable language-dot 112014 - monoidal-containers mtl network process psqueues stm text 112015 - unordered-containers 112222 + directory dom-lt filepath ghc-debug-common ghc-debug-convention 112223 + ghc-prim hashable language-dot monoidal-containers mtl network 112224 + process psqueues stm text unordered-containers 112016 112225 ]; 112017 112226 description = "Useful functions for writing heap analysis tools which use ghc-debug"; 112018 112227 license = lib.licenses.bsd3; ··· 112025 112234 }: 112026 112235 mkDerivation { 112027 112236 pname = "ghc-debug-common"; 112028 - version = "0.4.0.0"; 112029 - sha256 = "1h3a1j97xnfpki25nsc80kql751xz59i3cvcf12qh97ii2vziwk5"; 112237 + version = "0.5.0.0"; 112238 + sha256 = "0x2phkcnbfybkfy94g6jyc1s4wcls1r8ws4b5wnjl58pf8q09ni2"; 112030 112239 libraryHaskellDepends = [ 112031 112240 array base binary bytestring containers cpu deepseq directory 112032 112241 dom-lt filepath ghc-debug-convention ghc-heap hashable transformers ··· 112040 112249 ({ mkDerivation, base, directory, filepath }: 112041 112250 mkDerivation { 112042 112251 pname = "ghc-debug-convention"; 112043 - version = "0.4.0.0"; 112044 - sha256 = "0mmghsf4g4hwls1cldmqzjq9sfnwwp0d94ahxryxd0dla7x423s6"; 112252 + version = "0.5.0.0"; 112253 + sha256 = "1hg2b3g7nqba5y4s1imaikx9y8vm4i6cb47nbnp07zwqg9zjlq3k"; 112045 112254 libraryHaskellDepends = [ base directory filepath ]; 112046 112255 description = "Definitions needed by ghc-debug-stub and ghc-debug-common"; 112047 112256 license = lib.licenses.bsd3; ··· 112053 112262 }: 112054 112263 mkDerivation { 112055 112264 pname = "ghc-debug-stub"; 112056 - version = "0.4.0.0"; 112057 - sha256 = "0qnshkk3cw26l6x8c415l4s99qkpq5hgl1p7n85w8kbi1xzlgm0w"; 112265 + version = "0.5.0.0"; 112266 + sha256 = "1ykwfp841wbnqgsvvspixr95ars1np2khjlzycmb3q7cxv2xn2lw"; 112058 112267 libraryHaskellDepends = [ 112059 112268 base directory filepath ghc-debug-convention ghc-prim 112060 112269 ]; ··· 112299 112508 license = lib.licenses.bsd3; 112300 112509 }) {}; 112301 112510 112302 - "ghc-exactprint_1_6_1_1" = callPackage 112511 + "ghc-exactprint_1_6_1_3" = callPackage 112303 112512 ({ mkDerivation }: 112304 112513 mkDerivation { 112305 112514 pname = "ghc-exactprint"; 112306 - version = "1.6.1.1"; 112307 - sha256 = "0dzl5nhiwi6a5jq226qjq0vlb70iq50hk0kv0h675j4pr93v50w8"; 112515 + version = "1.6.1.3"; 112516 + sha256 = "1qsb799dr4hl0f5m1yhrk50nc29w3wiadkvlzgn2426zsg0ixfpy"; 112308 112517 isLibrary = true; 112309 112518 isExecutable = true; 112310 112519 description = "ExactPrint for GHC"; ··· 112312 112521 hydraPlatforms = lib.platforms.none; 112313 112522 }) {}; 112314 112523 112315 - "ghc-exactprint_1_7_0_0" = callPackage 112524 + "ghc-exactprint_1_7_0_1" = callPackage 112316 112525 ({ mkDerivation }: 112317 112526 mkDerivation { 112318 112527 pname = "ghc-exactprint"; 112319 - version = "1.7.0.0"; 112320 - sha256 = "05api7p0rq1dzkcwqv43sff9qdl44gidgz6p75lal9pp394g10v5"; 112528 + version = "1.7.0.1"; 112529 + sha256 = "0lf3grridkx5xb5zz8shx3vkzwqsc3y5rbgw7w6hbsgp7ac90jjz"; 112321 112530 isLibrary = true; 112322 112531 isExecutable = true; 112323 112532 description = "ExactPrint for GHC"; ··· 112415 112624 }: 112416 112625 mkDerivation { 112417 112626 pname = "ghc-hs-meta"; 112418 - version = "0.1.1.0"; 112419 - sha256 = "0yrrf0lx626rl4b14jaqmkab1vf4vymi81jkjm91y5vas8zc276i"; 112627 + version = "0.1.2.0"; 112628 + sha256 = "13i4fcc3wfx94n75cxp00p62mnm0raf2xqj2afrzcw3q6mc0l0y4"; 112420 112629 libraryHaskellDepends = [ 112421 112630 base bytestring ghc ghc-boot template-haskell 112422 112631 ]; ··· 114327 114536 114328 114537 "gi-adwaita" = callPackage 114329 114538 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdk 114330 - , gi-gio, gi-gobject, gi-gtk, gi-pango, haskell-gi, haskell-gi-base 114331 - , haskell-gi-overloading, libadwaita, text, transformers 114539 + , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi 114540 + , haskell-gi-base, haskell-gi-overloading, libadwaita, text 114541 + , transformers 114332 114542 }: 114333 114543 mkDerivation { 114334 114544 pname = "gi-adwaita"; 114335 - version = "1.0.5"; 114336 - sha256 = "1nm9mp0qisvrysygb8p7x9m7v15lak4qkps6ypwrxvwldx21ncsy"; 114545 + version = "1.0.6"; 114546 + sha256 = "0d5qswxbr8hl0mykjifgxivcbv55viva0gfw5zmgmswkp7my56q2"; 114337 114547 setupHaskellDepends = [ 114338 - base Cabal gi-gdk gi-gio gi-gobject gi-gtk gi-pango haskell-gi 114548 + base Cabal gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango 114549 + haskell-gi 114339 114550 ]; 114340 114551 libraryHaskellDepends = [ 114341 - base bytestring containers gi-gdk gi-gio gi-gobject gi-gtk gi-pango 114342 - haskell-gi haskell-gi-base haskell-gi-overloading text transformers 114552 + base bytestring containers gi-gdk gi-gio gi-glib gi-gobject gi-gtk 114553 + gi-pango haskell-gi haskell-gi-base haskell-gi-overloading text 114554 + transformers 114343 114555 ]; 114344 114556 libraryPkgconfigDepends = [ libadwaita ]; 114345 114557 description = "Adwaita bindings"; ··· 115127 115339 }: 115128 115340 mkDerivation { 115129 115341 pname = "gi-gtk-hs"; 115130 - version = "0.3.14"; 115131 - sha256 = "1c4aqyv104m06k1hl5fpfbgyvmqb5pkhzibqbkia2ngf6mdpqy2m"; 115342 + version = "0.3.16"; 115343 + sha256 = "1zdkxhvy4i99p6qcrc53qlxv71vh05w9xd0j1qh20aci05n1nnha"; 115132 115344 libraryHaskellDepends = [ 115133 115345 base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject 115134 115346 gi-gtk haskell-gi-base mtl text transformers ··· 116716 116928 }: 116717 116929 mkDerivation { 116718 116930 pname = "github-rest"; 116719 - version = "1.1.2"; 116720 - sha256 = "139ysq1m1ndy6z1znfd1np25ynxankkfm6xmwabhdr7yiqzi2v1b"; 116721 - revision = "2"; 116722 - editedCabalFile = "0390zxa270d8x8a0imd71z72l6hxnn1ip6jjgrrvrs3zj20c7adp"; 116931 + version = "1.1.3"; 116932 + sha256 = "0na4kfwlxfqd7d99vc1hkqrp9nlp21a3xpiwhlm3vzcgzrmk2f0v"; 116723 116933 libraryHaskellDepends = [ 116724 116934 aeson base bytestring http-client http-client-tls http-types jwt 116725 116935 mtl scientific text time transformers unliftio unliftio-core 116726 116936 ]; 116727 116937 testHaskellDepends = [ 116728 - aeson aeson-qq base bytestring http-client http-client-tls 116729 - http-types jwt mtl scientific tasty tasty-golden tasty-hunit 116730 - tasty-quickcheck text time transformers unliftio unliftio-core 116938 + aeson aeson-qq base bytestring http-types mtl tasty tasty-golden 116939 + tasty-hunit tasty-quickcheck text 116731 116940 ]; 116732 116941 description = "Query the GitHub REST API programmatically"; 116733 116942 license = lib.licenses.bsd3; ··· 117293 117502 badPlatforms = lib.platforms.darwin; 117294 117503 }) {inherit (pkgs) libGL;}; 117295 117504 117505 + "gl-block" = callPackage 117506 + ({ mkDerivation, base, ptrdiff, tasty, tasty-bench, tasty-discover 117507 + , tasty-hunit, vector 117508 + }: 117509 + mkDerivation { 117510 + pname = "gl-block"; 117511 + version = "1.0"; 117512 + sha256 = "1knx5lvbjlwxs2g9w6fk39xzpypv3v66173sf48d6mfln2v2551f"; 117513 + libraryHaskellDepends = [ base ptrdiff ]; 117514 + testHaskellDepends = [ base tasty tasty-hunit ]; 117515 + testToolDepends = [ tasty-discover ]; 117516 + benchmarkHaskellDepends = [ base tasty tasty-bench vector ]; 117517 + description = "OpenGL standard memory layouts"; 117518 + license = "(BSD-2-Clause OR Apache-2.0)"; 117519 + }) {}; 117520 + 117296 117521 "gl-capture" = callPackage 117297 117522 ({ mkDerivation, base, bytestring, OpenGL }: 117298 117523 mkDerivation { ··· 117322 117547 }: 117323 117548 mkDerivation { 117324 117549 pname = "glabrous"; 117325 - version = "2.0.6"; 117326 - sha256 = "1yz2h8x8hhy8nqy2pppax0mbb3k2ydcspbyngy19afphxxd5bbkz"; 117550 + version = "2.0.6.1"; 117551 + sha256 = "1y6hkih8qc7ld6sxfarcjd1yyqvgv7s4d2fch62m0gzcq77f9gsg"; 117327 117552 libraryHaskellDepends = [ 117328 117553 aeson aeson-pretty attoparsec base bytestring cereal cereal-text 117329 117554 either text unordered-containers ··· 118097 118322 mainProgram = "gltf-loader"; 118098 118323 }) {}; 118099 118324 118325 + "glualint" = callPackage 118326 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 118327 + , directory, effectful, filemanip, filepath, optparse-applicative 118328 + , parsec, pretty, signal, uu-parsinglib, uuagc, uuagc-cabal 118329 + }: 118330 + mkDerivation { 118331 + pname = "glualint"; 118332 + version = "1.24.6"; 118333 + sha256 = "0br2732xikwcv2q2x1xk5d1ly71khfxy7d23hz2f66h0sl7vsl3w"; 118334 + isLibrary = true; 118335 + isExecutable = true; 118336 + libraryHaskellDepends = [ 118337 + aeson base bytestring containers parsec pretty uu-parsinglib uuagc 118338 + uuagc-cabal 118339 + ]; 118340 + executableHaskellDepends = [ 118341 + aeson base bytestring containers deepseq directory effectful 118342 + filemanip filepath optparse-applicative signal 118343 + ]; 118344 + description = "Attempts to fix your syntax erroring Lua files"; 118345 + license = lib.licenses.lgpl21Plus; 118346 + mainProgram = "glualint"; 118347 + }) {}; 118348 + 118100 118349 "glue" = callPackage 118101 118350 ({ mkDerivation, async, base, ekg-core, hashable, hspec 118102 118351 , lifted-base, monad-control, monad-loops, QuickCheck ··· 121122 121371 }: 121123 121372 mkDerivation { 121124 121373 pname = "google-maps-geocoding"; 121125 - version = "0.7.0.1"; 121126 - sha256 = "01330l7z0s30mk0vh4j0kcl5xmfyahr16is7ldxf4h3y9w8b3ajg"; 121374 + version = "0.7.0.2"; 121375 + sha256 = "1y05vlfn1wrzb6hcfg2wrlwbcz63xr7w6mqb2zq86yww5i1xpkvx"; 121127 121376 libraryHaskellDepends = [ 121128 121377 aeson base google-static-maps http-client servant servant-client 121129 121378 text ··· 121256 121505 }: 121257 121506 mkDerivation { 121258 121507 pname = "google-static-maps"; 121259 - version = "0.7.0.1"; 121260 - sha256 = "0cs5hwll03liqml504kw7zzyk1ah5lbpxpqzwhfhkzz5a9swigqa"; 121508 + version = "0.7.0.2"; 121509 + sha256 = "05dcy6vswh4b5cz4pf0aa3x1fwzv6q35xfv80978ncp6hpzvb1d1"; 121261 121510 libraryHaskellDepends = [ 121262 121511 aeson base base64-bytestring bytedump bytestring cryptonite 121263 121512 double-conversion http-client JuicyPixels memory network-uri ··· 121611 121860 }: 121612 121861 mkDerivation { 121613 121862 pname = "gothic"; 121614 - version = "0.1.8"; 121615 - sha256 = "1gicw2g86xz68a8qvj0p2nxw42rwibr0qqi53nily5yvlc40v4qd"; 121863 + version = "0.1.8.1"; 121864 + sha256 = "08d80gv55vfxyy88b0wdzwvxi8kzjv1pgfknffxsvnbk2bf0nmgf"; 121616 121865 libraryHaskellDepends = [ 121617 121866 aeson base binary bytestring connection exceptions hashable 121618 121867 http-client http-client-tls http-conduit http-types lens lens-aeson ··· 121836 122085 pname = "grab"; 121837 122086 version = "0.0.0.8"; 121838 122087 sha256 = "0g3b79q985r6r6dfd97x1fhdj8fh35qnz9b34b78982qg60pl6y6"; 122088 + revision = "1"; 122089 + editedCabalFile = "1qyd89ijz7scz6pzqhqddypsbc9xpn2kaw5hcvbsk6rhl4pdkgqs"; 121839 122090 libraryHaskellDepends = [ base ]; 121840 122091 testHaskellDepends = [ base hedgehog ]; 121841 122092 benchmarkHaskellDepends = [ base criterion ]; ··· 121849 122100 pname = "grab-form"; 121850 122101 version = "0.0.0.8"; 121851 122102 sha256 = "0q1lx6lybariwhnlbg49m683jppn6da5q8h3xmg795m420x1dk5a"; 122103 + revision = "1"; 122104 + editedCabalFile = "0hmf6pl19frv3839vr60w72azb8pnf2mvpyv707kg51c4zgk79fw"; 121852 122105 libraryHaskellDepends = [ base containers grab text ]; 121853 122106 testHaskellDepends = [ base containers grab hedgehog text ]; 121854 122107 description = "Applicative parsers for form parameter lists"; ··· 122689 122942 }: 122690 122943 mkDerivation { 122691 122944 pname = "graphql-client"; 122692 - version = "1.2.1"; 122693 - sha256 = "02wrwb5vgj4px6m178wmfzzy1d2h6018wj106n0j4lzbxyh107iy"; 122694 - revision = "2"; 122695 - editedCabalFile = "0mmknz40l40jb4xnz8z3bzzl3aq243zpiqkyz9kfsmhq6hwzkidb"; 122945 + version = "1.2.2"; 122946 + sha256 = "0m89j9caawijfmq8r0drh16psc82nnwj6sg256hls6539pxxza6k"; 122696 122947 isLibrary = true; 122697 122948 isExecutable = true; 122698 122949 libraryHaskellDepends = [ ··· 124932 125183 }: 124933 125184 mkDerivation { 124934 125185 pname = "h-raylib"; 124935 - version = "4.6.0.3"; 124936 - sha256 = "0796hlc63pmbs861316xh6wrw72zczjkl9wx6mwjfcpq1jg4b5fp"; 125186 + version = "4.6.0.4"; 125187 + sha256 = "1x9fz0ilvzj75nh4lcwz6w2fjmmbxymd7bfqivc04zz6d4wscli3"; 124937 125188 isLibrary = true; 124938 125189 isExecutable = true; 124939 125190 libraryHaskellDepends = [ base containers lens ]; ··· 126502 126753 "hackport" = callPackage 126503 126754 ({ mkDerivation, array, async, base, base16-bytestring 126504 126755 , base64-bytestring, binary, bytestring, containers 126505 - , cryptohash-sha256, deepseq, directory, echo, ed25519 126506 - , edit-distance, exceptions, extensible-exceptions, filepath 126507 - , ghc-prim, hashable, hspec, hspec-discover, HTTP, lifted-base 126508 - , lukko, monad-control, mtl, network, network-uri 126509 - , optparse-applicative, parallel, parsec, parser-combinators 126510 - , pretty, process, QuickCheck, random, regex-base, regex-posix 126511 - , resolv, safe-exceptions, split, stm, tar, template-haskell, text 126512 - , time, transformers, unix, xml, zlib 126756 + , cryptohash-sha256, deepseq, directory, dlist, doctest, echo 126757 + , ed25519, edit-distance, exceptions, extensible-exceptions 126758 + , filepath, ghc-compact, ghc-prim, hashable, hspec, hspec-discover 126759 + , HTTP, lifted-base, lukko, monad-control, mtl, network 126760 + , network-uri, optparse-applicative, parallel, parsec 126761 + , parser-combinators, pretty, prettyprinter, process, QuickCheck 126762 + , random, regex-base, regex-posix, resolv, safe-exceptions, split 126763 + , stm, tar, template-haskell, text, time, transformers, unix, xml 126764 + , zlib 126513 126765 }: 126514 126766 mkDerivation { 126515 126767 pname = "hackport"; 126516 - version = "0.8.3.0"; 126517 - sha256 = "09vvp8w6nlbs41mbdbzhg49lqa941mb74n59gvmi6kjii3cmhlis"; 126768 + version = "0.8.4.0"; 126769 + sha256 = "1bg5cb3sfpp59sk4cswk4dr2dsjx9qh3sf3yj3x39ha3q5bdrgvd"; 126518 126770 isLibrary = false; 126519 126771 isExecutable = true; 126520 126772 libraryHaskellDepends = [ 126521 126773 array async base base16-bytestring base64-bytestring binary 126522 - bytestring containers cryptohash-sha256 deepseq directory echo 126523 - ed25519 edit-distance exceptions extensible-exceptions filepath 126524 - ghc-prim hashable HTTP lifted-base lukko monad-control mtl network 126525 - network-uri parallel parsec pretty process QuickCheck random 126526 - regex-base regex-posix resolv safe-exceptions split stm tar 126527 - template-haskell text time transformers unix xml zlib 126774 + bytestring containers cryptohash-sha256 deepseq directory dlist 126775 + echo ed25519 edit-distance exceptions extensible-exceptions 126776 + filepath ghc-compact ghc-prim hashable HTTP lifted-base lukko 126777 + monad-control mtl network network-uri optparse-applicative parallel 126778 + parsec pretty process QuickCheck random regex-base regex-posix 126779 + resolv safe-exceptions split stm tar template-haskell text time 126780 + transformers unix xml zlib 126528 126781 ]; 126529 126782 executableHaskellDepends = [ 126530 126783 base directory filepath optparse-applicative parsec 126531 - parser-combinators 126784 + parser-combinators prettyprinter process 126532 126785 ]; 126533 126786 testHaskellDepends = [ 126534 126787 async base bytestring containers deepseq directory 126535 126788 extensible-exceptions filepath hspec network-uri parallel parsec 126536 126789 pretty process QuickCheck split text time xml 126537 126790 ]; 126538 - testToolDepends = [ hspec-discover ]; 126791 + testToolDepends = [ doctest hspec-discover ]; 126539 126792 doHaddock = false; 126540 126793 description = "Hackage and Portage integration tool"; 126541 126794 license = lib.licenses.gpl3Plus; ··· 127971 128224 license = lib.licenses.bsd3; 127972 128225 hydraPlatforms = lib.platforms.none; 127973 128226 broken = true; 128227 + }) {}; 128228 + 128229 + "halfsplit" = callPackage 128230 + ({ mkDerivation, base }: 128231 + mkDerivation { 128232 + pname = "halfsplit"; 128233 + version = "0.1.0.0"; 128234 + sha256 = "1idrik8w0z913n4jdba7m58i63krzxf4kv35rm5k8yr8w30xxr7i"; 128235 + libraryHaskellDepends = [ base ]; 128236 + description = "A library to provide special kind of two-column terminal output for Phladiprelio"; 128237 + license = lib.licenses.mit; 127974 128238 }) {}; 127975 128239 127976 128240 description = "PID control loop"; ··· 127984 128248 description = "PID control loop"; 127985 128249 description = "PID control loop"; 127986 128250 license = lib.licenses.bsd3; 127987 - hydraPlatforms = lib.platforms.none; 128251 + platforms = lib.platforms.linux; 127988 128252 }) {}; 127989 128253 127990 128254 description = "PID control loop"; ··· 128022 128286 ]; 128023 128287 description = "PID control loop"; 128024 128288 license = lib.licenses.bsd3; 128025 - hydraPlatforms = lib.platforms.none; 128026 - broken = true; 128289 + platforms = lib.platforms.linux; 128027 128290 description = "PID control loop"; 128028 128291 128029 128292 description = "PID control loop"; ··· 130424 130687 benchmarkSystemDepends = [ openssl ]; 130425 130688 description = "PID control loop"; 130426 130689 license = lib.licenses.mit; 130427 - hydraPlatforms = lib.platforms.none; 130428 130690 }) {inherit (pkgs) openssl;}; 130429 130691 130430 130692 description = "PID control loop"; ··· 131555 131817 }: 131556 131818 mkDerivation { 131557 131819 description = "PID control loop"; 131558 - description = "PID control loop"; 131559 - description = "PID control loop"; 131820 + version = "0.26.7"; 131821 + sha256 = "1h19cli06ava1z3w1y7d7cvcjdw5hhwqa9yh102rrnpxq6rblrm9"; 131560 131822 setupHaskellDepends = [ base Cabal cabal-doctest ]; 131561 131823 libraryHaskellDepends = [ 131562 131824 description = "PID control loop"; ··· 131569 131831 license = lib.licenses.lgpl21Only; 131570 131832 description = "PID control loop"; 131571 131833 131572 - description = "PID control loop"; 131573 - description = "PID control loop"; 131574 - description = "PID control loop"; 131575 - description = "PID control loop"; 131576 - description = "PID control loop"; 131577 - }: 131578 - mkDerivation { 131579 - description = "PID control loop"; 131580 - description = "PID control loop"; 131581 - description = "PID control loop"; 131582 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 131583 - libraryHaskellDepends = [ 131584 - description = "PID control loop"; 131585 - description = "PID control loop"; 131586 - description = "PID control loop"; 131587 - ]; 131588 - description = "PID control loop"; 131589 - description = "PID control loop"; 131590 - description = "PID control loop"; 131591 - license = lib.licenses.lgpl21Only; 131592 - hydraPlatforms = lib.platforms.none; 131593 - description = "PID control loop"; 131594 - 131595 - description = "PID control loop"; 131596 - description = "PID control loop"; 131597 - mkDerivation { 131598 - description = "PID control loop"; 131599 - description = "PID control loop"; 131600 - description = "PID control loop"; 131601 - libraryHaskellDepends = [ base bytestring containers text ]; 131602 - libraryPkgconfigDepends = [ glib ]; 131603 - description = "PID control loop"; 131604 - license = lib.licenses.lgpl21Only; 131605 - }) {inherit (pkgs) glib;}; 131606 - 131607 131834 description = "PID control loop"; 131608 131835 description = "PID control loop"; 131609 131836 mkDerivation { ··· 131614 131841 libraryPkgconfigDepends = [ glib ]; 131615 131842 description = "PID control loop"; 131616 131843 license = lib.licenses.lgpl21Only; 131617 - hydraPlatforms = lib.platforms.none; 131618 131844 }) {inherit (pkgs) glib;}; 131619 131845 131620 131846 description = "PID control loop"; ··· 134389 134615 pname = "hasktags"; 134390 134616 version = "0.72.0"; 134391 134617 sha256 = "09p79w16fgpqi6bwq162769xdrnyb7wnmz56k00nz6dj1a0bbbdd"; 134392 - revision = "2"; 134393 - editedCabalFile = "0f3v6k3bvsczz0z5i09286c0i74wz782vayzyp5lndqvrx3b4g0x"; 134618 + revision = "3"; 134619 + editedCabalFile = "0jb7pzfihdwyn9kbby6bb8ddh7v3x85ca9rr8ldsjn34acyal3hs"; 134394 134620 isLibrary = true; 134395 134621 isExecutable = true; 134396 134622 libraryHaskellDepends = [ ··· 139789 140015 }: 139790 140016 mkDerivation { 139791 140017 pname = "hetzner"; 139792 - version = "0.2.0.0"; 139793 - sha256 = "1narsc9wflf4s7jl784jzyw0hjms82avcpbgwd5aplp0fmh4zqgh"; 140018 + version = "0.2.1.1"; 140019 + sha256 = "1h02iwrxnb1apqkbac210laxdr5cq2gw12pjjs9w9pnk44r8scgs"; 139794 140020 libraryHaskellDepends = [ 139795 140021 aeson base bytestring conduit containers country http-conduit ip 139796 140022 megaparsec scientific text time yaml 139797 140023 ]; 140024 + testHaskellDepends = [ base ]; 139798 140025 description = "Hetzner Cloud and DNS library"; 139799 140026 license = lib.licenses.mit; 139800 140027 }) {}; ··· 139832 140059 }: 139833 140060 mkDerivation { 139834 140061 pname = "hevm"; 139835 - version = "0.51.0"; 139836 - sha256 = "1c0y0mbdb0p9h1x9fsfd6zwnf2kh3nh24dh8rayhqk77c4wwasvl"; 140062 + version = "0.51.1"; 140063 + sha256 = "1q9yxkp8zvi31gi38snny6n906sdwnfbrxiammrh18gj2h0f1jxq"; 139837 140064 isLibrary = true; 139838 140065 isExecutable = true; 139839 140066 libraryHaskellDepends = [ ··· 142319 142546 }: 142320 142547 mkDerivation { 142321 142548 pname = "hint"; 142322 - version = "0.9.0.6"; 142323 - sha256 = "1j7jzx8i1rc66xw4c6gf4kjv0a8ma96j25kfz6rzswik4vp5xmky"; 142549 + version = "0.9.0.7"; 142550 + sha256 = "1pq1va24vnizw79c3k0f432srfplx5lbmndqhhw3xzvxc1m48q96"; 142324 142551 libraryHaskellDepends = [ 142325 142552 base containers directory exceptions filepath ghc ghc-boot 142326 142553 ghc-paths random temporary transformers unix ··· 143466 143693 ]; 143467 143694 }) {}; 143468 143695 143469 - "hledger_1_29_2" = callPackage 143696 + "hledger_1_30_1" = callPackage 143470 143697 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs 143471 143698 , containers, data-default, Decimal, Diff, directory, extra 143472 143699 , filepath, githash, hashable, haskeline, hledger-lib, lucid ··· 143477 143704 }: 143478 143705 mkDerivation { 143479 143706 pname = "hledger"; 143480 - version = "1.29.2"; 143481 - sha256 = "0q6l7mk0x8f0p0gjb3fgvm73xspp7ls1pac9a45yqaivblqxm0kr"; 143707 + version = "1.30.1"; 143708 + sha256 = "0ri8zg1pq011cbry5cxj2rc5g19vgl3rjcl5b2qk4bhdgxy7na98"; 143709 + revision = "1"; 143710 + editedCabalFile = "1pw204xcv71873rfv0xrnfsbhqnpjb5azr4jqiak6b21w31ky26q"; 143482 143711 isLibrary = true; 143483 143712 isExecutable = true; 143484 143713 libraryHaskellDepends = [ ··· 143646 143875 pname = "hledger-interest"; 143647 143876 version = "1.6.5"; 143648 143877 sha256 = "0znrypimfcr4immy3x5651cfkny1n8yi8isfh72mv2px70994pm1"; 143649 - revision = "1"; 143650 - editedCabalFile = "0shzd7g84s5jrwgvw2nk8b1mhf7dm7id7w18rnfzb41d5pyjq5l8"; 143878 + revision = "2"; 143879 + editedCabalFile = "0qfvbs25dir3xra9pgi5fd41vm0hji666ws8sikb01ik4w5mmj7z"; 143651 143880 isLibrary = false; 143652 143881 isExecutable = true; 143653 143882 executableHaskellDepends = [ ··· 143716 143945 license = lib.licenses.gpl3Only; 143717 143946 }) {}; 143718 143947 143719 - "hledger-lib_1_29_2" = callPackage 143948 + "hledger-lib_1_30" = callPackage 143720 143949 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array, base 143721 143950 , base-compat, blaze-markup, bytestring, call-stack, cassava 143722 143951 , cassava-megaparsec, cmdargs, colour, containers, data-default ··· 143724 143953 , file-embed, filepath, Glob, hashtables, megaparsec, microlens 143725 143954 , microlens-th, mtl, pager, parser-combinators, pretty-simple 143726 143955 , regex-tdfa, safe, tabular, tasty, tasty-hunit, template-haskell 143727 - , text, text-ansi, time, timeit, transformers, uglymemo 143728 - , unordered-containers, utf8-string 143956 + , terminal-size, text, text-ansi, time, timeit, transformers 143957 + , uglymemo, unordered-containers, utf8-string 143729 143958 }: 143730 143959 mkDerivation { 143731 143960 pname = "hledger-lib"; 143732 - version = "1.29.2"; 143733 - sha256 = "0nyc32prc4s0v4fi6m8s0r2dnk15cf5xgdwm7mpy3mmij83pjyym"; 143961 + version = "1.30"; 143962 + sha256 = "0qyhkx1bhrmnwwxqbqa4pqghg7j2vn63829j5s2zdn8ys2mm8s64"; 143963 + revision = "1"; 143964 + editedCabalFile = "09b8liifim9rj6l1s0jwfnnfigjhy3cwaadx017m97igm1mpc7f0"; 143734 143965 libraryHaskellDepends = [ 143735 143966 aeson aeson-pretty ansi-terminal array base base-compat 143736 143967 blaze-markup bytestring call-stack cassava cassava-megaparsec 143737 143968 cmdargs colour containers data-default Decimal deepseq directory 143738 143969 doclayout extra file-embed filepath Glob hashtables megaparsec 143739 143970 microlens microlens-th mtl pager parser-combinators pretty-simple 143740 - regex-tdfa safe tabular tasty tasty-hunit template-haskell text 143741 - text-ansi time timeit transformers uglymemo unordered-containers 143742 - utf8-string 143971 + regex-tdfa safe tabular tasty tasty-hunit template-haskell 143972 + terminal-size text text-ansi time timeit transformers uglymemo 143973 + unordered-containers utf8-string 143743 143974 ]; 143744 143975 testHaskellDepends = [ 143745 143976 aeson aeson-pretty ansi-terminal array base base-compat ··· 143748 143979 doclayout doctest extra file-embed filepath Glob hashtables 143749 143980 megaparsec microlens microlens-th mtl pager parser-combinators 143750 143981 pretty-simple regex-tdfa safe tabular tasty tasty-hunit 143751 - template-haskell text text-ansi time timeit transformers uglymemo 143752 - unordered-containers utf8-string 143982 + template-haskell terminal-size text text-ansi time timeit 143983 + transformers uglymemo unordered-containers utf8-string 143753 143984 ]; 143754 143985 description = "A reusable library providing the core functionality of hledger"; 143755 143986 license = lib.licenses.gpl3Only; ··· 143833 144064 maintainers = [ lib.maintainers.maralorn ]; 143834 144065 }) {}; 143835 144066 143836 - "hledger-ui_1_29_2" = callPackage 144067 + "hledger-ui_1_30" = callPackage 143837 144068 ({ mkDerivation, ansi-terminal, async, base, brick, cmdargs 143838 144069 , containers, data-default, directory, doclayout, extra, filepath 143839 144070 , fsnotify, hledger, hledger-lib, megaparsec, microlens ··· 143842 144073 }: 143843 144074 mkDerivation { 143844 144075 pname = "hledger-ui"; 143845 - version = "1.29.2"; 143846 - sha256 = "1q9k44gzgls6yzn9nv9mlg4xzr1mc7dy64p1bkykr8f9z20ljh8r"; 144076 + version = "1.30"; 144077 + sha256 = "1il3849rn8zimn79d7b81v6yb916w5w8lp4ykxkyc3fwwyjcc2q5"; 144078 + revision = "1"; 144079 + editedCabalFile = "05h4adyf7h48fgihpq9swp92j255s4dhgp0q5fg2kdis78i24p7d"; 143847 144080 isLibrary = false; 143848 144081 isExecutable = true; 143849 144082 executableHaskellDepends = [ ··· 143916 144149 maintainers = [ lib.maintainers.maralorn ]; 143917 144150 }) {}; 143918 144151 143919 - "hledger-web_1_29_2" = callPackage 144152 + "hledger-web_1_30" = callPackage 143920 144153 ({ mkDerivation, aeson, base, base64, blaze-html, blaze-markup 143921 144154 , bytestring, case-insensitive, clientsession, cmdargs, conduit 143922 144155 , conduit-extra, containers, data-default, Decimal, directory ··· 143929 144162 }: 143930 144163 mkDerivation { 143931 144164 pname = "hledger-web"; 143932 - version = "1.29.2"; 143933 - sha256 = "16q5jxd7dpr3rqklgd9v73ilpbz2075nzlhk0hdciw9sarq6jc0y"; 144165 + version = "1.30"; 144166 + sha256 = "0lcw8qigh1507hn287zwmp00vsccsm6lw6r87c5rp0ikxsxmwbds"; 144167 + revision = "1"; 144168 + editedCabalFile = "11id6v6h86zmvqbkx45kdr1q1c5maka6iackk6b2jw9icyv9g6hb"; 143934 144169 isLibrary = true; 143935 144170 isExecutable = true; 143936 144171 libraryHaskellDepends = [ ··· 146042 146277 license = lib.licenses.mit; 146043 146278 }) {}; 146044 146279 146045 - "hoauth2_2_8_0" = callPackage 146280 + "hoauth2_2_8_1" = callPackage 146046 146281 ({ mkDerivation, aeson, base, base64, binary, bytestring 146047 146282 , containers, cryptonite, data-default, exceptions, hspec 146048 146283 , hspec-discover, http-conduit, http-types, memory, microlens, text ··· 146050 146285 }: 146051 146286 mkDerivation { 146052 146287 pname = "hoauth2"; 146053 - version = "2.8.0"; 146054 - sha256 = "1xndl9cl0j1mn18lgjrp7crys9vlz0gznp7fijazawa5x84xjfpp"; 146288 + version = "2.8.1"; 146289 + sha256 = "134fvq9aasp3dmwj50wr8y7i3i292q68pr41dapdqq5mx4b77w8r"; 146055 146290 libraryHaskellDepends = [ 146056 146291 aeson base base64 binary bytestring containers cryptonite 146057 146292 data-default exceptions http-conduit http-types memory microlens ··· 148747 148982 }: 148748 148983 mkDerivation { 148749 148984 pname = "hpqtypes-extras"; 148750 - version = "1.16.4.2"; 148751 - sha256 = "1j7xyj5rw2j5drrrw64pjv75dbf3sbzs14qqi3kxbvmkhg8jgb5a"; 148985 + version = "1.16.4.3"; 148986 + sha256 = "0xb9igkwmkcqjv7a8mvsjcsgglbd4jgwn4cbw4s1frsb7bnibm4w"; 148752 148987 libraryHaskellDepends = [ 148753 148988 base base16-bytestring bytestring containers cryptohash exceptions 148754 148989 extra hpqtypes log-base mtl text text-show ··· 148833 149068 }: 148834 149069 mkDerivation { 148835 149070 pname = "hprox"; 148836 - version = "0.5.2"; 148837 - sha256 = "00ms3kvirrnpy6w5ngykfzrv4777n2pw8ppwb76myjrkylj7ygws"; 149071 + version = "0.5.3"; 149072 + sha256 = "05z4zcskagak04mfj3grp89vjiw8vmx0ppszl1j6p201y5zmpx6n"; 148838 149073 isLibrary = true; 148839 149074 isExecutable = true; 148840 149075 libraryHaskellDepends = [ ··· 149804 150039 ({ mkDerivation, base, containers, emojis, text }: 149805 150040 mkDerivation { 149806 150041 pname = "hs-openmoji-data"; 149807 - version = "13.0.0"; 149808 - sha256 = "1jgs4iv0zv2dr5izd6d95mflyk4fnagmrdxw70m17jvknl5x1fa5"; 150042 + version = "14.0.0"; 150043 + sha256 = "1slaaahm22mrc91g8j3c3m1ln5hjhin0cr8nspi53ykl7h4rb41h"; 149809 150044 isLibrary = true; 149810 150045 isExecutable = true; 149811 150046 libraryHaskellDepends = [ base text ]; ··· 151020 151255 }: 151021 151256 mkDerivation { 151022 151257 pname = "hsblst"; 151023 - version = "0.0.1"; 151024 - sha256 = "1ab8ncgpwvsj6x1ggp0rck6n7fs37wsf8i83z29xbd20dzyralm0"; 151258 + version = "0.0.2"; 151259 + sha256 = "08sj5r714rzkdbvx8bzhk3lvim7jiaxbpj4xpz58bxx13ds2dxni"; 151025 151260 libraryHaskellDepends = [ base deepseq memory ]; 151026 151261 libraryToolDepends = [ c2hs ]; 151027 151262 testHaskellDepends = [ ··· 152247 152482 pname = "hsini"; 152248 152483 version = "0.5.1.2"; 152249 152484 sha256 = "1r6qksnrmk18ndxs5zaga8b7kvmk34kp0kh5hwqmq797qrlax9pa"; 152250 - revision = "2"; 152251 - editedCabalFile = "1b83g6jk9hcm2h17f1h9vyzm34bmr7w4j5888rbv9k8gpi97f8i7"; 152485 + revision = "3"; 152486 + editedCabalFile = "0wkx1syrx45ivs9lqhh7wfzwr1a0a3fq3km83amvl2a877yaqrjm"; 152252 152487 libraryHaskellDepends = [ base bytestring containers mtl parsec ]; 152253 152488 testHaskellDepends = [ 152254 152489 base bytestring containers mtl parsec tasty tasty-hunit ··· 154557 154792 }: 154558 154793 mkDerivation { 154559 154794 pname = "hspec-webdriver"; 154560 - version = "1.2.1"; 154561 - sha256 = "1cch0jzl2dmd7c45z9j1kl6bv0qzydwcvdfkfkvv8s0x9p11k4g4"; 154795 + version = "1.2.2"; 154796 + sha256 = "10dxdiv77yb5xb6aqqjdp54lbkc2sj7b2jb4ckjk1mvjz9gdc1wa"; 154562 154797 libraryHaskellDepends = [ 154563 154798 aeson base data-default hashable hspec hspec-core HUnit lifted-base 154564 154799 stm text transformers unordered-containers webdriver ··· 156321 156556 pname = "http-api-data-qq"; 156322 156557 version = "0.1.0.0"; 156323 156558 sha256 = "1lvfdbprdwq09k1wkjfvvkpi79053dc4kzkv4g1cx94qb1flbd7a"; 156324 - revision = "2"; 156325 - editedCabalFile = "03gwjxnd0kcnh18bzlwkb8yivmcjrl8wb0v82y4jqvjy19d61d0n"; 156559 + revision = "3"; 156560 + editedCabalFile = "1ywq3kl32rp57rb2p3y79jrbi99p32j30w9nrm94jgf4m2jdahc5"; 156326 156561 libraryHaskellDepends = [ 156327 156562 base http-api-data template-haskell text 156328 156563 ]; ··· 156628 156863 license = lib.licenses.mit; 156629 156864 }) {}; 156630 156865 156866 + "http-client-tls_0_3_6_2" = callPackage 156867 + ({ mkDerivation, base, bytestring, case-insensitive, containers 156868 + , crypton, crypton-connection, data-default-class, exceptions 156869 + , gauge, hspec, http-client, http-types, memory, network 156870 + , network-uri, text, tls, transformers 156871 + }: 156872 + mkDerivation { 156873 + pname = "http-client-tls"; 156874 + version = "0.3.6.2"; 156875 + sha256 = "19mbjh1rh46zmra4s7ybqvmwffmp3z5x7xlw9hsv55rbxsz8whr8"; 156876 + libraryHaskellDepends = [ 156877 + base bytestring case-insensitive containers crypton 156878 + crypton-connection data-default-class exceptions http-client 156879 + http-types memory network network-uri text tls transformers 156880 + ]; 156881 + testHaskellDepends = [ base hspec http-client http-types ]; 156882 + benchmarkHaskellDepends = [ base gauge http-client ]; 156883 + doCheck = false; 156884 + description = "http-client backend using the connection package and tls library"; 156885 + license = lib.licenses.mit; 156886 + hydraPlatforms = lib.platforms.none; 156887 + }) {}; 156888 + 156631 156889 "http-client-websockets" = callPackage 156632 156890 ({ mkDerivation, async, base, bytestring, hspec, http-client 156633 156891 , network-uri, text, websockets ··· 156665 156923 156666 156924 "http-conduit" = callPackage 156667 156925 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 156668 - , case-insensitive, conduit, conduit-extra, connection, cookie 156926 + , case-insensitive, conduit, conduit-extra, cookie 156669 156927 , data-default-class, hspec, http-client, http-client-tls 156670 156928 , http-types, HUnit, mtl, network, resourcet, streaming-commons 156671 156929 , temporary, text, time, tls, transformers, unliftio, unliftio-core ··· 156673 156931 }: 156674 156932 mkDerivation { 156675 156933 pname = "http-conduit"; 156676 - version = "2.3.8"; 156677 - sha256 = "1bj24phbcb7s3k6v48l5gk82m3m23j8zy9l7c5ccxp3ghn9z5gng"; 156934 + version = "2.3.8.1"; 156935 + sha256 = "11zf4hyw8f1gpj0w1cmgc9g62xwy2v4hhzqazdsla4q49iqbzxgd"; 156936 + libraryHaskellDepends = [ 156937 + aeson attoparsec base bytestring conduit conduit-extra http-client 156938 + http-client-tls http-types mtl resourcet transformers unliftio-core 156939 + ]; 156940 + testHaskellDepends = [ 156941 + aeson base blaze-builder bytestring case-insensitive conduit 156942 + conduit-extra cookie data-default-class hspec http-client 156943 + http-types HUnit network resourcet streaming-commons temporary text 156944 + time tls transformers unliftio utf8-string wai wai-conduit warp 156945 + warp-tls 156946 + ]; 156947 + doCheck = false; 156948 + description = "HTTP client package with conduit interface and HTTPS support"; 156949 + license = lib.licenses.bsd3; 156950 + }) {}; 156951 + 156952 + "http-conduit_2_3_8_2" = callPackage 156953 + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 156954 + , case-insensitive, conduit, conduit-extra, cookie 156955 + , crypton-connection, data-default-class, hspec, http-client 156956 + , http-client-tls, http-types, HUnit, mtl, network, resourcet 156957 + , streaming-commons, temporary, text, time, tls, transformers 156958 + , unliftio, unliftio-core, utf8-string, wai, wai-conduit, warp 156959 + , warp-tls 156960 + }: 156961 + mkDerivation { 156962 + pname = "http-conduit"; 156963 + version = "2.3.8.2"; 156964 + sha256 = "019sl85c4skksc3hl1mq9j4sw47pffgv53dl0nln3vaci09pfigd"; 156678 156965 libraryHaskellDepends = [ 156679 156966 aeson attoparsec base bytestring conduit conduit-extra http-client 156680 156967 http-client-tls http-types mtl resourcet transformers unliftio-core 156681 156968 ]; 156682 156969 testHaskellDepends = [ 156683 156970 aeson base blaze-builder bytestring case-insensitive conduit 156684 - conduit-extra connection cookie data-default-class hspec 156971 + conduit-extra cookie crypton-connection data-default-class hspec 156685 156972 http-client http-types HUnit network resourcet streaming-commons 156686 156973 temporary text time tls transformers unliftio utf8-string wai 156687 156974 wai-conduit warp warp-tls ··· 156689 156976 doCheck = false; 156690 156977 description = "HTTP client package with conduit interface and HTTPS support"; 156691 156978 license = lib.licenses.bsd3; 156979 + hydraPlatforms = lib.platforms.none; 156692 156980 }) {}; 156693 156981 156694 156982 "http-conduit-browser" = callPackage ··· 157433 157721 license = lib.licenses.bsd3; 157434 157722 }) {}; 157435 157723 157436 - "http2_4_1_2" = callPackage 157724 + "http2_4_1_4" = callPackage 157437 157725 ({ mkDerivation, aeson, aeson-pretty, array, async, base 157438 157726 , base16-bytestring, bytestring, case-insensitive, containers 157439 - , cryptonite, directory, filepath, gauge, Glob, hspec 157440 - , hspec-discover, http-types, network, network-byte-order 157441 - , network-run, psqueues, stm, text, time-manager, typed-process 157442 - , unix-time, unliftio, unordered-containers, vector 157727 + , crypton, directory, filepath, gauge, Glob, hspec, hspec-discover 157728 + , http-types, network, network-byte-order, network-run, psqueues 157729 + , stm, text, time-manager, typed-process, unix-time, unliftio 157730 + , unordered-containers, vector 157443 157731 }: 157444 157732 mkDerivation { 157445 157733 pname = "http2"; 157446 - version = "4.1.2"; 157447 - sha256 = "0q4wn0qqswbrw92ypkwzis3nb0jlp8hv9ly5s79mz5n069h2kz0m"; 157734 + version = "4.1.4"; 157735 + sha256 = "1mi0nahsbv0amcb9r21d8p4j1nk8y75vli8a9axjg2y3yi3i95bx"; 157448 157736 isLibrary = true; 157449 157737 isExecutable = true; 157450 157738 libraryHaskellDepends = [ ··· 157453 157741 unliftio 157454 157742 ]; 157455 157743 testHaskellDepends = [ 157456 - aeson aeson-pretty async base base16-bytestring bytestring 157457 - cryptonite directory filepath Glob hspec http-types network 157458 - network-byte-order network-run text typed-process 157459 - unordered-containers vector 157744 + aeson aeson-pretty async base base16-bytestring bytestring crypton 157745 + directory filepath Glob hspec http-types network network-byte-order 157746 + network-run text typed-process unordered-containers vector 157460 157747 ]; 157461 157748 testToolDepends = [ hspec-discover ]; 157462 157749 benchmarkHaskellDepends = [ ··· 157585 157872 "http3" = callPackage 157586 157873 ({ mkDerivation, array, attoparsec, base, base16-bytestring 157587 157874 , bytestring, case-insensitive, conduit, conduit-extra, containers 157588 - , cryptonite, hspec, hspec-discover, http-types, http2, iproute 157875 + , crypton, hspec, hspec-discover, http-types, http2, iproute 157589 157876 , network, network-byte-order, quic, QuickCheck, sockaddr, stm 157590 157877 , time-manager, tls, unliftio 157591 157878 }: 157592 157879 mkDerivation { 157593 157880 pname = "http3"; 157594 - version = "0.0.3"; 157595 - sha256 = "0fn0qbhqly9saqidkp20wnz4f8afp9zjamly1pm0ryqg2kjlhvvy"; 157881 + version = "0.0.4"; 157882 + sha256 = "02w2f17m6n46rr0212c7fp33vrgb13zj41mncm9wyvwkmmm47gmv"; 157596 157883 isLibrary = true; 157597 157884 isExecutable = true; 157598 157885 libraryHaskellDepends = [ ··· 157601 157888 ]; 157602 157889 testHaskellDepends = [ 157603 157890 attoparsec base base16-bytestring bytestring conduit conduit-extra 157604 - cryptonite hspec http-types http2 iproute network quic QuickCheck 157605 - stm tls unliftio 157891 + crypton hspec http-types http2 iproute network quic QuickCheck stm 157892 + tls unliftio 157606 157893 ]; 157607 157894 testToolDepends = [ hspec-discover ]; 157608 157895 description = "HTTP/3 library"; ··· 157682 157969 }) {}; 157683 157970 157684 157971 "httpstan" = callPackage 157685 - ({ mkDerivation, aeson, base, base64-bytestring, bytestring 157686 - , case-insensitive, containers, deepseq, exceptions, hspec 157687 - , http-api-data, http-client, http-client-tls, http-media 157688 - , http-types, iso8601-time, katip, microlens, mtl, network 157689 - , QuickCheck, random, safe-exceptions, semigroups, text, time 157690 - , transformers, unordered-containers, vector 157972 + ({ mkDerivation, aeson, base, containers, exceptions, http-api-data 157973 + , http-client, http-client-tls, http-types, mtl, network-uri 157974 + , servant, servant-client, servant-client-core, servant-server 157975 + , swagger2, text, time, transformers, uuid, wai, warp 157691 157976 }: 157692 157977 mkDerivation { 157693 157978 pname = "httpstan"; 157694 - version = "0.2.0.0"; 157695 - sha256 = "08wpigjaqjdbml7bp4rpikldzv7qkkzbxlmngp9p99zxr75d86vf"; 157979 + version = "0.3.0.0"; 157980 + sha256 = "11wba17y4d59cymsrll3zpv6axiadfnpjfpg8rrkyms2wsc44qad"; 157696 157981 libraryHaskellDepends = [ 157697 - aeson base base64-bytestring bytestring case-insensitive containers 157698 - deepseq exceptions http-api-data http-client http-client-tls 157699 - http-media http-types iso8601-time katip microlens mtl network 157700 - random safe-exceptions text time transformers unordered-containers 157701 - vector 157702 - ]; 157703 - testHaskellDepends = [ 157704 - aeson base bytestring containers hspec iso8601-time mtl QuickCheck 157705 - semigroups text time transformers unordered-containers vector 157982 + aeson base containers exceptions http-api-data http-client 157983 + http-client-tls http-types mtl network-uri servant servant-client 157984 + servant-client-core servant-server swagger2 text time transformers 157985 + uuid wai warp 157706 157986 ]; 157707 - description = "Auto-generated httpstan API Client"; 157987 + description = "Auto-generated API bindings for httpstan"; 157708 157988 license = lib.licenses.bsd3; 157709 157989 hydraPlatforms = lib.platforms.none; 157710 157990 broken = true; ··· 162199 162479 ]; 162200 162480 description = "International Geomagnetic Reference Field"; 162201 162481 license = lib.licenses.bsd3; 162482 + hydraPlatforms = lib.platforms.none; 162202 162483 }) {}; 162203 162484 162204 162485 "ihaskell" = callPackage ··· 164724 165005 license = lib.licenses.bsd3; 164725 165006 }) {}; 164726 165007 164727 - "input-parsers_0_3" = callPackage 165008 + "input-parsers_0_3_0_1" = callPackage 164728 165009 ({ mkDerivation, attoparsec, base, binary, bytestring 164729 165010 , monoid-subclasses, parsec, parsers, text, transformers 164730 165011 }: 164731 165012 mkDerivation { 164732 165013 pname = "input-parsers"; 164733 - version = "0.3"; 164734 - sha256 = "00xiaxf135v3g8l8gn0lzhfkc1lffvjblrij6lwyfigicm2ggff0"; 165014 + version = "0.3.0.1"; 165015 + sha256 = "1f7q6m0wi6pa9j7mw8gsbc16drgcw8sh6ghq9hdgcrkqzbhp990g"; 164735 165016 libraryHaskellDepends = [ 164736 165017 attoparsec base binary bytestring monoid-subclasses parsec parsers 164737 165018 text transformers ··· 165220 165501 license = lib.licenses.isc; 165221 165502 }) {}; 165222 165503 165504 + "integer-conversion" = callPackage 165505 + ({ mkDerivation, base, bytestring, primitive, QuickCheck 165506 + , quickcheck-instances, tasty, tasty-bench, tasty-quickcheck, text 165507 + }: 165508 + mkDerivation { 165509 + pname = "integer-conversion"; 165510 + version = "0.1"; 165511 + sha256 = "07fry6pwxlq4jrlnl9klp0xfxc9zhgsv34jkzbcywcgdm9dk1jgh"; 165512 + libraryHaskellDepends = [ base bytestring primitive text ]; 165513 + testHaskellDepends = [ 165514 + base bytestring QuickCheck quickcheck-instances tasty 165515 + tasty-quickcheck text 165516 + ]; 165517 + benchmarkHaskellDepends = [ base bytestring tasty-bench text ]; 165518 + description = "Conversion from strings to Integer"; 165519 + license = lib.licenses.bsd3; 165520 + hydraPlatforms = lib.platforms.none; 165521 + broken = true; 165522 + }) {}; 165523 + 165223 165524 "integer-gmp_1_1" = callPackage 165224 165525 ({ mkDerivation, base, ghc-bignum, ghc-prim }: 165225 165526 mkDerivation { ··· 165370 165671 license = lib.licenses.bsd3; 165371 165672 hydraPlatforms = lib.platforms.none; 165372 165673 }) {intel_aes = null;}; 165674 + 165675 + "intel-powermon" = callPackage 165676 + ({ mkDerivation, base, posix-timer, streaming, unix }: 165677 + mkDerivation { 165678 + pname = "intel-powermon"; 165679 + version = "0"; 165680 + sha256 = "036g1lm3n5zm67yr151xvwq8134a0n6wbfzp3avqkjpn478khiyq"; 165681 + isLibrary = false; 165682 + isExecutable = true; 165683 + executableHaskellDepends = [ base posix-timer streaming unix ]; 165684 + description = "Poll modern Intel/AMD CPU power consumption on Linux via RAPL"; 165685 + license = lib.licenses.agpl3Only; 165686 + mainProgram = "intel-powermon"; 165687 + }) {}; 165373 165688 165374 165689 "intensional-datatys" = callPackage 165375 165690 ({ mkDerivation, aeson, base, containers, directory, extra ··· 165873 166188 }) {}; 165874 166189 165875 166190 "interval-patterns" = callPackage 165876 - ({ mkDerivation, base, containers, groups, hspec, lattices 166191 + ({ mkDerivation, base, containers, groups, heaps, hspec, lattices 165877 166192 , QuickCheck, semirings, time, time-compat 165878 166193 }: 165879 166194 mkDerivation { 165880 166195 pname = "interval-patterns"; 165881 - version = "0.6.0.1"; 165882 - sha256 = "0i4wwch90842dkbrjh5ikclwxgzs9wx9s2v2hgcv9zzqi4z8pn4x"; 166196 + version = "0.7.0.2"; 166197 + sha256 = "0sa2v7z3ryx45by6zcgfi56n53f3akf4xifj9sp69rhc4mlqj735"; 165883 166198 libraryHaskellDepends = [ 165884 - base containers groups lattices semirings time time-compat 166199 + base containers groups heaps lattices semirings time time-compat 165885 166200 ]; 165886 166201 testHaskellDepends = [ 165887 - base containers groups hspec lattices QuickCheck semirings time 165888 - time-compat 166202 + base containers groups heaps hspec lattices QuickCheck semirings 166203 + time time-compat 165889 166204 ]; 165890 166205 description = "Intervals, and monoids thereof"; 165891 166206 license = lib.licenses.bsd3; ··· 166218 166533 pname = "invertible-grammar"; 166219 166534 version = "0.1.3.4"; 166220 166535 sha256 = "19x9bzc1cvz5zc03iglf42vyngnjkspzfd2jpl9y6pwp2sf66325"; 166536 + revision = "1"; 166537 + editedCabalFile = "059i4v6kmsrry2lw7m2ricg2ls14v4b2k554l7cmpa46g28yakyn"; 166221 166538 libraryHaskellDepends = [ 166222 166539 base bifunctors containers mtl prettyprinter profunctors semigroups 166223 166540 tagged template-haskell text transformers ··· 169952 170269 }: 169953 170270 mkDerivation { 169954 170271 pname = "journalctl-stream"; 169955 - version = "0.6.0.2"; 169956 - sha256 = "1yw2n93iqz35r33qbyg7z5xxricsqlyql8hmj5adm5q86fil97kk"; 170272 + version = "0.6.0.4"; 170273 + sha256 = "0ckaxaja4152mvlhypd36x2cqw4wiiid11ph6ih9w4c0g9244njf"; 169957 170274 libraryHaskellDepends = [ 169958 170275 aeson base bytestring conduit process text time 169959 170276 unordered-containers ··· 173547 173864 description = "Basic rendering programs for Keid engine"; 173548 173865 license = lib.licenses.bsd3; 173549 173866 platforms = [ "x86_64-linux" ]; 173867 + hydraPlatforms = lib.platforms.none; 173868 + broken = true; 173550 173869 }) {}; 173551 173870 173552 173871 "keid-resource-gltf" = callPackage ··· 173723 174042 }: 173724 174043 mkDerivation { 173725 174044 pname = "keter"; 173726 - version = "2.1.0"; 173727 - sha256 = "1yfql7cb8xmny52gid5zbav96b7j0cys3fgcxy5qg8scgs5ri43v"; 174045 + version = "2.1.1"; 174046 + sha256 = "1wsg1jd8gllbkxw6czh02c03s6lbfmw05giq2d4jp6vckpq3yqla"; 173728 174047 isLibrary = true; 173729 174048 isExecutable = true; 173730 174049 libraryHaskellDepends = [ ··· 177371 177690 pname = "language-lua"; 177372 177691 version = "0.11.0.1"; 177373 177692 sha256 = "0712xbijag03n61d80bnd9xw94fzywc76l8ya9ijv684ls0qymy2"; 177693 + revision = "1"; 177694 + editedCabalFile = "185q2xk8q17q29hcph3s94gy7jpzm46s4qls589jsicvas7gnl4d"; 177374 177695 libraryHaskellDepends = [ 177375 177696 alex-tools array base bytestring deepseq text 177376 177697 ]; ··· 177930 178251 }: 177931 178252 mkDerivation { 177932 178253 pname = "language-toolkit"; 177933 - version = "1.0.1.0"; 177934 - sha256 = "0wkx4sbzirfi07hsmafzliwri40amq3m1ry6lmwd2sjpbgrbd81g"; 178254 + version = "1.1.0.0"; 178255 + sha256 = "0ffr53jggh3c01v802xywy387jv5wa5vwwyvipiqpxwqcspr4nd7"; 177935 178256 isLibrary = true; 177936 178257 isExecutable = true; 177937 178258 libraryHaskellDepends = [ base containers deepseq parallel ]; ··· 177998 178319 177999 178320 "lapack" = callPackage 178000 178321 ({ mkDerivation, base, blas-ffi, blaze-html, boxes, ChasingBottoms 178001 - , comfort-array, comfort-array-shape, data-ref, deepseq 178002 - , doctest-exitcode-stdio, guarded-allocation, hyper, lapack-ffi 178003 - , lazyio, monoid-transformer, netlib-ffi, non-empty, QuickCheck 178004 - , quickcheck-transformer, random, semigroups, Stream, tagged, text 178005 - , tfp, transformers, unique-logic-tf, utility-ht 178322 + , comfort-array, comfort-array-shape, comfort-blas, data-ref 178323 + , deepseq, doctest-exitcode-stdio, guarded-allocation, hyper 178324 + , lapack-ffi, lazyio, monoid-transformer, netlib-ffi, non-empty 178325 + , QuickCheck, quickcheck-transformer, random, semigroups, Stream 178326 + , tagged, text, tfp, transformers, unique-logic-tf, utility-ht 178006 178327 }: 178007 178328 mkDerivation { 178008 178329 pname = "lapack"; 178009 - version = "0.5.0.3"; 178010 - sha256 = "0461rzz8qp5vqna7rha3qa89pm7clkmx1vqmkmqb9i50znfr0sc0"; 178330 + version = "0.5.1"; 178331 + sha256 = "0lknvjhdn1gqxp6cc8iyiwqdvd2nxby3csfvprkbn5b7x6c6f58k"; 178011 178332 isLibrary = true; 178012 178333 isExecutable = true; 178013 178334 libraryHaskellDepends = [ 178014 178335 base blas-ffi blaze-html boxes comfort-array comfort-array-shape 178015 - deepseq guarded-allocation hyper lapack-ffi lazyio netlib-ffi 178016 - non-empty semigroups Stream tagged text tfp transformers utility-ht 178336 + comfort-blas deepseq guarded-allocation hyper lapack-ffi lazyio 178337 + netlib-ffi non-empty semigroups Stream tagged text tfp transformers 178338 + utility-ht 178017 178339 ]; 178018 178340 testHaskellDepends = [ 178019 178341 base ChasingBottoms comfort-array comfort-array-shape data-ref ··· 178131 178453 }: 178132 178454 mkDerivation { 178133 178455 pname = "large-anon"; 178134 - version = "0.2"; 178135 - sha256 = "0ym7awxla6lq4gxx6j110cgc3mmfh286nhm7cis7vail8fzbqqf3"; 178456 + version = "0.2.1"; 178457 + sha256 = "192cs2pby5pxl1668b4s4sm0ppc3qnk189x2i3fv9y3fb8fqjq66"; 178136 178458 isLibrary = true; 178137 178459 isExecutable = true; 178138 178460 libraryHaskellDepends = [ ··· 179450 179772 pname = "leanpub-concepts"; 179451 179773 version = "1.1.0.2"; 179452 179774 sha256 = "0xlnpn48zsm5pgjghj6cnfvfzaq6mkrph23b0l8zf66wvw8gbvc0"; 179775 + revision = "1"; 179776 + editedCabalFile = "0lxs2x6nadb1cyyxjr9b32c9dmmjgmfy2j99dg9qfdhp7a9ih5y2"; 179453 179777 libraryHaskellDepends = [ base bytestring text ]; 179454 179778 description = "Types for the Leanpub API"; 179455 179779 license = lib.licenses.mit; ··· 179464 179788 pname = "leanpub-wreq"; 179465 179789 version = "1.1.0.4"; 179466 179790 sha256 = "0p9wyj3dsm8mif9wfg9m9gwdnisg19gvjxmrkkrk0ymrjpvgq5ha"; 179791 + revision = "1"; 179792 + editedCabalFile = "14qqaxwb0jmswnrs38mnbzfs98hbzqshsnnw0xzvnp80rdw5mr10"; 179467 179793 libraryHaskellDepends = [ 179468 179794 aeson base bytestring exceptions leanpub-concepts mwc-random text 179469 179795 time transformers unordered-containers wreq ··· 180432 180758 pname = "lentil"; 180433 180759 version = "1.5.5.4"; 180434 180760 sha256 = "04srkha0nv4k7gxma3q09p9zph6z6v0blpvqivn46g071zdf76cj"; 180761 + revision = "1"; 180762 + editedCabalFile = "1hnx82b18hys661im4gdv19nr5ngdhip23lrb2m61qqng473g83r"; 180435 180763 isLibrary = false; 180436 180764 isExecutable = true; 180437 180765 executableHaskellDepends = [ ··· 182005 182333 pname = "libyaml-streamly"; 182006 182334 version = "0.2.1"; 182007 182335 sha256 = "0jh980ilaxhdhyp3vbmg0s3c2vf5ckxlkyj6n45vqb56847mg5bk"; 182336 + revision = "1"; 182337 + editedCabalFile = "0lf4zz6li7g4nz6gspvs0f14fkg9bkgdzz6bclhsnv36ksbr1h8w"; 182008 182338 libraryHaskellDepends = [ 182009 182339 base bytestring deepseq safe-exceptions streamly 182010 182340 ]; ··· 182495 182825 }: 182496 182826 mkDerivation { 182497 182827 pname = "lima"; 182498 - version = "0.2.1.2"; 182499 - sha256 = "1x937qrxzzi0g6fdk36mbxlrb0zf5m38s6in6g1p15nzr88p50dx"; 182828 + version = "0.2.1.3"; 182829 + sha256 = "0834lh5yaynfyy2k6lqbb43dsrgsrmpi11w73js8p08zhzkhndnr"; 182500 182830 isLibrary = true; 182501 182831 isExecutable = true; 182502 182832 libraryHaskellDepends = [ ··· 184321 184651 pname = "list-transformer"; 184322 184652 version = "1.0.9"; 184323 184653 sha256 = "1lvdyrxflssayq14x36a0ix7q3hfzlq924mjg21b7f6s3j9262xr"; 184324 - revision = "1"; 184325 - editedCabalFile = "1d41pbd7kg8im5bvzhkndr6lr106rpd7m1pqb39zgnj5cbmgaql3"; 184654 + revision = "2"; 184655 + editedCabalFile = "0356ca6kb6r8j2lc9vbzxz0chdzplc3v6m4sbsm4p7vanjjl1zgf"; 184326 184656 libraryHaskellDepends = [ base mmorph mtl ]; 184327 184657 testHaskellDepends = [ base doctest ]; 184328 184658 description = "List monad transformer"; ··· 186320 186650 pname = "logic-TPTP"; 186321 186651 version = "0.5.0.0"; 186322 186652 sha256 = "0sqzf332c7zdwkdi1346dxljrdammiz1vc332j85487nb0ypnxwi"; 186323 - revision = "1"; 186324 - editedCabalFile = "108fql6laqwvxvnk7h4jjl9652bhz7ja2z2296svjhhjz5pvar8g"; 186653 + revision = "4"; 186654 + editedCabalFile = "012aqairsbxqrl0ak5i11wqr1rcdpwi5m4f5nww8glxi3jglnnyb"; 186325 186655 isLibrary = true; 186326 186656 isExecutable = true; 186327 186657 libraryHaskellDepends = [ ··· 186832 187162 mainProgram = "longshot"; 186833 187163 }) {}; 186834 187164 187165 + "looksee" = callPackage 187166 + ({ mkDerivation, base, bifunctors, containers, errata, mmorph, mtl 187167 + , recursion-schemes, scientific, tasty, tasty-hunit, text, vector 187168 + }: 187169 + mkDerivation { 187170 + pname = "looksee"; 187171 + version = "0.5.0"; 187172 + sha256 = "0da272255k0lj7y5vmi8y3zx015rhwsac7isvmywzhmgf7b6g3nv"; 187173 + libraryHaskellDepends = [ 187174 + base bifunctors containers errata mmorph mtl recursion-schemes 187175 + scientific text vector 187176 + ]; 187177 + testHaskellDepends = [ 187178 + base bifunctors containers errata mmorph mtl recursion-schemes 187179 + scientific tasty tasty-hunit text vector 187180 + ]; 187181 + description = "parser with looksee"; 187182 + license = lib.licenses.bsd3; 187183 + }) {}; 187184 + 186835 187185 "lookup-tables" = callPackage 186836 187186 ({ mkDerivation, base, primitive, tasty, tasty-hunit 186837 187187 , template-haskell ··· 186941 187291 testToolDepends = [ sydtest-discover ]; 186942 187292 license = lib.licenses.mit; 186943 187293 hydraPlatforms = lib.platforms.none; 187294 + broken = true; 186944 187295 }) {}; 186945 187296 186946 187297 "loops" = callPackage ··· 187402 187753 license = lib.licenses.mit; 187403 187754 }) {}; 187404 187755 187756 + "lsp_2_0_0_0" = callPackage 187757 + ({ mkDerivation, aeson, async, attoparsec, base, bytestring 187758 + , co-log-core, containers, data-default, directory, exceptions 187759 + , filepath, hashable, hspec, hspec-discover, lens, lsp-types, mtl 187760 + , prettyprinter, random, row-types, sorted-list, stm, temporary 187761 + , text, text-rope, transformers, unliftio-core 187762 + , unordered-containers, uuid 187763 + }: 187764 + mkDerivation { 187765 + pname = "lsp"; 187766 + version = "2.0.0.0"; 187767 + sha256 = "1rhibq4s0d9vxsfnwa35nm5xll693k0hbfp6b2c9478s8wg32wxg"; 187768 + isLibrary = true; 187769 + isExecutable = true; 187770 + libraryHaskellDepends = [ 187771 + aeson async attoparsec base bytestring co-log-core containers 187772 + data-default directory exceptions filepath hashable lens lsp-types 187773 + mtl prettyprinter random row-types sorted-list stm temporary text 187774 + text-rope transformers unliftio-core unordered-containers uuid 187775 + ]; 187776 + testHaskellDepends = [ 187777 + base containers hspec row-types sorted-list text text-rope 187778 + unordered-containers 187779 + ]; 187780 + testToolDepends = [ hspec-discover ]; 187781 + description = "Haskell library for the Microsoft Language Server Protocol"; 187782 + license = lib.licenses.mit; 187783 + hydraPlatforms = lib.platforms.none; 187784 + }) {}; 187785 + 187405 187786 "lsp-test" = callPackage 187406 187787 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 187407 187788 , bytestring, co-log-core, conduit, conduit-parse, containers ··· 187431 187812 license = lib.licenses.bsd3; 187432 187813 }) {}; 187433 187814 187815 + "lsp-test_0_15_0_0" = callPackage 187816 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 187817 + , bytestring, co-log-core, conduit, conduit-parse, containers 187818 + , data-default, Diff, directory, exceptions, extra, filepath, Glob 187819 + , hspec, lens, lsp, lsp-types, mtl, parser-combinators, process 187820 + , row-types, some, text, time, transformers, unix, unliftio 187821 + }: 187822 + mkDerivation { 187823 + pname = "lsp-test"; 187824 + version = "0.15.0.0"; 187825 + sha256 = "0fg1nc1xkv5cl26vbny97r1w755qim9hcmzfxdx38wklrishrvcx"; 187826 + libraryHaskellDepends = [ 187827 + aeson aeson-pretty ansi-terminal async base bytestring co-log-core 187828 + conduit conduit-parse containers data-default Diff directory 187829 + exceptions filepath Glob lens lsp lsp-types mtl parser-combinators 187830 + process row-types some text time transformers unix 187831 + ]; 187832 + testHaskellDepends = [ 187833 + aeson base co-log-core containers data-default directory filepath 187834 + hspec lens lsp mtl parser-combinators process text unliftio 187835 + ]; 187836 + testToolDepends = [ lsp ]; 187837 + benchmarkHaskellDepends = [ base extra lsp process ]; 187838 + description = "Functional test framework for LSP servers"; 187839 + license = lib.licenses.bsd3; 187840 + hydraPlatforms = lib.platforms.none; 187841 + }) {}; 187842 + 187434 187843 "lsp-types_1_4_0_1" = callPackage 187435 187844 ({ mkDerivation, aeson, base, binary, bytestring, containers 187436 187845 , data-default, deepseq, Diff, directory, dlist, filepath, hashable ··· 187480 187889 license = lib.licenses.mit; 187481 187890 }) {}; 187482 187891 187892 + "lsp-types_2_0_0_1" = callPackage 187893 + ({ mkDerivation, aeson, base, binary, containers, data-default 187894 + , deepseq, Diff, directory, dlist, exceptions, file-embed, filepath 187895 + , hashable, hspec, hspec-discover, lens, mod, mtl, network-uri 187896 + , prettyprinter, QuickCheck, quickcheck-instances, regex, row-types 187897 + , safe, some, template-haskell, text, unordered-containers 187898 + }: 187899 + mkDerivation { 187900 + pname = "lsp-types"; 187901 + version = "2.0.0.1"; 187902 + sha256 = "119w6crys6jh680gm2pdpvxxqxs0fwqfdmzlr274qlj00sa51wc7"; 187903 + isLibrary = true; 187904 + isExecutable = true; 187905 + libraryHaskellDepends = [ 187906 + aeson base binary containers data-default deepseq Diff dlist 187907 + exceptions file-embed filepath hashable lens mod mtl network-uri 187908 + row-types safe some template-haskell text unordered-containers 187909 + ]; 187910 + executableHaskellDepends = [ 187911 + base containers directory filepath mtl prettyprinter regex text 187912 + ]; 187913 + testHaskellDepends = [ 187914 + aeson base filepath hspec lens network-uri QuickCheck 187915 + quickcheck-instances row-types text 187916 + ]; 187917 + testToolDepends = [ hspec-discover ]; 187918 + doHaddock = false; 187919 + description = "Haskell library for the Microsoft Language Server Protocol, data types"; 187920 + license = lib.licenses.mit; 187921 + hydraPlatforms = lib.platforms.none; 187922 + mainProgram = "generator"; 187923 + }) {}; 187924 + 187483 187925 "lss" = callPackage 187484 187926 ({ mkDerivation, attoparsec, base, containers, directory, filepath 187485 187927 , hspec2, language-css, language-css-attoparsec, text, xmlhtml ··· 192359 192801 }: 192360 192802 mkDerivation { 192361 192803 pname = "med-module"; 192362 - version = "0.1.2.2"; 192363 - sha256 = "0qvwz49xz4bbhkkh9c7zjqzvbdhmgnraxpj8a4fc5lf0yb1k79ba"; 192804 + version = "0.1.3"; 192805 + sha256 = "04p1aj85hsr3wpnnfg4nxbqsgq41ga63mrg2w39d8ls8ljvajvna"; 192364 192806 isLibrary = true; 192365 192807 isExecutable = true; 192366 192808 libraryHaskellDepends = [ ··· 192670 193112 license = lib.licenses.bsd2; 192671 193113 }) {}; 192672 193114 192673 - "megaparsec_9_3_1" = callPackage 193115 + "megaparsec_9_4_1" = callPackage 192674 193116 ({ mkDerivation, base, bytestring, case-insensitive, containers 192675 193117 , criterion, deepseq, mtl, parser-combinators, scientific, text 192676 193118 , transformers, weigh 192677 193119 }: 192678 193120 mkDerivation { 192679 193121 pname = "megaparsec"; 192680 - version = "9.3.1"; 192681 - sha256 = "00dp79sssb2j9w0sbzphkqjn49xzrafd16gkqda5ngqhbjdniw73"; 193122 + version = "9.4.1"; 193123 + sha256 = "0a8s4i2vi1q9l75nf65jdjfkf25dhra4ij9y35a5fi5vk9848sf1"; 192682 193124 libraryHaskellDepends = [ 192683 193125 base bytestring case-insensitive containers deepseq mtl 192684 193126 parser-combinators scientific text transformers ··· 192715 193157 license = lib.licenses.bsd2; 192716 193158 }) {}; 192717 193159 192718 - "megaparsec-tests_9_3_1" = callPackage 193160 + "megaparsec-tests_9_4_1" = callPackage 192719 193161 ({ mkDerivation, base, bytestring, case-insensitive, containers 192720 193162 , hspec, hspec-discover, hspec-expectations, hspec-megaparsec 192721 193163 , megaparsec, mtl, parser-combinators, QuickCheck, scientific ··· 192723 193165 }: 192724 193166 mkDerivation { 192725 193167 pname = "megaparsec-tests"; 192726 - version = "9.3.1"; 192727 - sha256 = "01gd6xlqfazpbawzwgbk0ag86dq8nv5qdrhny9b7hrks3i3b558m"; 193168 + version = "9.4.1"; 193169 + sha256 = "08lvya4c1vbwyi1130rhm3xd8aq4x1m3wnyphwzal2p556hzlr2g"; 192728 193170 libraryHaskellDepends = [ 192729 193171 base bytestring containers hspec hspec-expectations 192730 193172 hspec-megaparsec megaparsec mtl QuickCheck text transformers ··· 193521 193963 }) {}; 193522 193964 193523 193965 "merkle-log" = callPackage 193524 - ({ mkDerivation, base, bytestring, criterion, cryptonite, deepseq 193525 - , exceptions, hash-tree, memory, mwc-random, QuickCheck, random 193526 - , random-bytestring, text 193966 + ({ mkDerivation, base, bytestring, criterion, crypton, cryptonite 193967 + , deepseq, exceptions, hash-tree, memory, mwc-random, QuickCheck 193968 + , random, random-bytestring, text 193527 193969 }: 193528 193970 mkDerivation { 193529 193971 pname = "merkle-log"; 193530 - version = "0.1.1"; 193531 - sha256 = "17a6s9xbv460289avbwdnf8c4vhw9qzj5xddxvfmnjjwp58qxvj1"; 193972 + version = "0.2.0"; 193973 + sha256 = "0v4rga0g2xfk10g0gd8f0if03skl7gqx4n44msdbcnyx3pn6ydl0"; 193532 193974 libraryHaskellDepends = [ 193533 - base bytestring cryptonite deepseq exceptions memory text 193975 + base bytestring crypton deepseq exceptions memory text 193534 193976 ]; 193535 193977 testHaskellDepends = [ 193536 - base bytestring cryptonite deepseq exceptions memory QuickCheck 193978 + base bytestring crypton deepseq exceptions memory QuickCheck 193537 193979 ]; 193538 193980 benchmarkHaskellDepends = [ 193539 - base bytestring criterion cryptonite deepseq hash-tree memory 193540 - mwc-random QuickCheck random random-bytestring 193981 + base bytestring criterion crypton cryptonite deepseq hash-tree 193982 + memory mwc-random QuickCheck random random-bytestring 193541 193983 ]; 193542 193984 description = "Merkle Tree Logs"; 193543 193985 license = lib.licenses.bsd3; ··· 194786 195228 , filepath, hspec, http-client, http-date, http-types, network 194787 195229 , old-locale, parsec, resourcet, split, streaming-commons, text 194788 195230 , time, time-manager, transformers, unix, unix-time, unliftio 194789 - , unordered-containers, wai, wai-app-file-cgi, wai-http2-extra 194790 - , wai-logger, warp 195231 + , unordered-containers, wai, wai-app-file-cgi, wai-logger, warp 194791 195232 }: 194792 195233 mkDerivation { 194793 195234 pname = "mighttpd2"; 194794 - version = "4.0.2"; 194795 - sha256 = "0q09adyhaa9mxajj5fg3fsdpckdh3icp2bvm1f64l1m3jqxw8k8x"; 195235 + version = "4.0.3"; 195236 + sha256 = "1qgr5giks32xmcnkq973cs20lzgjvjr6bgymffsb3c8sj873jhqs"; 194796 195237 isLibrary = true; 194797 195238 isExecutable = true; 194798 195239 enableSeparateDataOutput = true; ··· 194805 195246 executableHaskellDepends = [ 194806 195247 base bytestring conduit-extra directory filepath http-client 194807 195248 http-date http-types network old-locale streaming-commons time 194808 - time-manager transformers unix wai wai-app-file-cgi wai-http2-extra 194809 - wai-logger warp 195249 + time-manager transformers unix wai wai-app-file-cgi wai-logger warp 194810 195250 ]; 194811 195251 testHaskellDepends = [ base hspec http-client ]; 194812 195252 description = "High performance web server on WAI/warp"; 194813 195253 license = lib.licenses.bsd3; 195254 + hydraPlatforms = lib.platforms.none; 195255 + broken = true; 194814 195256 }) {}; 194815 195257 194816 195258 "mighty-metropolis" = callPackage ··· 196954 197396 ({ mkDerivation, base, doctest }: 196955 197397 mkDerivation { 196956 197398 pname = "modular-arithmetic"; 196957 - version = "2.0.0.2"; 196958 - sha256 = "1bbn3pwvpl9v7a8gkxx83w2s8mk2q9gin7yvkkr97f64rdf8lnrq"; 196959 - revision = "1"; 196960 - editedCabalFile = "035z6pjgbgcb39dh6zd822d1yxvjs5j684cx7mn14wq0q1l0q295"; 197399 + version = "2.0.0.3"; 197400 + sha256 = "0s73xcql2kmmvyxh9jsg2wjjs9d1f8cnbgzq659g28qsa47qdic7"; 196961 197401 libraryHaskellDepends = [ base ]; 196962 197402 testHaskellDepends = [ base doctest ]; 196963 197403 description = "A type for integers modulo some constant"; ··· 197745 198185 }: 197746 198186 mkDerivation { 197747 198187 pname = "monad-logger"; 197748 - version = "0.3.39"; 197749 - sha256 = "19992zh63axs0q86fgznk04dan8h3hbs72cjp1s3yynsgl23pwnk"; 197750 - revision = "1"; 197751 - editedCabalFile = "0nj4qpmp6i5lmfbk7f1shljx8g2062fq6y857y4f9avp1cb9zm7d"; 198188 + version = "0.3.40"; 198189 + sha256 = "1aff4ks9615x51841l8g906702xk2g3pn4n5x9ndxppnrxkqdvfb"; 197752 198190 libraryHaskellDepends = [ 197753 198191 base bytestring conduit conduit-extra exceptions fast-logger 197754 198192 lifted-base monad-control monad-loops mtl resourcet stm stm-chans ··· 198440 198878 hydraPlatforms = lib.platforms.none; 198441 198879 }) {}; 198442 198880 198881 + "monad-time-effectful" = callPackage 198882 + ({ mkDerivation, base, effectful-core, monad-time, time }: 198883 + mkDerivation { 198884 + pname = "monad-time-effectful"; 198885 + version = "1.0.0.0"; 198886 + sha256 = "1gxmgr8vrpdncrnw9q5i3vqbi7llrah34gpfyq3qcb15sqi44gk9"; 198887 + libraryHaskellDepends = [ base effectful-core monad-time time ]; 198888 + description = "Adaptation of the monad-time library for the effectful ecosystem"; 198889 + license = lib.licenses.mit; 198890 + hydraPlatforms = lib.platforms.none; 198891 + broken = true; 198892 + }) {}; 198893 + 198443 198894 "monad-timing" = callPackage 198444 198895 ({ mkDerivation, base, containers, exceptions, hlint, hspec 198445 198896 , monad-control, mtl, time, transformers, transformers-base ··· 199400 199851 license = lib.licenses.mit; 199401 199852 }) {}; 199402 199853 199854 + "monoidmap" = callPackage 199855 + ({ mkDerivation, base, containers, deepseq, groups, hspec 199856 + , hspec-discover, monoid-subclasses, nonempty-containers, nothunks 199857 + , pretty-show, QuickCheck, quickcheck-classes, quickcheck-groups 199858 + , quickcheck-instances, quickcheck-monoid-subclasses, tasty-bench 199859 + , tasty-hunit, text 199860 + }: 199861 + mkDerivation { 199862 + pname = "monoidmap"; 199863 + version = "0.0.0.1"; 199864 + sha256 = "0qq1q8xk0bf32lx4hnsh45kkj2fkjfskc2krggmcrbnapnxmcb56"; 199865 + libraryHaskellDepends = [ 199866 + base containers deepseq groups monoid-subclasses 199867 + nonempty-containers nothunks 199868 + ]; 199869 + testHaskellDepends = [ 199870 + base containers groups hspec monoid-subclasses pretty-show 199871 + QuickCheck quickcheck-classes quickcheck-groups 199872 + quickcheck-instances quickcheck-monoid-subclasses text 199873 + ]; 199874 + testToolDepends = [ hspec-discover ]; 199875 + benchmarkHaskellDepends = [ 199876 + base containers deepseq tasty-bench tasty-hunit 199877 + ]; 199878 + doHaddock = false; 199879 + description = "Monoidal map type"; 199880 + license = lib.licenses.asl20; 199881 + hydraPlatforms = lib.platforms.none; 199882 + }) {}; 199883 + 199403 199884 "monoidplus" = callPackage 199404 199885 ({ mkDerivation, base, contravariant, semigroups, transformers }: 199405 199886 mkDerivation { ··· 199476 199957 199477 199958 "monomer-flatpak-example" = callPackage 199478 199959 ({ mkDerivation, base, containers, data-default-class, dbus 199479 - , desktop-portal, directory, monomer, monomer-hagrid, random, text 199960 + , desktop-portal, directory, modern-uri, monomer, monomer-hagrid 199961 + , random, text 199480 199962 }: 199481 199963 mkDerivation { 199482 199964 pname = "monomer-flatpak-example"; 199483 - version = "0.0.8.0"; 199484 - sha256 = "0xasnb61x6ixl57hsbsx134msbwlfma3b6szq1ndp5aj149r0fl7"; 199965 + version = "0.0.9.0"; 199966 + sha256 = "1cvvqhc86q0589yh6g1p1pgvcp5dzvjnqbbln8pkq4fqcl4n7cwd"; 199485 199967 isLibrary = false; 199486 199968 isExecutable = true; 199487 199969 enableSeparateDataOutput = true; 199488 199970 executableHaskellDepends = [ 199489 199971 base containers data-default-class dbus desktop-portal directory 199490 - monomer monomer-hagrid random text 199972 + modern-uri monomer monomer-hagrid random text 199491 199973 ]; 199492 199974 description = "Monomer Flatpak Example Application"; 199493 199975 license = lib.licenses.mit; ··· 201116 201598 license = lib.licenses.bsd2; 201117 201599 hydraPlatforms = lib.platforms.none; 201118 201600 broken = true; 201601 + }) {}; 201602 + 201603 + "ms-graph-api" = callPackage 201604 + ({ mkDerivation, aeson, base, bytestring, containers, hoauth2 201605 + , http-client, http-types, jwt, modern-uri, req, scientific, scotty 201606 + , text, time, transformers, unliftio, uri-bytestring 201607 + , validation-micro, wai, warp 201608 + }: 201609 + mkDerivation { 201610 + pname = "ms-graph-api"; 201611 + version = "0.6.0.0"; 201612 + sha256 = "1wnl8kww7byzhyvswxf743cwnwmbg71vkck9rk5q82kdv7dxq8jc"; 201613 + libraryHaskellDepends = [ 201614 + aeson base bytestring containers hoauth2 http-client http-types jwt 201615 + modern-uri req scientific scotty text time transformers unliftio 201616 + uri-bytestring validation-micro wai warp 201617 + ]; 201618 + description = "Microsoft Graph API"; 201619 + license = lib.licenses.bsd3; 201119 201620 }) {}; 201120 201621 201121 201622 "ms-tds" = callPackage ··· 204972 205473 pname = "nat-optics"; 204973 205474 version = "1.0.1.0"; 204974 205475 sha256 = "146q35ni26fq02f7pdzjp2h0kwp9593r2dzg4bxl1zvlrb850c1a"; 205476 + revision = "1"; 205477 + editedCabalFile = "0h2ljxc5kmhgnfphqwsvqb1pcyka12966js51bm78jf5ly7jlhqc"; 204975 205478 libraryHaskellDepends = [ base optics-core text ]; 204976 205479 testHaskellDepends = [ base hspec optics-core text ]; 204977 205480 description = "Refinement types for natural numbers with an optics interface"; ··· 205118 205621 ({ mkDerivation, base }: 205119 205622 mkDerivation { 205120 205623 pname = "natural-arithmetic"; 205121 - version = "0.1.3.0"; 205122 - sha256 = "13ihizfvkl5bjy5rn966y22lgs8f1dgwyqky3k9gjsqxczlg44xa"; 205624 + version = "0.1.4.0"; 205625 + sha256 = "12c29cjr59ws3x88bvpxkxigxvbf0yg6pvz5ypja8b4zqgb0rzy4"; 205123 205626 libraryHaskellDepends = [ base ]; 205124 205627 description = "Arithmetic of natural numbers"; 205125 205628 license = lib.licenses.bsd3; ··· 205524 206027 hydraPlatforms = lib.platforms.none; 205525 206028 }) {}; 205526 206029 206030 + "neolua" = callPackage 206031 + ({ mkDerivation, base, optparse-applicative, process, text }: 206032 + mkDerivation { 206033 + pname = "neolua"; 206034 + version = "1.0.0"; 206035 + sha256 = "1b8fccxd29f8q7sp0xrrigsaa7887r2dmpzk5qwbvl23nblkv8jn"; 206036 + isLibrary = false; 206037 + isExecutable = true; 206038 + executableHaskellDepends = [ 206039 + base optparse-applicative process text 206040 + ]; 206041 + description = "A CLI adapter to map Lua's CLI to Neovim's CLI for lua interpretation"; 206042 + license = lib.licenses.gpl2Only; 206043 + mainProgram = "neolua"; 206044 + }) {}; 206045 + 205527 206046 "neptune-backend" = callPackage 205528 206047 ({ mkDerivation, aeson, base, base64-bytestring, bytestring 205529 206048 , case-insensitive, concurrent-extra, containers, deepseq, envy ··· 205757 206276 }: 205758 206277 mkDerivation { 205759 206278 pname = "net-mqtt"; 205760 - version = "0.8.2.5"; 205761 - sha256 = "0k6yghgj693hbyk2zsjh3ns1yx9ypjjfj3mrrandn6lvpif08h9x"; 206279 + version = "0.8.3.0"; 206280 + sha256 = "02y2bsxr23vkg8xp0aa4mz1dpy37zsgyqkl6yd80ldm7h4vmj8fl"; 205762 206281 isLibrary = true; 205763 206282 isExecutable = true; 205764 206283 libraryHaskellDepends = [ ··· 206707 207226 license = lib.licenses.mit; 206708 207227 }) {}; 206709 207228 207229 + "network-conduit-tls_1_4_0" = callPackage 207230 + ({ mkDerivation, base, bytestring, conduit, conduit-extra 207231 + , crypton-connection, data-default-class, HUnit, mtl, network 207232 + , streaming-commons, tls, transformers, unliftio-core 207233 + }: 207234 + mkDerivation { 207235 + pname = "network-conduit-tls"; 207236 + version = "1.4.0"; 207237 + sha256 = "16addjifgsvyjsapl3a6nfkcab5znffxyy5lifrmkn9r69s7l5f5"; 207238 + libraryHaskellDepends = [ 207239 + base bytestring conduit conduit-extra crypton-connection 207240 + data-default-class network streaming-commons tls transformers 207241 + unliftio-core 207242 + ]; 207243 + testHaskellDepends = [ 207244 + base bytestring conduit conduit-extra crypton-connection HUnit mtl 207245 + ]; 207246 + description = "Create TLS-aware network code with conduits"; 207247 + license = lib.licenses.mit; 207248 + hydraPlatforms = lib.platforms.none; 207249 + }) {}; 207250 + 206710 207251 "network-connection" = callPackage 206711 207252 ({ mkDerivation, base, bytestring, containers, network 206712 207253 , network-bytestring, stm ··· 207112 207653 ({ mkDerivation, base, bytestring, network }: 207113 207654 mkDerivation { 207114 207655 pname = "network-run"; 207115 - version = "0.2.4"; 207116 - sha256 = "0w3dmwk03j4n01xkiq8m4sqa27bskh239mpw7m4ihjmkxqcwc5gl"; 207117 - libraryHaskellDepends = [ base bytestring network ]; 207118 - description = "Simple network runner library"; 207119 - license = lib.licenses.bsd3; 207120 - }) {}; 207121 - 207122 - "network-run_0_2_5" = callPackage 207123 - ({ mkDerivation, base, bytestring, network }: 207124 - mkDerivation { 207125 - pname = "network-run"; 207126 207656 version = "0.2.5"; 207127 207657 sha256 = "08662w7ja9w4a4fwikaawxnxcszkd0mdmaajmshas2dd25xyikwi"; 207128 207658 libraryHaskellDepends = [ base bytestring network ]; 207129 207659 description = "Simple network runner library"; 207130 207660 license = lib.licenses.bsd3; 207131 - hydraPlatforms = lib.platforms.none; 207132 207661 }) {}; 207133 207662 207134 207663 "network-server" = callPackage ··· 210769 211298 mainProgram = "Kepler"; 210770 211299 }) {}; 210771 211300 211301 + "numeric-optimization" = callPackage 211302 + ({ mkDerivation, base, constraints, containers, data-default-class 211303 + , hmatrix, hspec, HUnit, lbfgs, primitive, vector 211304 + }: 211305 + mkDerivation { 211306 + pname = "numeric-optimization"; 211307 + version = "0.1.0.1"; 211308 + sha256 = "158ww5bnm2yblb3c8azd4cxb3vdc6ckkc3k0a5mdksr2d0lj1j20"; 211309 + isLibrary = true; 211310 + isExecutable = true; 211311 + libraryHaskellDepends = [ 211312 + base constraints data-default-class hmatrix lbfgs primitive vector 211313 + ]; 211314 + testHaskellDepends = [ 211315 + base containers data-default-class hspec HUnit vector 211316 + ]; 211317 + description = "Unified interface to various numerical optimization algorithms"; 211318 + license = lib.licenses.bsd3; 211319 + }) {}; 211320 + 211321 + "numeric-optimization-ad" = callPackage 211322 + ({ mkDerivation, ad, base, containers, data-default-class, hmatrix 211323 + , hspec, HUnit, numeric-optimization, primitive, reflection, vector 211324 + }: 211325 + mkDerivation { 211326 + pname = "numeric-optimization-ad"; 211327 + version = "0.1.0.1"; 211328 + sha256 = "09lcvmgx6vy6sf9vwph5vfr2amasqkcvywbgif0nh6mpbwrhjj8w"; 211329 + isLibrary = true; 211330 + isExecutable = true; 211331 + libraryHaskellDepends = [ 211332 + ad base data-default-class hmatrix numeric-optimization primitive 211333 + reflection vector 211334 + ]; 211335 + testHaskellDepends = [ 211336 + base containers data-default-class hspec HUnit numeric-optimization 211337 + ]; 211338 + description = "Wrapper of numeric-optimization package for using with AD package"; 211339 + license = lib.licenses.bsd3; 211340 + }) {}; 211341 + 211342 + "numeric-optimization-backprop" = callPackage 211343 + ({ mkDerivation, backprop, base, containers, data-default-class 211344 + , hspec, HUnit, microlens, mono-traversable, mtl 211345 + , numeric-optimization, primitive, reflection, vector 211346 + }: 211347 + mkDerivation { 211348 + pname = "numeric-optimization-backprop"; 211349 + version = "0.1.0.1"; 211350 + sha256 = "09nb6v2rl102glivi6x1m92jlb4d9w74r85mrd1l0h7k3lz44nma"; 211351 + isLibrary = true; 211352 + isExecutable = true; 211353 + libraryHaskellDepends = [ 211354 + backprop base containers data-default-class mono-traversable mtl 211355 + numeric-optimization primitive reflection vector 211356 + ]; 211357 + testHaskellDepends = [ 211358 + base containers data-default-class hspec HUnit microlens 211359 + numeric-optimization 211360 + ]; 211361 + description = "Wrapper of numeric-optimization package for using with backprop package"; 211362 + license = lib.licenses.bsd3; 211363 + hydraPlatforms = lib.platforms.none; 211364 + }) {}; 211365 + 210772 211366 "numeric-prelude" = callPackage 210773 211367 ({ mkDerivation, array, base, containers, deepseq 210774 211368 , doctest-exitcode-stdio, doctest-lib, non-negative, parsec ··· 211176 211770 }: 211177 211771 mkDerivation { 211178 211772 pname = "nvim-hs"; 211179 - version = "2.3.2.1"; 211180 - sha256 = "1rq4n453hc3890n4mmxkiaddfpamj4af66f9wx2hqfi40ammfgna"; 211773 + version = "2.3.2.3"; 211774 + sha256 = "03s0fsws7f8mld6kpmymagrmajfnxzi9isgdzik4kdrx8fzygin8"; 211181 211775 libraryHaskellDepends = [ 211182 211776 base bytestring cereal cereal-conduit conduit containers 211183 211777 data-default deepseq foreign-store hslogger megaparsec messagepack ··· 211204 211798 }: 211205 211799 mkDerivation { 211206 211800 pname = "nvim-hs-contrib"; 211207 - version = "2.0.0.1"; 211208 - sha256 = "15ds92qxhax0y9d9zl1sz061ali1rj9vwvcjn415ph1cyqgr3ink"; 211801 + version = "2.0.0.2"; 211802 + sha256 = "03syv1fsickcmgk9qagavidgh9hyy0v00df29jd5wia631xc60a6"; 211209 211803 libraryHaskellDepends = [ 211210 211804 base bytestring data-default directory filepath messagepack mtl 211211 211805 nvim-hs prettyprinter prettyprinter-ansi-terminal text time ··· 213145 213739 }: 213146 213740 mkDerivation { 213147 213741 pname = "opaleye"; 213148 - version = "0.9.6.2"; 213149 - sha256 = "1pq0n3n686bbh6abjagxjkx4whkj1mw7nqvh1f4bkp9f3l4h7a3v"; 213742 + version = "0.9.7.0"; 213743 + sha256 = "1njmns4myrjyfbmd4qrkrwqp6jyaridxkf4n0n8bgw3z5hr64jhv"; 213150 213744 libraryHaskellDepends = [ 213151 213745 aeson base base16-bytestring bytestring case-insensitive 213152 213746 contravariant postgresql-simple pretty product-profunctors ··· 213436 214030 "openai-hs" = callPackage 213437 214031 ({ mkDerivation, aeson, base, bytestring, casing, containers, cpphs 213438 214032 , hspec, http-client, http-client-tls, http-types, openai-servant 213439 - , servant, servant-client, servant-client-core 214033 + , servant, servant-auth-client, servant-client, servant-client-core 213440 214034 , servant-multipart-client, text, vector 213441 214035 }: 213442 214036 mkDerivation { 213443 214037 pname = "openai-hs"; 213444 - version = "0.2.2.0"; 213445 - sha256 = "07jyz6bgz2s21j5w5avpi7hllcxw9ix3m3r1lyjb0kwa5rvvpl7d"; 214038 + version = "0.3.0.0"; 214039 + sha256 = "0mimxdmfsfnplsnihyavv6cf07hz0nxryikff3xidd4ac4lfr87b"; 213446 214040 libraryHaskellDepends = [ 213447 214041 aeson base bytestring casing cpphs http-client http-types 213448 - openai-servant servant servant-client servant-multipart-client text 214042 + openai-servant servant servant-auth-client servant-client 214043 + servant-multipart-client text 213449 214044 ]; 214045 + libraryToolDepends = [ cpphs ]; 213450 214046 testHaskellDepends = [ 213451 214047 aeson base bytestring casing containers cpphs hspec http-client 213452 - http-client-tls http-types openai-servant servant servant-client 213453 - servant-client-core servant-multipart-client text vector 214048 + http-client-tls http-types openai-servant servant 214049 + servant-auth-client servant-client servant-client-core 214050 + servant-multipart-client text vector 213454 214051 ]; 214052 + testToolDepends = [ cpphs ]; 213455 214053 description = "Unofficial OpenAI client"; 213456 214054 license = lib.licenses.bsd3; 213457 214055 hydraPlatforms = lib.platforms.none; ··· 213459 214057 }) {}; 213460 214058 213461 214059 "openai-servant" = callPackage 213462 - ({ mkDerivation, aeson, base, bytestring, casing, servant 213463 - , servant-multipart-api, text, time, vector 214060 + ({ mkDerivation, aeson, base, bytestring, casing, mime-types 214061 + , servant, servant-auth, servant-auth-client, servant-multipart-api 214062 + , text, time, vector 213464 214063 }: 213465 214064 mkDerivation { 213466 214065 pname = "openai-servant"; 213467 - version = "0.2.3.0"; 213468 - sha256 = "19029qqbdvs5a9a41cncff3fmy4s02654bxjjw9kc84z5cp67s7i"; 214066 + version = "0.3.0.0"; 214067 + sha256 = "1ilmfaj465ly9fjcgmp1nwd08n0p35sg9jgidw5qvyl4s60j7br2"; 213469 214068 libraryHaskellDepends = [ 213470 - aeson base bytestring casing servant servant-multipart-api text 213471 - time vector 214069 + aeson base bytestring casing mime-types servant servant-auth 214070 + servant-auth-client servant-multipart-api text time vector 213472 214071 ]; 213473 214072 description = "Unofficial OpenAI servant types"; 213474 214073 license = lib.licenses.bsd3; ··· 215897 216496 mainProgram = "ormolu"; 215898 216497 }) {}; 215899 216498 215900 - "ormolu_0_7_0_0" = callPackage 216499 + "ormolu_0_7_1_0" = callPackage 215901 216500 ({ mkDerivation, ansi-terminal, array, base, binary, bytestring 215902 216501 , Cabal-syntax, containers, deepseq, Diff, directory, file-embed 215903 216502 , filepath, ghc-lib-parser, hspec, hspec-discover, hspec-megaparsec ··· 215906 216505 }: 215907 216506 mkDerivation { 215908 216507 pname = "ormolu"; 215909 - version = "0.7.0.0"; 215910 - sha256 = "07bwcki2xp2g5q3jpll8675yawr1x6nk3zg1yns8mdw085a98g7s"; 215911 - revision = "1"; 215912 - editedCabalFile = "1fm3vi1nk18p623vxw197inlqfb8gwg4jiy88s63id0j7sdlvzqh"; 216508 + version = "0.7.1.0"; 216509 + sha256 = "175pjxbys6l94rzm9bzwymvh5fhclxwq9vj592m8zcga4bcaa6iv"; 215913 216510 isLibrary = true; 215914 216511 isExecutable = true; 215915 216512 libraryHaskellDepends = [ ··· 215974 216571 }: 215975 216572 mkDerivation { 215976 216573 pname = "ory-hydra-client"; 215977 - version = "2.0.3"; 215978 - sha256 = "03yyxgd9b6fkvbj53a39qi0mc2x29vizsj4j75i80nzp713bj18v"; 216574 + version = "2.1.2.1"; 216575 + sha256 = "1x2kdqlapc8fx1iwhry1cgkpmy5p2ingqf2rp691vy1id8ibhdp5"; 215979 216576 libraryHaskellDepends = [ 215980 216577 aeson base base64-bytestring bytestring case-insensitive containers 215981 216578 deepseq exceptions http-api-data http-client http-client-tls ··· 215987 216584 aeson base bytestring containers hspec iso8601-time mtl QuickCheck 215988 216585 semigroups text time transformers unordered-containers vector 215989 216586 ]; 215990 - description = "Auto-generated ory-hydra-client API Client"; 216587 + description = "Auto-generated ory-hydra API Client"; 215991 216588 license = lib.licenses.mit; 215992 216589 }) {}; 215993 216590 ··· 216439 217036 }) {}; 216440 217037 216441 217038 "pa-json" = callPackage 216442 - ({ mkDerivation, aeson, aeson-better-errors, base, containers 216443 - , hspec-core, hspec-expectations, pa-error-tree, pa-label 216444 - , pa-prelude, scientific, text, time, vector 217039 + ({ mkDerivation, aeson, aeson-better-errors, aeson-pretty, base 217040 + , bytestring, containers, hspec-core, hspec-expectations 217041 + , pa-error-tree, pa-label, pa-prelude, scientific, text, time 217042 + , vector 216445 217043 }: 216446 217044 mkDerivation { 216447 217045 pname = "pa-json"; 216448 - version = "0.1.0.0"; 216449 - sha256 = "0lka7viqsbrh2vb1snhs1ryi6mcxf5l404rjmq65mqbh5y6gf0pc"; 217046 + version = "0.2.0.0"; 217047 + sha256 = "1r3nsbdlpbrmfj9zaql7zjbd5hzvmzbcqpk74l4j78wfif4g6zmm"; 216450 217048 libraryHaskellDepends = [ 216451 - aeson aeson-better-errors base containers hspec-core 216452 - hspec-expectations pa-error-tree pa-label pa-prelude scientific 216453 - text time vector 217049 + aeson aeson-better-errors aeson-pretty base bytestring containers 217050 + hspec-core hspec-expectations pa-error-tree pa-label pa-prelude 217051 + scientific text time vector 216454 217052 ]; 216455 217053 description = "Our JSON parsers/encoders"; 216456 217054 license = lib.licenses.bsd3; ··· 216484 217082 license = lib.licenses.bsd3; 216485 217083 }) {}; 216486 217084 217085 + "pa-pretty" = callPackage 217086 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base, hscolour 217087 + , nicify-lib, pa-prelude, text 217088 + }: 217089 + mkDerivation { 217090 + pname = "pa-pretty"; 217091 + version = "0.1.1.0"; 217092 + sha256 = "1jgn7rip71kw9nzhdmdk8pz7wlwvb710igbykmvcajdcy9y5m4ns"; 217093 + libraryHaskellDepends = [ 217094 + aeson aeson-pretty ansi-terminal base hscolour nicify-lib 217095 + pa-prelude text 217096 + ]; 217097 + description = "Some pretty-printing helpers"; 217098 + license = lib.licenses.bsd3; 217099 + }) {}; 217100 + 216487 217101 "pack" = callPackage 216488 217102 ({ mkDerivation, array, base, bytestring, lens, transformers 216489 217103 , vector ··· 217259 217873 ]; 217260 217874 }) {}; 217261 217875 217262 - "pandoc_3_1_2" = callPackage 217876 + "pandoc_3_1_3" = callPackage 217263 217877 description = "PID control loop"; 217264 217878 , base64, binary, blaze-html, blaze-markup, bytestring 217265 217879 , case-insensitive, citeproc, commonmark, commonmark-extensions ··· 217271 217885 , parsec, pretty, pretty-show, process, random, safe, scientific 217272 217886 , SHA, skylighting, skylighting-core, split, syb, tagsoup, tasty 217273 217887 , tasty-bench, tasty-golden, tasty-hunit, tasty-quickcheck 217274 - , temporary, texmath, text, text-conversions, time 217275 - , unicode-collation, unicode-transforms, unix, xml, xml-conduit 217276 - , xml-types, yaml, zip-archive, zlib 217888 + , temporary, texmath, text, text-conversions, time, typst 217889 + , unicode-collation, unicode-transforms, unix, vector, xml 217890 + , xml-conduit, xml-types, yaml, zip-archive, zlib 217277 217891 }: 217278 217892 mkDerivation { 217279 217893 pname = "pandoc"; 217280 - version = "3.1.2"; 217281 - sha256 = "1v0wds8jvp2yln39npcgcdsmhndlv4wifbgpq3x9r5pa8qdx50mn"; 217894 + version = "3.1.3"; 217895 + sha256 = "070rx611v1kg3gcvp267h68m0dh3zfi0v3r6r2lkadmfw45sxrvd"; 217282 217896 configureFlags = [ "-f-trypandoc" ]; 217283 217897 enableSeparateDataOutput = true; 217284 217898 libraryHaskellDepends = [ ··· 217291 217905 JuicyPixels mime-types mtl network network-uri pandoc-types parsec 217292 217906 pretty pretty-show process random safe scientific SHA skylighting 217293 217907 skylighting-core split syb tagsoup temporary texmath text 217294 - text-conversions time unicode-collation unicode-transforms unix xml 217295 - xml-conduit xml-types yaml zip-archive zlib 217908 + text-conversions time typst unicode-collation unicode-transforms 217909 + unix vector xml xml-conduit xml-types yaml zip-archive zlib 217296 217910 ]; 217297 217911 testHaskellDepends = [ 217298 217912 base bytestring containers Diff directory doctemplates filepath ··· 217762 218376 }: 217763 218377 mkDerivation { 217764 218378 pname = "pandoc-lua-engine"; 217765 - version = "0.2"; 217766 - sha256 = "0rm6yrk4al7gr7q1dqbkw38skrpn7r1x3hn1mbklvq3jpz8dvpxr"; 218379 + version = "0.2.0.1"; 218380 + sha256 = "1y1il2lx4bhpby6nk9wam84gmjq2knz4ynm28ckb27mgih99jf4a"; 217767 218381 libraryHaskellDepends = [ 217768 218382 aeson base bytestring citeproc containers data-default doclayout 217769 218383 doctemplates exceptions hslua hslua-module-doclayout ··· 217940 218554 mainProgram = "pandoc-plot"; 217941 218555 }) {}; 217942 218556 217943 - "pandoc-plot_1_6_2" = callPackage 218557 + "pandoc-plot_1_7_0" = callPackage 217944 218558 ({ mkDerivation, aeson, base, bytestring, containers, data-default 217945 218559 , directory, filepath, gitrev, hashable, hspec-expectations 217946 218560 , lifted-async, lifted-base, mtl, optparse-applicative, pandoc ··· 217949 218563 }: 217950 218564 mkDerivation { 217951 218565 pname = "pandoc-plot"; 217952 - version = "1.6.2"; 217953 - sha256 = "12rl3smn1llqbbdkhjqn9qman8mngaaxmvhlf0v7saq36magnlya"; 218566 + version = "1.7.0"; 218567 + sha256 = "01f99mjav3w5c0vixr80a6vykabwk9ap8wj4lnh3c6k681i5nnq6"; 217954 218568 isLibrary = true; 217955 218569 isExecutable = true; 217956 218570 libraryHaskellDepends = [ ··· 223205 223819 pname = "persistent-mtl"; 223206 223820 version = "0.5.0.1"; 223207 223821 sha256 = "17sxwa8p95nrkacjr1wnpihwfq121z1pkyh1nvlfjy76b4aalqhi"; 223208 - revision = "2"; 223209 - editedCabalFile = "1aq30hqpdcsf7llmfwnn061qa2id4b8fncd9k0f53kmgvys2xivd"; 223822 + revision = "3"; 223823 + editedCabalFile = "1slwcn2iafg1gffhj02hlbgpv2v719f26a608bli2hkd9v96s720"; 223210 223824 testHaskellDepends = [ 223211 223825 base bytestring conduit containers esqueleto explainable-predicates 223212 223826 monad-logger persistent persistent-postgresql persistent-sqlite ··· 224327 224941 }) {}; 224328 224942 224329 224943 "phladiprelio-general-simple" = callPackage 224330 - ({ mkDerivation, base, cli-arguments, phladiprelio-general-shared 224331 - , phonetic-languages-constraints-array 224944 + ({ mkDerivation, base, cli-arguments, directory, halfsplit 224945 + , phladiprelio-general-shared, phonetic-languages-constraints-array 224332 224946 , phonetic-languages-permutations-array 224333 224947 , phonetic-languages-phonetics-basics 224334 224948 , phonetic-languages-simplified-base, rhythmic-sequences 224335 224949 }: 224336 224950 mkDerivation { 224337 224951 pname = "phladiprelio-general-simple"; 224338 - version = "0.4.1.0"; 224339 - sha256 = "12wz9rydy16glwwj621ai74grghj5qjc6pahj17wdw6ip99p89hb"; 224952 + version = "0.6.0.0"; 224953 + sha256 = "0wagsvc2wf6qk46lvvs84zb1cn8qvhvvwghc2qzs6bdk1jv8nk1a"; 224340 224954 libraryHaskellDepends = [ 224341 - base cli-arguments phladiprelio-general-shared 224955 + base cli-arguments directory halfsplit phladiprelio-general-shared 224342 224956 phonetic-languages-constraints-array 224343 224957 phonetic-languages-permutations-array 224344 224958 phonetic-languages-phonetics-basics ··· 224377 224991 }) {}; 224378 224992 224379 224993 "phladiprelio-ukrainian-simple" = callPackage 224380 - ({ mkDerivation, base, cli-arguments, phladiprelio-ukrainian-shared 224994 + ({ mkDerivation, base, cli-arguments, directory, halfsplit 224995 + , phladiprelio-ukrainian-shared 224381 224996 , phonetic-languages-constraints-array 224382 224997 , phonetic-languages-permutations-array 224383 224998 , phonetic-languages-simplified-base ··· 224386 225001 }: 224387 225002 mkDerivation { 224388 225003 pname = "phladiprelio-ukrainian-simple"; 224389 - version = "0.5.1.1"; 224390 - sha256 = "0swzv9zyixdbffxnszy92g8fdhcp5a177yi583mxix13m253xd32"; 225004 + version = "0.7.0.0"; 225005 + sha256 = "1x68wygghy825nigyqpi1lfqd89vdgiy91zdsvyzg42bdwraskjv"; 224391 225006 isLibrary = false; 224392 225007 isExecutable = true; 224393 225008 executableHaskellDepends = [ 224394 - base cli-arguments phladiprelio-ukrainian-shared 224395 - phonetic-languages-constraints-array 225009 + base cli-arguments directory halfsplit 225010 + phladiprelio-ukrainian-shared phonetic-languages-constraints-array 224396 225011 phonetic-languages-permutations-array 224397 225012 phonetic-languages-simplified-base 224398 225013 phonetic-languages-ukrainian-array rhythmic-sequences ··· 224566 225181 ({ mkDerivation, base, subG }: 224567 225182 mkDerivation { 224568 225183 pname = "phonetic-languages-constraints-array"; 224569 - version = "0.6.2.0"; 224570 - sha256 = "0b5w7va3b77fld9sij4jpb378bmqp7l918cxw0yh514lbkyawzgk"; 225184 + version = "0.7.3.0"; 225185 + sha256 = "1iykr6d1gfrvkfxfd5dipmd45y5frg8j3lp8xxlvwhsakzxp6vsy"; 224571 225186 libraryHaskellDepends = [ base subG ]; 224572 225187 description = "Constraints to filter the needed permutations"; 224573 225188 license = lib.licenses.mit; ··· 226403 227018 pname = "pipes-extras"; 226404 227019 version = "1.0.15"; 226405 227020 sha256 = "1cyb05bv5xkarab3090ikpjiqm79lr46n3nalplliz8jr4x67a82"; 226406 - revision = "6"; 226407 - editedCabalFile = "0gqqhvq5h6kkz6k4dpvlky7lbrfbgqp30whn7cglaplrqzlfwbvd"; 227021 + revision = "7"; 227022 + editedCabalFile = "1mhhm4k605p6qb8m7zn97as4fj4kzy386i8k47lghlh806w7lghn"; 226408 227023 libraryHaskellDepends = [ base foldl lens pipes transformers ]; 226409 227024 testHaskellDepends = [ 226410 227025 base HUnit pipes test-framework test-framework-hunit transformers ··· 228843 229458 ]; 228844 229459 description = "Polynomials"; 228845 229460 license = lib.licenses.bsd3; 229461 + hydraPlatforms = lib.platforms.none; 229462 + broken = true; 228846 229463 }) {}; 228847 229464 228848 229465 "poly-arity" = callPackage ··· 230115 230732 "pontarius-xmpp" = callPackage 230116 230733 ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary 230117 230734 , bytestring, Cabal, conduit, containers, criterion, crypto-api 230118 - , crypto-random, cryptohash, cryptohash-cryptoapi, data-default 230119 - , dns, exceptions, generic-arbitrary, hslogger, hspec 230735 + , cryptohash, cryptohash-cryptoapi, cryptonite, data-default, dns 230736 + , exceptions, generic-arbitrary, hslogger, hspec 230120 230737 , hspec-expectations, iproute, lens, lens-family, lifted-base, mtl 230121 230738 , network, profunctors, pureMD5, QuickCheck, quickcheck-instances 230122 230739 , random, ranges, resourcet, smallcheck, split, stm, stringprep ··· 230126 230743 }: 230127 230744 mkDerivation { 230128 230745 pname = "pontarius-xmpp"; 230129 - version = "0.5.6.5"; 230130 - sha256 = "1k01mmd19wcv5gzavnh81fhdiq8rlhvnv63f6n3s582qlsdc2lhi"; 230746 + version = "0.5.6.6"; 230747 + sha256 = "1dzr965amv2909h4r5pc4qxhgrzp79cmv5grq79w5qjjfmj6iv65"; 230131 230748 libraryHaskellDepends = [ 230132 230749 attoparsec base base64-bytestring binary bytestring conduit 230133 - containers crypto-api crypto-random cryptohash cryptohash-cryptoapi 230750 + containers crypto-api cryptohash cryptohash-cryptoapi cryptonite 230134 230751 data-default dns exceptions hslogger iproute lens lens-family 230135 230752 lifted-base mtl network profunctors pureMD5 random resourcet split 230136 230753 stm stringprep template-haskell text tls transformers ··· 230139 230756 ]; 230140 230757 testHaskellDepends = [ 230141 230758 async attoparsec base base64-bytestring binary bytestring Cabal 230142 - conduit containers crypto-api crypto-random cryptohash 230143 - cryptohash-cryptoapi data-default dns exceptions generic-arbitrary 230144 - hslogger hspec hspec-expectations iproute lens lens-family 230145 - lifted-base mtl network profunctors pureMD5 QuickCheck 230146 - quickcheck-instances random ranges resourcet smallcheck split stm 230147 - stringprep tasty tasty-hspec tasty-hunit tasty-quickcheck tasty-th 230148 - template-haskell text tls transformers unbounded-delays void 230149 - x509-system xml-conduit xml-picklers xml-types 230759 + conduit containers crypto-api cryptohash cryptohash-cryptoapi 230760 + cryptonite data-default dns exceptions generic-arbitrary hslogger 230761 + hspec hspec-expectations iproute lens lens-family lifted-base mtl 230762 + network profunctors pureMD5 QuickCheck quickcheck-instances random 230763 + ranges resourcet smallcheck split stm stringprep tasty tasty-hspec 230764 + tasty-hunit tasty-quickcheck tasty-th template-haskell text tls 230765 + transformers unbounded-delays void x509-system xml-conduit 230766 + xml-picklers xml-types 230150 230767 ]; 230151 230768 benchmarkHaskellDepends = [ 230152 230769 attoparsec base base64-bytestring binary bytestring conduit 230153 - containers criterion crypto-api crypto-random cryptohash 230154 - cryptohash-cryptoapi data-default dns exceptions hslogger iproute 230155 - lens lens-family lifted-base mtl network profunctors pureMD5 random 230770 + containers criterion crypto-api cryptohash cryptohash-cryptoapi 230771 + cryptonite data-default dns exceptions hslogger iproute lens 230772 + lens-family lifted-base mtl network profunctors pureMD5 random 230156 230773 resourcet split stm stringprep template-haskell text tls 230157 230774 transformers unbounded-delays void x509-system xml-conduit 230158 230775 xml-picklers xml-types ··· 231662 232279 }) {}; 231663 232280 231664 232281 "postgresql-simple-interpolate" = callPackage 231665 - ({ mkDerivation, base, haskell-src-meta, mtl, parsec 232282 + ({ mkDerivation, base, criterion, haskell-src-meta, mtl, parsec 231666 232283 , postgresql-simple, template-haskell 231667 232284 }: 231668 232285 mkDerivation { 231669 232286 pname = "postgresql-simple-interpolate"; 231670 - version = "0.1"; 231671 - sha256 = "0nq4j1lbylklsz3fhc4y7rh6c4lfzzfyha65g6i22mbpx51vdf30"; 232287 + version = "0.1.1.0"; 232288 + sha256 = "0g7b8mccy8ajx8l94s7xd0mrhyn11xjb9m9g2jqbsv6fklzkg0qy"; 231672 232289 libraryHaskellDepends = [ 231673 232290 base haskell-src-meta mtl parsec postgresql-simple template-haskell 231674 232291 ]; 232292 + benchmarkHaskellDepends = [ base criterion template-haskell ]; 231675 232293 description = "Interpolated SQL queries via quasiquotation"; 231676 232294 license = lib.licenses.bsd3; 231677 232295 }) {}; ··· 236051 236669 }: 236052 236670 mkDerivation { 236053 236671 pname = "propellor"; 236054 - version = "5.16"; 236055 - sha256 = "12ywc4riq4wr1ylm4gqp4fcszssfz1a6n1xa5da0mwxydklmw6l1"; 236672 + version = "5.17"; 236673 + sha256 = "0g5f3vywbdh6hl6rkzprpnldr9c8cc2lzz2xb31l6dni6ymyns5a"; 236056 236674 isLibrary = true; 236057 236675 isExecutable = true; 236058 236676 libraryHaskellDepends = [ ··· 236527 237145 ({ mkDerivation, base, bytestring, cereal, containers, criterion 236528 237146 , deepseq, doctest, ghc-prim, hashable, parameterized, primitive 236529 237147 , QuickCheck, random, safe, tasty, tasty-hunit, tasty-quickcheck 236530 - , text, transformers, unordered-containers, vector, word-compat 237148 + , template-haskell, text, text-short, transformers 237149 + , unordered-containers, vector, word-compat 236531 237150 }: 236532 237151 mkDerivation { 236533 237152 pname = "proto3-wire"; 236534 - version = "1.4.0"; 236535 - sha256 = "1byjv249w3vm1298dqqjpmrwpzcdmz8dh7bykn981zxyn9qhf55y"; 237153 + version = "1.4.1"; 237154 + sha256 = "0liy2qnx9y10ad79nfw0idp2c5mz37pwb1h07f82g4rbg66qn465"; 236536 237155 libraryHaskellDepends = [ 236537 237156 base bytestring cereal containers deepseq ghc-prim hashable 236538 - parameterized primitive QuickCheck safe text transformers 236539 - unordered-containers vector word-compat 237157 + parameterized primitive QuickCheck safe template-haskell text 237158 + text-short transformers unordered-containers vector word-compat 236540 237159 ]; 236541 237160 testHaskellDepends = [ 236542 237161 base bytestring cereal doctest QuickCheck tasty tasty-hunit 236543 - tasty-quickcheck text transformers vector 237162 + tasty-quickcheck text text-short transformers vector 236544 237163 ]; 236545 237164 benchmarkHaskellDepends = [ base bytestring criterion random ]; 236546 237165 description = "A low-level implementation of the Protocol Buffers (version 3) wire format"; ··· 236763 237382 pname = "protolude"; 236764 237383 version = "0.3.3"; 236765 237384 sha256 = "0ihsjx48p9dgsp0i0l73h16mycnba40hyh7412jv3xz9qz9dwfbc"; 237385 + revision = "1"; 237386 + editedCabalFile = "07hfs830nc1lvcmsw1hhmrmhzq0b8z25dc090wfn25ss2cvrjkjv"; 236766 237387 libraryHaskellDepends = [ 236767 237388 array async base bytestring containers deepseq ghc-prim hashable 236768 237389 mtl mtl-compat stm text transformers transformers-compat ··· 237005 237626 pname = "pseudo-boolean"; 237006 237627 version = "0.1.10.0"; 237007 237628 sha256 = "1p9w1d80d2kp7wp7wp6xf9dz1iv9knhy8b75mklz7zq3cf5gvnrh"; 237008 - revision = "3"; 237009 - editedCabalFile = "0cn7v9r8kd9xcfhkzd2ln5kqfwv4dc81c4lmv402sa1w82sbbf2h"; 237629 + revision = "4"; 237630 + editedCabalFile = "1l1ribvz1vz9037ymxa6iqr3ilj6mkrwbap93vm84ywa2xxni77c"; 237010 237631 libraryHaskellDepends = [ 237011 237632 attoparsec base bytestring bytestring-builder containers deepseq 237012 237633 dlist hashable megaparsec parsec void ··· 239115 239736 pname = "qsem"; 239116 239737 version = "0.1.0.0"; 239117 239738 sha256 = "1y9c22jr0frflgzmpzpz4d7zgcz7wbql8xwr6bx912rh6gm4gx9h"; 239739 + revision = "1"; 239740 + editedCabalFile = "13djn4hd8vhic60hrax1cnlly6d108mmdhg0x5x94y6d8g08mgp1"; 239118 239741 libraryHaskellDepends = [ base ghc-prim ]; 239119 239742 description = "quantity semaphores"; 239120 239743 license = lib.licenses.bsd3; ··· 239257 239880 pname = "quadratic-irrational"; 239258 239881 version = "0.1.1"; 239259 239882 sha256 = "11nksvr6wnbrphq3ymg93w2xpqw6in3j1qpgbl2f3x9bgiss2l7s"; 239883 + revision = "1"; 239884 + editedCabalFile = "0br41cjzrl08ma9kgnhh2vp3ixad0gvvvv9751wpc6chr7a59ic8"; 239260 239885 libraryHaskellDepends = [ 239261 239886 arithmoi base containers integer-roots transformers 239262 239887 ]; ··· 239687 240312 239688 240313 "quic" = callPackage 239689 240314 ({ mkDerivation, array, async, base, base16-bytestring, bytestring 239690 - , containers, crypto-token, cryptonite, data-default-class 239691 - , fast-logger, filepath, hspec, hspec-discover, iproute, memory 239692 - , network, network-byte-order, network-udp, psqueues, QuickCheck 239693 - , random, stm, tls, unix-time, unliftio, unliftio-core, x509 239694 - , x509-system 240315 + , containers, crypto-token, crypton, crypton-x509 240316 + , crypton-x509-system, data-default-class, fast-logger, filepath 240317 + , hspec, hspec-discover, iproute, memory, network 240318 + , network-byte-order, network-udp, psqueues, QuickCheck, random 240319 + , stm, tls, unix-time, unliftio, unliftio-core 239695 240320 }: 239696 240321 mkDerivation { 239697 240322 pname = "quic"; 239698 - version = "0.1.1"; 239699 - sha256 = "02slgbrz3n6ga335sya6625xvsn6i1k8wnw6avipc48q6fmwzw29"; 240323 + version = "0.1.2"; 240324 + sha256 = "04ag4lvrlylr1qks6mvhp1pbbz66yy44s2c0z6wz49nc30x8qq8n"; 239700 240325 isLibrary = true; 239701 240326 isExecutable = true; 239702 240327 libraryHaskellDepends = [ 239703 240328 array base base16-bytestring bytestring containers crypto-token 239704 - cryptonite data-default-class fast-logger filepath iproute memory 239705 - network network-byte-order network-udp psqueues random stm tls 239706 - unix-time unliftio unliftio-core x509 x509-system 240329 + crypton crypton-x509 crypton-x509-system data-default-class 240330 + fast-logger filepath iproute memory network network-byte-order 240331 + network-udp psqueues random stm tls unix-time unliftio 240332 + unliftio-core 239707 240333 ]; 239708 240334 testHaskellDepends = [ 239709 - async base base16-bytestring bytestring containers cryptonite hspec 240335 + async base base16-bytestring bytestring containers crypton hspec 239710 240336 network network-udp QuickCheck tls unix-time unliftio 239711 240337 ]; 239712 240338 testToolDepends = [ hspec-discover ]; 239713 240339 description = "QUIC"; 239714 240340 license = lib.licenses.bsd3; 240341 + hydraPlatforms = lib.platforms.none; 239715 240342 }) {}; 239716 240343 239717 240344 "quick-generator" = callPackage ··· 239956 240583 pname = "quickcheck-instances"; 239957 240584 version = "0.3.29.1"; 239958 240585 sha256 = "0jx2wfy7y5dr14s9i457g2aah4isjxry4mlbqhj7vlav6ib84gdj"; 239959 - revision = "1"; 239960 - editedCabalFile = "0yl09mp9phfka70z0dl0lg1c0kmf1qyh3rmbc8nzakdbs77l9fj3"; 240586 + revision = "2"; 240587 + editedCabalFile = "118xy4z4dy4bpkzsp98daiv3l4n5j7ph9my0saca7cqjybqwkcip"; 239961 240588 libraryHaskellDepends = [ 239962 240589 array base bytestring case-insensitive containers data-array-byte 239963 240590 data-fix hashable integer-logarithms old-time OneTuple primitive ··· 240226 240853 }: 240227 240854 mkDerivation { 240228 240855 pname = "quickcheck-state-machine"; 240229 - version = "0.7.2"; 240230 - sha256 = "0q3lw0qbaffcq7rs882dyc9mdaj5rkpq51ybq84i9gwcaiz1vipd"; 240856 + version = "0.7.3"; 240857 + sha256 = "1x3bdi4xyvxl8mfxzkqa7v4aqmr1mjk5hg2wh9c5jdaysqj9400h"; 240231 240858 libraryHaskellDepends = [ 240232 240859 ansi-wl-pprint base containers directory exceptions filepath 240233 240860 generic-data graphviz markov-chain-usage-model matrix mtl ··· 244355 244982 }: 244356 244983 mkDerivation { 244357 244984 pname = "recover-rtti"; 244358 - version = "0.4.2"; 244359 - sha256 = "1cfpnyjibamhfsxs9x3dz2m995zvj7w5lp65lq8g7nsk1chhs7fi"; 244985 + version = "0.4.3"; 244986 + sha256 = "044qrvq4js03w916d9imyjbq4x0dwwm68d56l0fjsjzzvzin76v7"; 244360 244987 libraryHaskellDepends = [ 244361 - aeson base bytestring containers ghc-heap mtl primitive sop-core 244362 - stm text unordered-containers vector 244988 + aeson base bytestring containers ghc-heap ghc-prim mtl primitive 244989 + sop-core stm text unordered-containers vector 244363 244990 ]; 244364 244991 testHaskellDepends = [ 244365 244992 aeson base bytestring containers ghc-heap ghc-prim mtl primitive ··· 248401 249028 ]; 248402 249029 description = "Perform fft with repa via FFTW"; 248403 249030 license = lib.licenses.bsd3; 248404 - hydraPlatforms = lib.platforms.none; 248405 249031 }) {}; 248406 249032 248407 249033 "repa-flow" = callPackage ··· 249264 249890 license = lib.licenses.gpl2Plus; 249265 249891 }) {}; 249266 249892 249267 - "resolv_0_2_0_1" = callPackage 249893 + "resolv_0_2_0_2" = callPackage 249268 249894 ({ mkDerivation, base, base16-bytestring, binary, bytestring 249269 249895 , containers, directory, filepath, tasty, tasty-hunit 249270 249896 }: 249271 249897 mkDerivation { 249272 249898 pname = "resolv"; 249273 - version = "0.2.0.1"; 249274 - sha256 = "1gkn4lnp1gx8r19l04hbf8fg7a8y4s9iph4bxqmq2n9zz0k3gaz6"; 249899 + version = "0.2.0.2"; 249900 + sha256 = "0jz798kliih4lb16s9bjk7sa9034x1qhyrr8z9sp6ahkz4yjh3c8"; 249275 249901 libraryHaskellDepends = [ 249276 249902 base base16-bytestring binary bytestring containers 249277 249903 ]; ··· 252719 253345 ]; 252720 253346 description = "Directed rounding for built-in floating types"; 252721 253347 license = lib.licenses.bsd3; 253348 + hydraPlatforms = lib.platforms.none; 252722 253349 }) {}; 252723 253350 252724 253351 "rounding" = callPackage ··· 252865 253492 pname = "row-types"; 252866 253493 version = "1.0.1.2"; 252867 253494 sha256 = "05vfnhcfi7wsidxiknl8a28xvlid2q095qhah08r7mj9zq38da8f"; 253495 + revision = "1"; 253496 + editedCabalFile = "0r1vjdwnvavlv1pkl27gjpvc3d165bam4y4pp8l2p8q6bnwpqk2d"; 252868 253497 libraryHaskellDepends = [ 252869 253498 base constraints deepseq generic-lens hashable profunctors text 252870 253499 unordered-containers ··· 254032 254661 testToolDepends = [ sydtest-discover ]; 254033 254662 license = lib.licenses.mit; 254034 254663 hydraPlatforms = lib.platforms.none; 254664 + broken = true; 254035 254665 }) {}; 254036 254666 254037 254667 "safe-coloured-text-layout" = callPackage ··· 254050 254680 description = "Safely layout output coloured text"; 254051 254681 license = lib.licenses.mit; 254052 254682 hydraPlatforms = lib.platforms.none; 254683 + broken = true; 254053 254684 }) {}; 254054 254685 254055 254686 "safe-coloured-text-layout-gen" = callPackage ··· 255181 255812 }: 255182 255813 mkDerivation { 255183 255814 pname = "sandwich"; 255184 - version = "0.1.3.2"; 255185 - sha256 = "0ijxvyd73xsaaci1kxwgs2k5gj9ax697bd84f7i068g8rc18nyak"; 255815 + version = "0.1.4.0"; 255816 + sha256 = "01bw9pn78kspb2qp58k4dxrp21395zb7459mcw5gn3xkp8r2z634"; 255186 255817 isLibrary = true; 255187 255818 isExecutable = true; 255188 255819 libraryHaskellDepends = [ ··· 255873 256504 broken = true; 255874 256505 }) {inherit (pkgs) z3;}; 255875 256506 255876 - "sbv_10_1" = callPackage 256507 + "sbv_10_2" = callPackage 255877 256508 ({ mkDerivation, array, async, base, bytestring, containers 255878 256509 , deepseq, directory, filepath, libBF, mtl, pretty, process 255879 256510 , QuickCheck, random, syb, tasty, tasty-bench, tasty-golden ··· 255882 256513 }: 255883 256514 mkDerivation { 255884 256515 pname = "sbv"; 255885 - version = "10.1"; 255886 - sha256 = "1hi3pz404ffaihv7h8svakjdzn7hypvissprpw1iz1ckfws5bf6s"; 256516 + version = "10.2"; 256517 + sha256 = "1qairjjffy3di61gdav8p1h3zdz4967g13z64xahhd4f2agmr0kz"; 255887 256518 enableSeparateDataOutput = true; 255888 256519 libraryHaskellDepends = [ 255889 256520 array async base containers deepseq directory filepath libBF mtl ··· 258084 258715 }: 258085 258716 mkDerivation { 258086 258717 pname = "sdr"; 258087 - version = "0.1.0.13"; 258088 - sha256 = "1ip89ddkzzfq2qvpm0ha321hhgx50lphf0s1yd84gw458fsw0ma7"; 258718 + version = "0.1.0.14"; 258719 + sha256 = "0nxwhyl5am14k6n7vvih4wr0n646pgbkxwyifr210wz763f5qgyx"; 258089 258720 libraryHaskellDepends = [ 258090 258721 array base bytestring bytestring-to-vector cairo cereal Chart 258091 258722 Chart-cairo colour containers Decimal dynamic-graph fftwRaw GLFW-b ··· 262639 263270 }: 262640 263271 mkDerivation { 262641 263272 pname = "servant-swagger-ui"; 262642 - version = "0.3.5.4.5.0"; 262643 - sha256 = "12w75z23bnygyr3ki9w3zfy9nhxyjawf9pyzhfg6rp2mq3nji9gg"; 262644 - revision = "4"; 262645 - editedCabalFile = "0nxyp77vqmwd7br5ag0zwc0rjwkxcriqcbfbg9cvlfdkp5d26wsp"; 263273 + version = "0.3.5.5.0.0"; 263274 + sha256 = "1sjgakdln2nx9ki13vk557rfqwqjksagl32q7y3m8mc9y9s80py7"; 262646 263275 libraryHaskellDepends = [ 262647 263276 aeson base bytestring file-embed-lzma servant servant-server 262648 263277 servant-swagger-ui-core text ··· 266221 266850 ]; 266222 266851 description = "Calculate expressions involving significant figures"; 266223 266852 license = lib.licenses.gpl3Plus; 266853 + hydraPlatforms = lib.platforms.none; 266224 266854 mainProgram = "significant-figures-cli"; 266855 + broken = true; 266225 266856 }) {}; 266226 266857 266227 266858 "signify-hs" = callPackage ··· 267127 267758 license = lib.licenses.bsd3; 267128 267759 }) {}; 267129 267760 267761 + "simple-sendfile_0_2_32" = callPackage 267762 + ({ mkDerivation, base, bytestring, conduit, conduit-extra 267763 + , directory, easy-file, hspec, hspec-discover, HUnit, network 267764 + , process, resourcet, unix 267765 + }: 267766 + mkDerivation { 267767 + pname = "simple-sendfile"; 267768 + version = "0.2.32"; 267769 + sha256 = "18r8d1in3x9r1p9fmvmypf9922icjbm1ksvqvp95dnf3gakd0a4z"; 267770 + libraryHaskellDepends = [ base bytestring network unix ]; 267771 + testHaskellDepends = [ 267772 + base bytestring conduit conduit-extra directory easy-file hspec 267773 + HUnit network process resourcet 267774 + ]; 267775 + testToolDepends = [ hspec-discover ]; 267776 + description = "Cross platform library for the sendfile system call"; 267777 + license = lib.licenses.bsd3; 267778 + hydraPlatforms = lib.platforms.none; 267779 + }) {}; 267780 + 267130 267781 "simple-server" = callPackage 267131 267782 ({ mkDerivation, base, bytestring, concurrent-extra, containers 267132 267783 , hashtables, network, time, unbounded-delays ··· 269407 270058 }: 269408 270059 mkDerivation { 269409 270060 pname = "slynx"; 269410 - version = "0.7.2.0"; 269411 - sha256 = "0gz5sqcghr930d77rfwagl5xcx7v9x87y7ivw89frn3ykblssr3x"; 270061 + version = "0.7.2.1"; 270062 + sha256 = "1jff263if0f3013qlh06dvmisnqvmlq2ld4rqb159x6vz59iablk"; 269412 270063 isLibrary = true; 269413 270064 isExecutable = true; 269414 270065 libraryHaskellDepends = [ ··· 269478 270129 ({ mkDerivation, base, logict, mtl, pretty }: 269479 270130 mkDerivation { 269480 270131 pname = "smallcheck"; 269481 - version = "1.2.1"; 269482 - sha256 = "0sf87zjlrgjw7q6a0499g2ywx66zvpv6rg6953fjc18fnl8rs7z4"; 269483 - revision = "1"; 269484 - editedCabalFile = "141lvb58hy94gywchaaf2dbh1dncnj951q5l6xkg1drvm94dvj1b"; 270132 + version = "1.2.1.1"; 270133 + sha256 = "07zyb3hnq242mdwak5briqc48wakp9pjsfizl78l06070i824hz0"; 269485 270134 libraryHaskellDepends = [ base logict mtl pretty ]; 269486 270135 description = "A property-based testing library"; 269487 270136 license = lib.licenses.bsd3; ··· 273111 273760 , exceptions, file-embed, filepath, hedgehog, hex-text, hspec 273112 273761 , hspec-discover, hspec-hedgehog, memory, monad-loops, mtl 273113 273762 , neat-interpolation, ordered-containers, process, random 273114 - , regex-tdfa, scientific, sdl2, sdl2-mixer, stm, strip-ansi-escape 273115 - , template-haskell, terminal, text, time, unix 273116 - , unordered-containers, vector, WAVE, with-utf8 273763 + , regex-tdfa, scientific, sdl2, sdl2-gfx, sdl2-mixer, sdl2-ttf, stm 273764 + , strip-ansi-escape, template-haskell, terminal, text, time, unix 273765 + , unliftio, unliftio-core, unordered-containers, vector, WAVE 273766 + , with-utf8 273117 273767 }: 273118 273768 mkDerivation { 273119 273769 pname = "spade"; 273120 - version = "0.1.0.8"; 273121 - sha256 = "000cpyz9bvjf7rw2w0vwi4m6jj1hmdiq1qxs1039yrnfx7pq36r1"; 273770 + version = "0.1.0.9"; 273771 + sha256 = "0m11a7nszp3i6wg73274pj5hd7m6sw45n2h6rdrfbxc4xm08vs64"; 273122 273772 isLibrary = true; 273123 273773 isExecutable = true; 273124 273774 libraryHaskellDepends = [ 273125 273775 aeson ansi-terminal base bytestring constraints containers 273126 273776 cryptonite Decimal directory exceptions file-embed filepath 273127 - hedgehog hex-text hspec hspec-hedgehog memory monad-loops mtl 273128 - ordered-containers process random regex-tdfa scientific sdl2 273129 - sdl2-mixer stm template-haskell terminal text time unix 273130 - unordered-containers vector WAVE with-utf8 273777 + hedgehog hex-text hspec hspec-discover hspec-hedgehog memory 273778 + monad-loops mtl neat-interpolation ordered-containers process 273779 + random regex-tdfa scientific sdl2 sdl2-gfx sdl2-mixer sdl2-ttf stm 273780 + strip-ansi-escape template-haskell terminal text time unix unliftio 273781 + unliftio-core unordered-containers vector WAVE with-utf8 273131 273782 ]; 273132 273783 executableHaskellDepends = [ 273133 273784 aeson ansi-terminal base bytestring constraints containers 273134 273785 cryptonite Decimal directory exceptions file-embed filepath 273135 - hedgehog hex-text hspec hspec-hedgehog memory monad-loops mtl 273136 - ordered-containers process random regex-tdfa scientific sdl2 273137 - sdl2-mixer stm template-haskell terminal text time unix 273138 - unordered-containers vector WAVE with-utf8 273786 + hedgehog hex-text hspec hspec-discover hspec-hedgehog memory 273787 + monad-loops mtl neat-interpolation ordered-containers process 273788 + random regex-tdfa scientific sdl2 sdl2-gfx sdl2-mixer sdl2-ttf stm 273789 + strip-ansi-escape template-haskell terminal text time unix unliftio 273790 + unliftio-core unordered-containers vector WAVE with-utf8 273139 273791 ]; 273140 273792 testHaskellDepends = [ 273141 273793 aeson ansi-terminal base bytestring constraints containers 273142 273794 cryptonite Decimal directory exceptions file-embed filepath 273143 273795 hedgehog hex-text hspec hspec-discover hspec-hedgehog memory 273144 273796 monad-loops mtl neat-interpolation ordered-containers process 273145 - random regex-tdfa scientific sdl2 sdl2-mixer stm strip-ansi-escape 273146 - template-haskell terminal text time unix unordered-containers 273147 - vector WAVE with-utf8 273797 + random regex-tdfa scientific sdl2 sdl2-gfx sdl2-mixer sdl2-ttf stm 273798 + strip-ansi-escape template-haskell terminal text time unix unliftio 273799 + unliftio-core unordered-containers vector WAVE with-utf8 273148 273800 ]; 273149 273801 testToolDepends = [ hspec-discover ]; 273150 273802 description = "A simple programming and debugging environment"; 273151 273803 license = lib.licenses.gpl3Only; 273152 273804 badPlatforms = lib.platforms.darwin; 273805 + hydraPlatforms = lib.platforms.none; 273153 273806 mainProgram = "spade"; 273807 + broken = true; 273154 273808 }) {}; 273155 273809 273156 273810 "spake2" = callPackage ··· 276916 277570 license = lib.licenses.bsd3; 276917 277571 }) {}; 276918 277572 277573 + "stateWriter_0_4_0" = callPackage 277574 + ({ mkDerivation, base, containers, criterion, deepseq, dlist, free 277575 + , hspec, lens, mtl, QuickCheck, transformers, vector 277576 + }: 277577 + mkDerivation { 277578 + pname = "stateWriter"; 277579 + version = "0.4.0"; 277580 + sha256 = "0jilpcfbg1gx66c4wwkrzy52df450vhm0l3fyqlbj4li31q4h4q4"; 277581 + libraryHaskellDepends = [ base mtl transformers ]; 277582 + testHaskellDepends = [ base free hspec mtl QuickCheck ]; 277583 + benchmarkHaskellDepends = [ 277584 + base containers criterion deepseq dlist lens mtl transformers 277585 + vector 277586 + ]; 277587 + description = "A faster variant of the RWS monad transformers"; 277588 + license = lib.licenses.bsd3; 277589 + hydraPlatforms = lib.platforms.none; 277590 + }) {}; 277591 + 276919 277592 "statechart" = callPackage 276920 277593 ({ mkDerivation, base, polyparse }: 276921 277594 mkDerivation { ··· 277284 277957 ]; 277285 277958 description = "A library of statistical types, data, and functions"; 277286 277959 license = lib.licenses.bsd2; 277960 + hydraPlatforms = lib.platforms.none; 277961 + broken = true; 277287 277962 }) {}; 277288 277963 277289 277964 "stats" = callPackage ··· 282662 283337 ({ mkDerivation, base, blaze-markup, blaze-svg, directory, text }: 282663 283338 mkDerivation { 282664 283339 pname = "svg-icons"; 282665 - version = "2.10.0"; 282666 - sha256 = "0r1xm2vn62crrhzn9kb64lz9d16ra9gj0qq208wmhz6906hz0kbf"; 283340 + version = "3.0.0"; 283341 + sha256 = "1p29mwyy8hln0npmg14q0vyll6wyk3fakcskb2prgmy44k54wbxn"; 282667 283342 isLibrary = true; 282668 283343 isExecutable = true; 282669 283344 libraryHaskellDepends = [ ··· 283331 284006 testToolDepends = [ sydtest-discover ]; 283332 284007 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 283333 284008 license = "unknown"; 283334 - hydraPlatforms = lib.platforms.none; 283335 - broken = true; 283336 284009 }) {}; 283337 284010 283338 284011 "sydtest_0_15_0_0" = callPackage ··· 283362 284035 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 283363 284036 license = "unknown"; 283364 284037 hydraPlatforms = lib.platforms.none; 283365 - broken = true; 283366 284038 }) {}; 283367 284039 283368 284040 "sydtest-aeson" = callPackage ··· 283381 284053 testToolDepends = [ sydtest-discover ]; 283382 284054 description = "An aeson companion library for sydtest"; 283383 284055 license = "unknown"; 283384 - hydraPlatforms = lib.platforms.none; 283385 284056 }) {}; 283386 284057 283387 284058 "sydtest-amqp" = callPackage ··· 283421 284092 testToolDepends = [ sydtest-discover ]; 283422 284093 description = "An autodocodec companion library for sydtest"; 283423 284094 license = "unknown"; 283424 - hydraPlatforms = lib.platforms.none; 283425 284095 }) {}; 283426 284096 283427 284097 "sydtest-discover" = callPackage ··· 283456 284126 testToolDepends = [ sydtest-discover ]; 283457 284127 description = "A Hedgehog companion library for sydtest"; 283458 284128 license = "unknown"; 283459 - hydraPlatforms = lib.platforms.none; 283460 284129 }) {}; 283461 284130 283462 284131 "sydtest-hedgehog_0_4_0_0" = callPackage ··· 283493 284162 description = "An hedis companion library for sydtest"; 283494 284163 license = "unknown"; 283495 284164 hydraPlatforms = lib.platforms.none; 284165 + broken = true; 283496 284166 }) {}; 283497 284167 283498 284168 "sydtest-hspec" = callPackage ··· 283510 284180 testToolDepends = [ sydtest-discover ]; 283511 284181 description = "An Hspec companion library for sydtest"; 283512 284182 license = "unknown"; 283513 - hydraPlatforms = lib.platforms.none; 283514 284183 }) {}; 283515 284184 283516 284185 "sydtest-hspec_0_4_0_0" = callPackage ··· 283549 284218 description = "An mongoDB companion library for sydtest"; 283550 284219 license = "unknown"; 283551 284220 hydraPlatforms = lib.platforms.none; 284221 + broken = true; 283552 284222 }) {}; 283553 284223 283554 284224 "sydtest-persistent" = callPackage ··· 283564 284234 ]; 283565 284235 description = "A persistent companion library for sydtest"; 283566 284236 license = "unknown"; 283567 - hydraPlatforms = lib.platforms.none; 283568 284237 }) {}; 283569 284238 283570 284239 "sydtest-persistent-postgresql" = callPackage ··· 283587 284256 description = "An persistent-postgresql companion library for sydtest"; 283588 284257 license = "unknown"; 283589 284258 hydraPlatforms = lib.platforms.none; 284259 + broken = true; 283590 284260 }) {}; 283591 284261 283592 284262 "sydtest-persistent-sqlite" = callPackage ··· 283606 284276 description = "A persistent-sqlite companion library for sydtest"; 283607 284277 license = "unknown"; 283608 284278 hydraPlatforms = lib.platforms.none; 284279 + broken = true; 283609 284280 }) {}; 283610 284281 283611 284282 "sydtest-process" = callPackage ··· 283621 284292 testToolDepends = [ sydtest-discover ]; 283622 284293 description = "A typed-process companion library for sydtest"; 283623 284294 license = "unknown"; 283624 - hydraPlatforms = lib.platforms.none; 283625 284295 }) {}; 283626 284296 283627 284297 "sydtest-rabbitmq" = callPackage ··· 283642 284312 description = "An rabbitmq companion library for sydtest"; 283643 284313 license = "unknown"; 283644 284314 hydraPlatforms = lib.platforms.none; 284315 + broken = true; 283645 284316 }) {}; 283646 284317 283647 284318 "sydtest-servant" = callPackage ··· 283661 284332 testToolDepends = [ sydtest-discover ]; 283662 284333 description = "A servant companion library for sydtest"; 283663 284334 license = "unknown"; 283664 - hydraPlatforms = lib.platforms.none; 283665 284335 }) {}; 283666 284336 283667 284337 "sydtest-typed-process" = callPackage ··· 283677 284347 testToolDepends = [ sydtest-discover ]; 283678 284348 description = "A typed-process companion library for sydtest"; 283679 284349 license = "unknown"; 283680 - hydraPlatforms = lib.platforms.none; 283681 284350 }) {}; 283682 284351 283683 284352 "sydtest-wai" = callPackage ··· 283699 284368 testToolDepends = [ sydtest-discover ]; 283700 284369 description = "A wai companion library for sydtest"; 283701 284370 license = "unknown"; 283702 - hydraPlatforms = lib.platforms.none; 283703 284371 }) {}; 283704 284372 283705 284373 "sydtest-webdriver" = callPackage ··· 283724 284392 description = "A webdriver companion library for sydtest"; 283725 284393 license = "unknown"; 283726 284394 hydraPlatforms = lib.platforms.none; 284395 + broken = true; 283727 284396 }) {}; 283728 284397 283729 284398 "sydtest-webdriver-screenshot" = callPackage ··· 285255 285924 pname = "systemd-socket-activation"; 285256 285925 version = "1.1.0.1"; 285257 285926 sha256 = "0cmpwklq2jdn8ax8b27zlcf40wzrvnjghfzbkqfaq2711ln47w6q"; 285927 + revision = "1"; 285928 + editedCabalFile = "0k8grxj45yyc9liixlhr0wi9gfqbzdzpnbd35qygc9xnylw0zm1b"; 285258 285929 libraryHaskellDepends = [ 285259 285930 base containers network quaalude text transformers unix 285260 285931 ]; ··· 286852 287523 broken = true; 286853 287524 }) {}; 286854 287525 286855 - "tasty-autocollect_0_4_0" = callPackage 287526 + "tasty-autocollect_0_4_1" = callPackage 286856 287527 ({ mkDerivation, base, bytestring, containers, directory 286857 287528 , explainable-predicates, filepath, ghc, tasty 286858 287529 description = "PID control loop"; ··· 286861 287532 }: 286862 287533 mkDerivation { 286863 287534 pname = "tasty-autocollect"; 286864 - version = "0.4.0"; 286865 - sha256 = "1nq5zaf3ly7n4mqprdgvgw2ixdxk7qdrl108ppncid43dfj560ik"; 287535 + version = "0.4.1"; 287536 + sha256 = "0b374x2m2rx1zzqb1i5wr36d6nxs1wx1cxyggjszlwxssz0vqzcj"; 286866 287537 isLibrary = true; 286867 287538 isExecutable = true; 286868 287539 libraryHaskellDepends = [ ··· 289644 290315 }: 289645 290316 mkDerivation { 289646 290317 pname = "terminal-progress-bar"; 289647 - version = "0.4.1"; 289648 - sha256 = "092yx9hal3xxcvpjwyqbfqww277l4gf83272pcnp3k6aj86a2756"; 290318 + version = "0.4.2"; 290319 + sha256 = "0li0w2wlbmq7mrg57ddnd33vqwndlxyl501bp0wkwyy9k14xmjgy"; 289649 290320 libraryHaskellDepends = [ base deepseq terminal-size text time ]; 289650 290321 testHaskellDepends = [ 289651 290322 base HUnit test-framework test-framework-hunit text time ··· 290721 291392 license = lib.licenses.gpl2Only; 290722 291393 }) {}; 290723 291394 290724 - "texmath_0_12_7_1" = callPackage 291395 + "texmath_0_12_8" = callPackage 290725 291396 ({ mkDerivation, base, bytestring, containers, directory, filepath 290726 291397 , mtl, pandoc-types, parsec, pretty-show, split, syb, tagged, tasty 290727 - , tasty-golden, text, xml 291398 + , tasty-golden, text, typst-symbols, xml 290728 291399 }: 290729 291400 mkDerivation { 290730 291401 pname = "texmath"; 290731 - version = "0.12.7.1"; 290732 - sha256 = "0hpkc3vhwbn0ir7ri5a58pkjjybzcb6j4gm38bz3n2lj837ib9vx"; 291402 + version = "0.12.8"; 291403 + sha256 = "1i15hqzmvb00rhwiz7yiqbccg7zknk7rrx9xk16arf6rf43g0kq3"; 290733 291404 isLibrary = true; 290734 291405 isExecutable = true; 290735 291406 libraryHaskellDepends = [ 290736 - base containers mtl pandoc-types parsec split syb text xml 291407 + base containers mtl pandoc-types parsec split syb text 291408 + typst-symbols xml 290737 291409 ]; 290738 291410 testHaskellDepends = [ 290739 291411 base bytestring directory filepath pretty-show tagged tasty ··· 291552 292224 }: 291553 292225 mkDerivation { 291554 292226 pname = "text-show"; 291555 - version = "3.10.2"; 291556 - sha256 = "00vpyf753322fad02phkhc5njc3l2pnmw12lhyq67vganspsyd4w"; 291557 - revision = "2"; 291558 - editedCabalFile = "1scjd7gcl3kwv214hyyz6pppy8i46nigvy22945pi89n3ga0fqaz"; 292227 + version = "3.10.3"; 292228 + sha256 = "0f59cr1bqy2kbhdxxz1a86lf6masyy67f1i8kj1815df6rpgnshy"; 291559 292229 libraryHaskellDepends = [ 291560 292230 array base base-compat-batteries bifunctors bytestring 291561 292231 bytestring-builder containers generic-deriving ghc-boot-th ghc-prim ··· 293224 293894 pname = "threadscope"; 293225 293895 version = "0.2.14.1"; 293226 293896 sha256 = "0hfn90299mp18p2bjj2bgfi1pk3ndxz4nv2ac6z52kvh00sr9drq"; 293897 + revision = "1"; 293898 + editedCabalFile = "11qpwvsic884nx2v2g2fw7i6n9905rjpj6lp150insh6cs88kqfc"; 293227 293899 isLibrary = false; 293228 293900 isExecutable = true; 293229 293901 enableSeparateDataOutput = true; ··· 293234 293906 ]; 293235 293907 description = "A graphical tool for profiling parallel Haskell programs"; 293236 293908 license = lib.licenses.bsd3; 293237 - hydraPlatforms = lib.platforms.none; 293238 293909 mainProgram = "threadscope"; 293239 - broken = true; 293910 + maintainers = [ lib.maintainers.maralorn ]; 293240 293911 }) {}; 293241 293912 293242 293913 "threefish" = callPackage ··· 293847 294518 license = lib.licenses.bsd3; 293848 294519 hydraPlatforms = lib.platforms.none; 293849 294520 mainProgram = "tiger"; 294521 + broken = true; 293850 294522 }) {}; 293851 294523 293852 294524 "tight-apply" = callPackage ··· 295571 296243 license = lib.licenses.bsd3; 295572 296244 }) {}; 295573 296245 295574 - "tls_1_6_0" = callPackage 296246 + "tls_1_7_0" = callPackage 295575 296247 ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring 295576 - , cereal, cryptonite, data-default-class, gauge, hourglass, memory 295577 - , mtl, network, QuickCheck, tasty, tasty-quickcheck, transformers 295578 - , x509, x509-store, x509-validation 296248 + , cereal, crypton, crypton-x509, crypton-x509-store 296249 + , crypton-x509-validation, data-default-class, gauge, hourglass 296250 + , memory, mtl, network, QuickCheck, tasty, tasty-quickcheck 296251 + , transformers, unix-time 295579 296252 }: 295580 296253 mkDerivation { 295581 296254 pname = "tls"; 295582 - version = "1.6.0"; 295583 - sha256 = "1674i73dwha42ia1wlngi346lnfbag46w1wvqfim5f61q6pj17fj"; 296255 + version = "1.7.0"; 296256 + sha256 = "0y20ab42pa6ls799w8s6zda6r7q4bw25jghimzv68s6j0b4m0aiw"; 295584 296257 libraryHaskellDepends = [ 295585 - asn1-encoding asn1-types async base bytestring cereal cryptonite 295586 - data-default-class hourglass memory mtl network transformers x509 295587 - x509-store x509-validation 296258 + asn1-encoding asn1-types async base bytestring cereal crypton 296259 + crypton-x509 crypton-x509-store crypton-x509-validation 296260 + data-default-class memory mtl network transformers unix-time 295588 296261 ]; 295589 296262 testHaskellDepends = [ 295590 - asn1-types async base bytestring cryptonite data-default-class 295591 - hourglass QuickCheck tasty tasty-quickcheck x509 x509-validation 296263 + asn1-types async base bytestring crypton crypton-x509 296264 + crypton-x509-validation data-default-class hourglass QuickCheck 296265 + tasty tasty-quickcheck 295592 296266 ]; 295593 296267 benchmarkHaskellDepends = [ 295594 - asn1-types async base bytestring cryptonite data-default-class 295595 - gauge hourglass QuickCheck tasty-quickcheck x509 x509-validation 296268 + asn1-types async base bytestring crypton crypton-x509 296269 + crypton-x509-validation data-default-class gauge hourglass 296270 + QuickCheck tasty-quickcheck 295596 296271 ]; 295597 296272 description = "TLS/SSL protocol native implementation (Server and Client)"; 295598 296273 license = lib.licenses.bsd3; ··· 295656 296331 "tlynx" = callPackage 295657 296332 ({ mkDerivation, aeson, async, attoparsec, base, bytestring 295658 296333 , comonad, containers, data-default-class, elynx-tools, elynx-tree 295659 - , optparse-applicative, parallel, random, statistics, text 296334 + , gnuplot, optparse-applicative, parallel, random, statistics, text 295660 296335 , transformers, vector 295661 296336 }: 295662 296337 mkDerivation { 295663 296338 pname = "tlynx"; 295664 - version = "0.7.2.0"; 295665 - sha256 = "0zlm9hclhbfz9r31wrflx095p9qydq8qjg4fzrfyqmplvlqjwq62"; 296339 + version = "0.7.2.1"; 296340 + sha256 = "0v3lcmvd036mjsjyxlcixrxbf33f3bp4ijjcx2c1jhir109yvzxp"; 295666 296341 isLibrary = true; 295667 296342 isExecutable = true; 295668 296343 libraryHaskellDepends = [ 295669 296344 aeson async attoparsec base bytestring comonad containers 295670 - data-default-class elynx-tools elynx-tree optparse-applicative 295671 - parallel random statistics text transformers vector 296345 + data-default-class elynx-tools elynx-tree gnuplot 296346 + optparse-applicative parallel random statistics text transformers 296347 + vector 295672 296348 ]; 295673 296349 executableHaskellDepends = [ base ]; 295674 296350 description = "Handle phylogenetic trees"; ··· 296130 296806 testToolDepends = [ sydtest-discover ]; 296131 296807 description = "A thread-safe concurrent token-bucket rate limiter that guarantees fairness"; 296132 296808 license = lib.licenses.mit; 296133 - hydraPlatforms = lib.platforms.none; 296134 296809 }) {}; 296135 296810 296136 296811 "token-search" = callPackage ··· 296370 297045 }: 296371 297046 mkDerivation { 296372 297047 pname = "toml-reader"; 296373 - version = "0.2.0.0"; 296374 - sha256 = "0pajlx405cbb7c5bcq3r8hgqlmn16nqvraskplq9n9cc5xhw04xk"; 296375 - revision = "1"; 296376 - editedCabalFile = "0v03ssaa4kqa0i3wvl460028qhvlzfsqrqk6vbgcvsw6vxsnbh80"; 297048 + version = "0.2.1.0"; 297049 + sha256 = "1nq4f1a1gkm0xv1crq3fwp6xmr79kz6m4ls0nkj75mkcqk0mpd05"; 296377 297050 libraryHaskellDepends = [ 296378 297051 base containers megaparsec parser-combinators text time 296379 297052 ]; ··· 297031 297704 pname = "toysolver"; 297032 297705 version = "0.8.1"; 297033 297706 sha256 = "00f3x4rq8334g2923l338vzdz9jmf4amab16awr29bkj90h1ay5a"; 297707 + revision = "1"; 297708 + editedCabalFile = "05pgz4yqi5n2mqjsrzqqs7m2c2h7kis8d24map5arh385d0f9xwf"; 297034 297709 isLibrary = true; 297035 297710 isExecutable = true; 297036 297711 libraryHaskellDepends = [ ··· 297520 298195 }: 297521 298196 mkDerivation { 297522 298197 pname = "transaction"; 297523 - version = "0.1.1.3"; 297524 - sha256 = "1if04fm2kvkd25ksk1llqqkwaqy8y7pafbywmz70mrr68wrb2r6j"; 298198 + version = "0.1.1.4"; 298199 + sha256 = "0da6ahz08bay7qmqmsjdb5yqfxdxpjzkz6vhma1dbcf7c7qc89mf"; 297525 298200 libraryHaskellDepends = [ base mono-traversable ]; 297526 298201 testHaskellDepends = [ 297527 298202 base doctest Glob hspec mono-traversable QuickCheck ··· 298831 299506 }) {}; 298832 299507 298833 299508 "trie-simple" = callPackage 298834 - ({ mkDerivation, base, containers, criterion, deepseq, hspec, mtl 298835 - , mwc-random, QuickCheck, vector 299509 + ({ mkDerivation, base, containers, deepseq, gauge, hashable, hspec 299510 + , hspec-discover, indexed-traversable, matchable, mtl, mwc-random 299511 + , QuickCheck, semialign, these, vector, witherable 298836 299512 }: 298837 299513 mkDerivation { 298838 299514 pname = "trie-simple"; 298839 - version = "0.4.1.1"; 298840 - sha256 = "0h3wfq4fjakkwvrv35l25709xv528h1c08cr754gvk4l8vqnk6k7"; 298841 - revision = "6"; 298842 - editedCabalFile = "0kzvdlp671x2bvab3scmv2pm805gdb33dw18cspdzgslrwr99ql4"; 298843 - libraryHaskellDepends = [ base containers deepseq mtl ]; 299515 + version = "0.4.2"; 299516 + sha256 = "1ai4fn35312z6ydwadi0rxscglwqawjrzq6p1i2kpbf7vmflznjg"; 299517 + libraryHaskellDepends = [ 299518 + base containers deepseq hashable indexed-traversable matchable mtl 299519 + semialign these witherable 299520 + ]; 298844 299521 testHaskellDepends = [ base containers hspec QuickCheck vector ]; 299522 + testToolDepends = [ hspec-discover ]; 298845 299523 benchmarkHaskellDepends = [ 298846 - base containers criterion deepseq mwc-random vector 299524 + base containers deepseq gauge mwc-random vector 298847 299525 ]; 298848 299526 description = "Simple Map-based Trie"; 298849 299527 license = lib.licenses.bsd3; ··· 302338 303016 hydraPlatforms = lib.platforms.none; 302339 303017 }) {}; 302340 303018 303019 + "typst" = callPackage 303020 + ({ mkDerivation, aeson, array, base, bytestring, cassava 303021 + , containers, filepath, mtl, ordered-containers, parsec, pretty 303022 + , pretty-show, regex-tdfa, scientific, tasty, tasty-golden, text 303023 + , typst-symbols, vector, xml-conduit, yaml 303024 + }: 303025 + mkDerivation { 303026 + pname = "typst"; 303027 + version = "0.1.0.0"; 303028 + sha256 = "1vsfl9lijx01raz6fdi9mn5rvlpxbgb2q6ky37ahqn2pcd3r82m4"; 303029 + isLibrary = true; 303030 + isExecutable = true; 303031 + libraryHaskellDepends = [ 303032 + aeson array base bytestring cassava containers filepath mtl 303033 + ordered-containers parsec pretty regex-tdfa scientific text 303034 + typst-symbols vector xml-conduit yaml 303035 + ]; 303036 + testHaskellDepends = [ 303037 + base bytestring filepath pretty-show tasty tasty-golden text 303038 + ]; 303039 + description = "Parsing and evaluating typst syntax"; 303040 + license = lib.licenses.bsd3; 303041 + }) {}; 303042 + 303043 + "typst-symbols" = callPackage 303044 + ({ mkDerivation, base, text }: 303045 + mkDerivation { 303046 + pname = "typst-symbols"; 303047 + version = "0.1.0.1"; 303048 + sha256 = "0kwdsp3j5qpfwaf2z91k7x9844bnb2wdm3v5ii9zkpnjmpxvbqph"; 303049 + revision = "1"; 303050 + editedCabalFile = "1z4f2ypk6askn5m9zcpla5cib7xliff2akp0bcs34lwqnr0ycjvr"; 303051 + libraryHaskellDepends = [ base text ]; 303052 + description = "Symbol and emoji lookup for typst language"; 303053 + license = lib.licenses.mit; 303054 + }) {}; 303055 + 302341 303056 "tyro" = callPackage 302342 303057 ({ mkDerivation, aeson, base, bytestring, HUnit, protolude 302343 303058 , reflection, singletons, test-framework, test-framework-hunit ··· 305208 305923 broken = true; 305209 305924 }) {}; 305210 305925 305926 + "unlifted" = callPackage 305927 + ({ mkDerivation, base, bytestring, text-short }: 305928 + mkDerivation { 305929 + pname = "unlifted"; 305930 + version = "0.1.0.0"; 305931 + sha256 = "1b8ms0im0d9y1lv76ap6255hf3sp7p6hbi0glf3jq5fk601mc6sy"; 305932 + libraryHaskellDepends = [ base bytestring text-short ]; 305933 + description = "Unlifted and levity-polymorphic types"; 305934 + license = lib.licenses.bsd3; 305935 + }) {}; 305936 + 305211 305937 "unlifted-list" = callPackage 305212 305938 ({ mkDerivation, base, ghc-prim, semigroups }: 305213 305939 mkDerivation { ··· 305228 305954 }: 305229 305955 mkDerivation { 305230 305956 pname = "unliftio"; 305231 - version = "0.2.24.0"; 305232 - sha256 = "16r2a26ig4j8crmvzbkbavszfaxghg7qhgm5z9q4aygc9jwbk2px"; 305957 + version = "0.2.25.0"; 305958 + sha256 = "0aqiia15p5y0jddk6fsb00das035f8x5cpkzrmc9x3z7j4ia51gv"; 305233 305959 libraryHaskellDepends = [ 305234 305960 async base bytestring deepseq directory filepath process 305235 305961 safe-exceptions stm time transformers unix unliftio-core ··· 307101 307827 executableHaskellDepends = [ base uuagc-cabal ]; 307102 307828 description = "Attribute Grammar System of Universiteit Utrecht"; 307103 307829 license = lib.licenses.bsd3; 307104 - hydraPlatforms = lib.platforms.none; 307105 307830 mainProgram = "uuagc"; 307106 307831 }) {}; 307107 307832 ··· 307143 307868 ]; 307144 307869 description = "Cabal plugin for UUAGC"; 307145 307870 license = lib.licenses.bsd3; 307146 - hydraPlatforms = lib.platforms.none; 307147 - broken = true; 307148 307871 }) {}; 307149 307872 307150 307873 "uuagc-diagrams" = callPackage ··· 307696 308419 ]; 307697 308420 testHaskellDepends = [ base hedgehog HUnit lens semigroups ]; 307698 308421 description = "A data-type like Either but with an accumulating Applicative"; 308422 + license = lib.licenses.bsd3; 308423 + }) {}; 308424 + 308425 + "validation-micro" = callPackage 308426 + ({ mkDerivation, base, deepseq }: 308427 + mkDerivation { 308428 + pname = "validation-micro"; 308429 + version = "1.0.0.0"; 308430 + sha256 = "1s51ln9iynfl8mm2x9mv2q5cwz6681df1569aaqj51jkw4fscgnz"; 308431 + revision = "1"; 308432 + editedCabalFile = "01x8dv57gi7p04s9mi14xik512j4mp1xjbqyabqda6x5vi6my6gw"; 308433 + libraryHaskellDepends = [ base deepseq ]; 308434 + description = "Lighweight pure data validation based on Applicative"; 307699 308435 license = lib.licenses.bsd3; 307700 308436 }) {}; 307701 308437 ··· 313018 313754 }: 313019 313755 mkDerivation { 313020 313756 pname = "wai-token-bucket-ratelimiter"; 313021 - version = "0.1.0.0"; 313022 - sha256 = "1rgg6r3wym7l13b79yy0davl1isibrmfvn7yv4h6wv65s4iwvrjm"; 313757 + version = "0.1.0.1"; 313758 + sha256 = "1s5l0blfiyyj28qb3qrj4jb35xf1nwhgd1vsmnm8m9l9zjh04hch"; 313023 313759 libraryHaskellDepends = [ 313024 313760 base clock hashable http-types unordered-containers wai 313025 313761 ]; ··· 313279 314015 license = lib.licenses.mit; 313280 314016 }) {}; 313281 314017 313282 - "warp_3_3_25" = callPackage 314018 + "warp_3_3_27" = callPackage 313283 314019 ({ mkDerivation, array, auto-update, base, bsb-http-chunked 313284 - , bytestring, case-insensitive, containers, directory, gauge 313285 - , ghc-prim, hashable, hspec, hspec-discover, http-client, http-date 313286 - , http-types, http2, iproute, network, process, QuickCheck, recv 313287 - , simple-sendfile, stm, streaming-commons, text, time-manager, unix 313288 - , unix-compat, unliftio, vault, wai, word8, x509 314020 + , bytestring, case-insensitive, containers, crypton-x509, directory 314021 + , gauge, ghc-prim, hashable, hspec, hspec-discover, http-client 314022 + , http-date, http-types, http2, iproute, network, process 314023 + , QuickCheck, recv, simple-sendfile, stm, streaming-commons, text 314024 + , time-manager, unix, unliftio, vault, wai, word8 313289 314025 }: 313290 314026 mkDerivation { 313291 314027 pname = "warp"; 313292 - version = "3.3.25"; 313293 - sha256 = "1wa62inv7ai32jb88gr2vjiv1mh8gb96wc521y6mv2w967q1hzga"; 314028 + version = "3.3.27"; 314029 + sha256 = "067qxjsr9wkizv1dzpdsn48lgbrjrn35c1v4dwxv51wy48hbqzdv"; 313294 314030 libraryHaskellDepends = [ 313295 314031 array auto-update base bsb-http-chunked bytestring case-insensitive 313296 - containers ghc-prim hashable http-date http-types http2 iproute 313297 - network recv simple-sendfile stm streaming-commons text 313298 - time-manager unix unix-compat unliftio vault wai word8 x509 314032 + containers crypton-x509 ghc-prim hashable http-date http-types 314033 + http2 iproute network recv simple-sendfile stm streaming-commons 314034 + text time-manager unix unliftio vault wai word8 313299 314035 ]; 313300 314036 testHaskellDepends = [ 313301 314037 array auto-update base bsb-http-chunked bytestring case-insensitive 313302 - containers directory ghc-prim hashable hspec http-client http-date 313303 - http-types http2 iproute network process QuickCheck recv 313304 - simple-sendfile stm streaming-commons text time-manager unix 313305 - unix-compat unliftio vault wai word8 x509 314038 + containers crypton-x509 directory ghc-prim hashable hspec 314039 + http-client http-date http-types http2 iproute network process 314040 + QuickCheck recv simple-sendfile stm streaming-commons text 314041 + time-manager unix unliftio vault wai word8 313306 314042 ]; 313307 314043 testToolDepends = [ hspec-discover ]; 313308 314044 benchmarkHaskellDepends = [ 313309 - auto-update base bytestring containers gauge hashable http-date 313310 - http-types network recv time-manager unix unix-compat unliftio x509 314045 + auto-update base bytestring containers crypton-x509 gauge hashable 314046 + http-date http-types network recv time-manager unix unliftio 313311 314047 ]; 313312 314048 description = "A fast, light-weight web server for WAI applications"; 313313 314049 license = lib.licenses.mit; ··· 313418 314154 license = lib.licenses.mit; 313419 314155 }) {}; 313420 314156 313421 - "warp-tls_3_3_6" = callPackage 313422 - description = "PID control loop"; 313423 - , network, recv, streaming-commons, tls, tls-session-manager 313424 - , unliftio, wai, warp 314157 + "warp-tls_3_4_0" = callPackage 314158 + ({ mkDerivation, base, bytestring, data-default-class, network 314159 + , recv, streaming-commons, tls, tls-session-manager, unliftio, wai 314160 + , warp 313425 314161 }: 313426 314162 mkDerivation { 313427 314163 pname = "warp-tls"; 313428 - version = "3.3.6"; 313429 - sha256 = "1davjsbfvybcd78scaqzxfwnaqmja4j7j3qbcdbb50gv1d87105f"; 314164 + version = "3.4.0"; 314165 + sha256 = "1pf3dlqjdybzza9sfs14r4vn63s15m7rpv83v27illbv2fs4a0b2"; 313430 314166 libraryHaskellDepends = [ 313431 - base bytestring cryptonite data-default-class network recv 313432 - streaming-commons tls tls-session-manager unliftio wai warp 314167 + base bytestring data-default-class network recv streaming-commons 314168 + tls tls-session-manager unliftio wai warp 313433 314169 ]; 313434 314170 description = "HTTP over TLS support for Warp via the TLS package"; 313435 314171 license = lib.licenses.mit; ··· 314535 315271 license = lib.licenses.bsd3; 314536 315272 }) {}; 314537 315273 315274 + "webdriver_0_11_0_0" = callPackage 315275 + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 315276 + , bytestring, call-stack, data-default-class, directory 315277 + , directory-tree, exceptions, filepath, http-client, http-types 315278 + , lifted-base, monad-control, network, network-uri, scientific 315279 + , temporary, text, time, transformers, transformers-base 315280 + , unordered-containers, vector, zip-archive 315281 + }: 315282 + mkDerivation { 315283 + pname = "webdriver"; 315284 + version = "0.11.0.0"; 315285 + sha256 = "0d9j0bw6znjsgxz2rqjrpcyybrn50nyz9pj5ajmpgs0pmgx0zbc2"; 315286 + libraryHaskellDepends = [ 315287 + aeson attoparsec base base64-bytestring bytestring call-stack 315288 + data-default-class directory directory-tree exceptions filepath 315289 + http-client http-types lifted-base monad-control network 315290 + network-uri scientific temporary text time transformers 315291 + transformers-base unordered-containers vector zip-archive 315292 + ]; 315293 + description = "a Haskell client for the Selenium WebDriver protocol"; 315294 + license = lib.licenses.bsd3; 315295 + hydraPlatforms = lib.platforms.none; 315296 + }) {}; 315297 + 314538 315298 "webdriver-angular" = callPackage 314539 315299 ({ mkDerivation, aeson, base, hspec, hspec-webdriver 314540 315300 , language-javascript, template-haskell, text, transformers ··· 316427 317187 pname = "wizards"; 316428 317188 version = "1.0.3"; 316429 317189 sha256 = "1clvbd1ckhvy29qrbmpkn7bya7300fq6znnps23nn3nxyrxhsr85"; 316430 - revision = "1"; 316431 - editedCabalFile = "095qd17zrdhqmcvmslbyzfa5sh9glvvsnsvnlz31gzsmi8nnsgim"; 317190 + revision = "2"; 317191 + editedCabalFile = "0bnqz6slm3hr98ihhlkmivcd12bda6lf0j7l6dfdz30fl4xqpijl"; 316432 317192 libraryHaskellDepends = [ 316433 317193 base containers control-monad-free haskeline mtl transformers 316434 317194 ]; ··· 318135 318895 license = lib.licenses.mit; 318136 318896 }) {}; 318137 318897 318898 + "wuss_2_0_1_4" = callPackage 318899 + ({ mkDerivation, base, bytestring, crypton-connection, exceptions 318900 + , network, websockets 318901 + }: 318902 + mkDerivation { 318903 + pname = "wuss"; 318904 + version = "2.0.1.4"; 318905 + sha256 = "0hm4rj7mx5zjmg2yr3zq462zw60nqaqrs91k71kgnxhnkcpbszav"; 318906 + libraryHaskellDepends = [ 318907 + base bytestring crypton-connection exceptions network websockets 318908 + ]; 318909 + description = "Secure WebSocket (WSS) clients"; 318910 + license = lib.licenses.mit; 318911 + hydraPlatforms = lib.platforms.none; 318912 + }) {}; 318913 + 318138 318914 "wx" = callPackage 318139 318915 ({ mkDerivation, base, stm, time, wxcore }: 318140 318916 mkDerivation { ··· 318540 319316 }: 318541 319317 mkDerivation { 318542 319318 pname = "xcffib"; 318543 - version = "1.3.0"; 318544 - sha256 = "0qj3h8j3qjqxjv2jjcywns7lb9xpnmm4rkz4gxczn9h0i868pbch"; 319319 + version = "1.4.0"; 319320 + sha256 = "08066j1rvinkifnak22w78p4lf7war607vfk1qj6j90glr0nzs45"; 318545 319321 isLibrary = true; 318546 319322 isExecutable = true; 318547 319323 libraryHaskellDepends = [ ··· 320739 321515 pname = "xrefcheck"; 320740 321516 version = "0.2.2"; 320741 321517 sha256 = "0qyl2wislma25s3n5aaqd732a2p7i9lsv4fvydm121a4r5sc5j4h"; 321518 + revision = "1"; 321519 + editedCabalFile = "1ph8x7clk3i6y8bvqn2v0fpkbvr3afna7qwx7rnc015rs8jdyalm"; 320742 321520 isLibrary = true; 320743 321521 isExecutable = true; 320744 321522 libraryHaskellDepends = [ ··· 321429 322207 }: 321430 322208 mkDerivation { 321431 322209 pname = "yaml"; 321432 - version = "0.11.11.0"; 321433 - sha256 = "08q0b0qq98ip2v34lygdp2i0yc5cmny34w4w59fcsd71s85w15ac"; 322210 + version = "0.11.11.1"; 322211 + sha256 = "0j7xa3bgznaj35x3x184c0dy6hjflxkdwp3iprfnhmz2ds2dr790"; 321434 322212 configureFlags = [ "-fsystem-libyaml" ]; 321435 322213 isLibrary = true; 321436 322214 isExecutable = true; ··· 321603 322381 pname = "yaml-streamly"; 321604 322382 version = "0.12.2"; 321605 322383 sha256 = "0bjagj6bg884xchx8dkrhqikjmwqzpb8hkjlxvbxnsmsmwnc22cx"; 322384 + revision = "1"; 322385 + editedCabalFile = "1b600ki3w67xi9jfbmrfzf9q3d3wz1dc0hgl9lyq6vjfm6ngdrg2"; 321606 322386 isLibrary = true; 321607 322387 isExecutable = true; 321608 322388 libraryHaskellDepends = [ ··· 321862 322642 }: 321863 322643 mkDerivation { 321864 322644 pname = "yampa-test"; 321865 - version = "0.14.2"; 321866 - sha256 = "08j923m374jr3kv6jyfrq7kba8y7hcq80xw8a7mhkif0l8w2rgxa"; 322645 + version = "0.14.3"; 322646 + sha256 = "1r4kjf1ww4gfw310c1srcglxyd34c5qf3rb7xqpncjagvsh027xy"; 321867 322647 libraryHaskellDepends = [ 321868 322648 base normaldistribution QuickCheck Yampa 321869 322649 ]; ··· 322889 323669 }) {}; 322890 323670 322891 323671 "yesod-auth-oidc" = callPackage 322892 - ({ mkDerivation, aeson, base, base64-bytestring, blaze-html, broch 322893 - , bytestring, classy-prelude, classy-prelude-yesod, containers 322894 - , cryptonite, directory, email-validate, fast-logger, hspec 322895 - , hspec-discover, http-client, http-conduit, http-types, jose-jwt 322896 - , lens, lens-regex-pcre, memory, monad-logger, oidc-client 322897 - , persistent, persistent-sqlite, postgresql-simple, reroute 322898 - , resource-pool, shakespeare, sqlite-simple, text, time 322899 - , unordered-containers, wai-app-static, wai-extra, warp, yesod 322900 - , yesod-auth, yesod-core, yesod-form, yesod-persistent, yesod-test 323672 + ({ mkDerivation, aeson, base, base64-bytestring 323673 + , classy-prelude-yesod, containers, cryptonite, http-client 323674 + , jose-jwt, oidc-client, shakespeare, text, time 323675 + , unordered-containers, yesod-auth, yesod-core, yesod-form 322901 323676 }: 322902 323677 mkDerivation { 322903 323678 pname = "yesod-auth-oidc"; 322904 - version = "0.1.1"; 322905 - sha256 = "12x4wypjmqvlz2y59j1p9ckf7pgl1sz3zz45xzhqa6axzzf6ln20"; 322906 - isLibrary = true; 322907 - isExecutable = true; 323679 + version = "0.1.4"; 323680 + sha256 = "0f58ppi96d1jhxydingxg1fi9iwz8f10fsg0795j65kwcf5rwkhm"; 322908 323681 libraryHaskellDepends = [ 322909 323682 aeson base base64-bytestring classy-prelude-yesod containers 322910 323683 cryptonite http-client jose-jwt oidc-client shakespeare text time 322911 323684 unordered-containers yesod-auth yesod-core yesod-form 322912 323685 ]; 322913 - executableHaskellDepends = [ 322914 - aeson base base64-bytestring blaze-html broch bytestring 322915 - classy-prelude classy-prelude-yesod containers cryptonite directory 322916 - email-validate fast-logger hspec http-client http-conduit 322917 - http-types jose-jwt lens lens-regex-pcre memory monad-logger 322918 - oidc-client persistent persistent-sqlite postgresql-simple reroute 322919 - resource-pool shakespeare sqlite-simple text time 322920 - unordered-containers wai-app-static wai-extra warp yesod yesod-auth 322921 - yesod-core yesod-form yesod-persistent yesod-test 322922 - ]; 322923 - testHaskellDepends = [ 322924 - aeson base base64-bytestring blaze-html broch bytestring 322925 - classy-prelude classy-prelude-yesod containers cryptonite directory 322926 - email-validate fast-logger hspec http-client http-conduit 322927 - http-types jose-jwt lens lens-regex-pcre memory monad-logger 322928 - oidc-client persistent persistent-sqlite postgresql-simple reroute 322929 - resource-pool shakespeare sqlite-simple text time 322930 - unordered-containers wai-app-static wai-extra warp yesod yesod-auth 322931 - yesod-core yesod-form yesod-persistent yesod-test 322932 - ]; 322933 - testToolDepends = [ hspec-discover ]; 322934 323686 description = "A yesod-auth plugin for multi-tenant SSO via OpenID Connect"; 322935 323687 license = lib.licenses.bsd3; 322936 - hydraPlatforms = lib.platforms.none; 322937 - mainProgram = "yesod-auth-oidc-test"; 322938 - broken = true; 322939 - }) {broch = null;}; 323688 + }) {}; 322940 323689 322941 323690 "yesod-auth-pam" = callPackage 322942 323691 ({ mkDerivation, base, hamlet, pam, text, yesod-auth, yesod-core ··· 323820 324569 }: 323821 324570 mkDerivation { 323822 324571 pname = "yesod-middleware-csp"; 323823 - version = "1.1.0"; 323824 - sha256 = "1jrfd8r7xvyc556q04qvrib1rwwlsy0rnbc7nxrnqpvn1wv1pb0q"; 324572 + version = "1.2.0"; 324573 + sha256 = "1mjcz9qx5pichmi19m5bdibv8945l781xkyiyr3mbvyxab3f79w8"; 323825 324574 libraryHaskellDepends = [ 323826 324575 base base64-bytestring bytestring classy-prelude conduit containers 323827 324576 directory filepath http-client network-uri template-haskell text
+14 -2
pkgs/development/haskell-modules/with-packages-wrapper.nix
··· 55 55 libDir = if isHaLVM then "$out/lib/HaLVM-${ghc.version}" 56 56 else "$out/lib/${ghc.targetPrefix}${ghc.haskellCompilerName}" 57 57 + lib.optionalString (ghc ? hadrian) "/lib"; 58 + # Boot libraries for GHC are present in a separate directory. 59 + bootLibDir = let arch = if stdenv.targetPlatform.isAarch64 60 + then "aarch64" 61 + else "x86_64"; 62 + platform = if stdenv.targetPlatform.isDarwin then "osx" else "linux"; 63 + in "${ghc}/lib/${ghc.haskellCompilerName}/lib/${arch}-${platform}-${ghc.haskellCompilerName}"; 58 64 docDir = "$out/share/doc/ghc/html"; 59 65 packageCfgDir = "${libDir}/package.conf.d"; 60 66 paths = lib.concatLists ( ··· 131 137 '' + (lib.optionalString (stdenv.targetPlatform.isDarwin && !isGhcjs && !stdenv.targetPlatform.isiOS) '' 132 138 # Work around a linker limit in macOS Sierra (see generic-builder.nix): 133 139 local packageConfDir="${packageCfgDir}"; 134 - local dynamicLinksDir="$out/lib/links" 140 + local dynamicLinksDir="$out/lib/links"; 135 141 mkdir -p $dynamicLinksDir 136 142 # Clean up the old links that may have been (transitively) included by 137 143 # symlinkJoin: 138 144 rm -f $dynamicLinksDir/* 145 + 146 + # Boot libraries are located differently than other libraries since GHC 9.6, so handle them separately. 147 + if [[ -x "${bootLibDir}" ]]; then 148 + ln -s "${bootLibDir}"/*.dylib $dynamicLinksDir 149 + fi 150 + 139 151 for d in $(grep -Poz "dynamic-library-dirs:\s*\K .+\n" $packageConfDir/*|awk '{print $2}'|sort -u); do 140 152 ln -s $d/*.dylib $dynamicLinksDir 141 153 done ··· 146 158 # $dynamicLinksDir 147 159 cp $f $f-tmp 148 160 rm $f 149 - sed "N;s,dynamic-library-dirs:\s*.*,dynamic-library-dirs: $dynamicLinksDir," $f-tmp > $f 161 + sed "N;s,dynamic-library-dirs:\s*.*\n,dynamic-library-dirs: $dynamicLinksDir\n," $f-tmp > $f 150 162 rm $f-tmp 151 163 done 152 164 '') + ''
+62
pkgs/development/python-modules/biopandas/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , looseversion 5 + , mmtf-python 6 + , nose 7 + , numpy 8 + , pandas 9 + , pythonRelaxDepsHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "biopandas"; 14 + version = "0.4.1"; 15 + format = "setuptools"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "BioPandas"; 19 + repo = "biopandas"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-PRdemBo+bB2xJWmF2NylFTfNwEEo67i6XSaeDAFmQ/c="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + pythonRelaxDepsHook 26 + ]; 27 + 28 + pythonRelaxDeps = [ 29 + "looseversion" 30 + ]; 31 + 32 + propagatedBuildInputs = [ 33 + numpy 34 + pandas 35 + mmtf-python 36 + looseversion 37 + ]; 38 + 39 + nativeCheckInputs = [ 40 + nose 41 + ]; 42 + 43 + checkPhase = '' 44 + runHook preCheck 45 + 46 + nosetests 47 + 48 + runHook postCheck 49 + ''; 50 + 51 + pythonImportsCheck = [ 52 + "biopandas" 53 + ]; 54 + 55 + meta = { 56 + description = "Working with molecular structures in pandas DataFrames"; 57 + homepage = "https://github.com/BioPandas/biopandas"; 58 + changelog = "https://github.com/BioPandas/biopandas/releases/tag/${src.rev}"; 59 + license = lib.licenses.bsd3; 60 + maintainers = with lib.maintainers; [ natsukium ]; 61 + }; 62 + }
+42
pkgs/development/python-modules/clarifai-grpc/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , googleapis-common-protos 6 + , grpcio 7 + , protobuf 8 + , requests 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "clarifai-grpc"; 13 + version = "9.5.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchPypi { 19 + inherit pname version; 20 + hash = "sha256-amMUgRXtvcrALfWwat7W0W60FJQnEeMvHhyxxBCMqUg="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + googleapis-common-protos 25 + grpcio 26 + protobuf 27 + requests 28 + ]; 29 + 30 + # almost all tests require network access 31 + doCheck = false; 32 + 33 + pythonImportsCheck = [ "clarifai_grpc" ]; 34 + 35 + meta = with lib; { 36 + description = "Clarifai gRPC API Client"; 37 + homepage = "https://github.com/Clarifai/clarifai-python-grpc"; 38 + changelog = "https://github.com/Clarifai/clarifai-python-grpc/releases/tag/${version}"; 39 + license = licenses.asl20; 40 + maintainers = with maintainers; [ natsukium ]; 41 + }; 42 + }
+40
pkgs/development/python-modules/clarifai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , clarifai-grpc 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "clarifai"; 11 + version = "9.5.2"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.8"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "Clarifai"; 18 + repo = "clarifai-python-utils"; 19 + rev = "refs/tags/${version}"; 20 + hash = "sha256-29by0YAQ7qc0gL/3lAFOk4FLDB5Qv4X9QDyK49gfyAo="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + clarifai-grpc 25 + ]; 26 + 27 + nativeCheckInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + pythonImportsCheck = [ "clarifai" ]; 32 + 33 + meta = with lib; { 34 + description = "Clarifai Python Utilities"; 35 + homepage = "https://github.com/Clarifai/clarifai-python-utils"; 36 + changelog = "https://github.com/Clarifai/clarifai-python-utils/releases/tag/${src.rev}"; 37 + license = licenses.asl20; 38 + maintainers = with maintainers; [ natsukium ]; 39 + }; 40 + }
+10 -3
pkgs/development/python-modules/langchain/default.nix
··· 17 17 , bash 18 18 # optional dependencies 19 19 , anthropic 20 + , clarifai 20 21 , cohere 21 22 , openai 22 23 , nlpcloud ··· 35 36 , faiss 36 37 , spacy 37 38 , nltk 39 + , wikipedia 38 40 , beautifulsoup4 39 41 , tiktoken 40 42 , jinja2 ··· 77 79 78 80 buildPythonPackage rec { 79 81 pname = "langchain"; 80 - version = "0.0.216"; 82 + version = "0.0.218"; 81 83 format = "pyproject"; 82 84 83 85 disabled = pythonOlder "3.8"; ··· 86 88 owner = "hwchase17"; 87 89 repo = "langchain"; 88 90 rev = "refs/tags/v${version}"; 89 - hash = "sha256-g01EMquASxXl9drLhKtTwG9+gSa17aBq0c8UXcErCjI="; 91 + hash = "sha256-8ru3Rp1bRLVivfXAFNfZYfV3DgHuHNEuCrKoqL1O0zo="; 90 92 }; 91 93 92 94 postPatch = '' ··· 123 125 passthru.optional-dependencies = { 124 126 llms = [ 125 127 anthropic 128 + clarifai 126 129 cohere 127 130 openai 128 131 nlpcloud ··· 140 143 text_helpers = [ 141 144 chardet 142 145 ]; 146 + clarifai = [ 147 + clarifai 148 + ]; 143 149 cohere = [ 144 150 cohere 145 151 ]; ··· 157 163 ]; 158 164 all = [ 159 165 anthropic 166 + clarifai 160 167 cohere 161 168 openai 162 169 nlpcloud ··· 171 178 transformers 172 179 spacy 173 180 nltk 174 - # wikipedia 181 + wikipedia 175 182 beautifulsoup4 176 183 tiktoken 177 184 torch
+64
pkgs/development/python-modules/mashumaro/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , setuptools 6 + , typing-extensions 7 + , orjson 8 + , msgpack 9 + , pyyaml 10 + , tomli-w 11 + , tomli 12 + , pytestCheckHook 13 + , ciso8601 14 + , pendulum 15 + , pytest-mock 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "mashumaro"; 20 + version = "3.8.1"; 21 + format = "pyproject"; 22 + disabled = pythonOlder "3.7"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "Fatal1ty"; 26 + repo = pname; 27 + rev = "refs/tags/v${version}"; 28 + hash = "sha256-WDKohmcdVlQR/6AMSISN0y6UQx4tmOf1fANCPLRYiqI="; 29 + }; 30 + 31 + nativeBuildInputs = [ 32 + setuptools 33 + ]; 34 + 35 + propagatedBuildInputs = [ 36 + typing-extensions 37 + ]; 38 + 39 + passthru.optional-dependencies = { 40 + orjson = [ orjson ]; 41 + msgpack = [ msgpack ]; 42 + yaml = [ pyyaml ]; 43 + toml = [ tomli-w ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; 44 + }; 45 + 46 + nativeCheckInputs = [ 47 + ciso8601 48 + pendulum 49 + pytest-mock 50 + pytestCheckHook 51 + ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); 52 + 53 + pythonImportsCheck = [ 54 + "mashumaro" 55 + ]; 56 + 57 + meta = with lib; { 58 + description = "Fast and well tested serialization library on top of dataclasses"; 59 + homepage = "https://github.com/Fatal1ty/mashumaro"; 60 + changelog = "https://github.com/Fatal1ty/mashumaro/releases/tag/v${version}"; 61 + license = licenses.asl20; 62 + maintainers = with maintainers; [ tjni ]; 63 + }; 64 + }
+44
pkgs/development/python-modules/mmtf-python/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , msgpack 5 + , numpy 6 + , unittestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "mmtf-python"; 11 + version = "1.1.3"; 12 + format = "setuptools"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-EqAv4bcTHworjORbRvHgzdKLmBj+RJlVTCaISYfqDDI="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + msgpack 21 + numpy 22 + ]; 23 + 24 + nativeCheckInputs = [ 25 + unittestCheckHook 26 + ]; 27 + 28 + unittestFlagsArray = [ 29 + "-s mmtf/tests" 30 + "-p \"*_tests.py\"" 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "mmtf" 35 + ]; 36 + 37 + meta = { 38 + description = "The python implementation of the MMTF API, decoder and encoder"; 39 + homepage = "https://github.com/rcsb/mmtf-python"; 40 + changelog = "https://github.com/rcsb/mmtf-python/releases/tag/v${version}"; 41 + license = lib.licenses.asl20; 42 + maintainers = with lib.maintainers; [ natsukium ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/openhomedevice/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "openhomedevice"; 13 - version = "2.1"; 13 + version = "2.2"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.5"; ··· 19 19 owner = "bazwilliams"; 20 20 repo = pname; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-KNQelldqHx4m8IfgGUwWw/+AVzBotIa7cJGy1SfbRy0="; 22 + hash = "sha256-GGp7nKFH01m1KW6yMkKlAdd26bDi8JDWva6OQ0CWMIw="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
-47
pkgs/development/python-modules/pygbm/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , scipy 5 - , numpy 6 - , numba 7 - , scikit-learn 8 - , pytest 9 - , pythonOlder 10 - }: 11 - 12 - buildPythonPackage rec { 13 - pname = "pygbm"; 14 - version = "0.1.0"; 15 - disabled = pythonOlder "3.6"; 16 - 17 - src = fetchFromGitHub { 18 - owner = "ogrisel"; 19 - repo = pname; 20 - rev = "v${version}"; 21 - sha256 = "1qg2md86d0z5aa6jn8kj3rxsippsqsccx1dbraspdsdkycncvww3"; 22 - }; 23 - 24 - propagatedBuildInputs = [ 25 - scipy 26 - numpy 27 - numba 28 - scikit-learn 29 - ]; 30 - 31 - nativeCheckInputs = [ 32 - pytest 33 - ]; 34 - 35 - checkPhase = '' 36 - # numerical rounding error in test 37 - pytest -k "not test_derivatives" 38 - ''; 39 - 40 - meta = with lib; { 41 - description = "Experimental Gradient Boosting Machines in Python"; 42 - homepage = "https://github.com/ogrisel/pygbm"; 43 - license = licenses.mit; 44 - maintainers = [ maintainers.costrouc ]; 45 - broken = true; 46 - }; 47 - }
+2
pkgs/development/python-modules/pyprecice/default.nix
··· 5 5 , mpi4py 6 6 , numpy 7 7 , precice 8 + , pkgconfig 8 9 , pythonOlder 9 10 }: 10 11 ··· 24 25 25 26 nativeBuildInputs = [ 26 27 cython 28 + pkgconfig 27 29 ]; 28 30 29 31 propagatedBuildInputs = [
-32
pkgs/development/python-modules/pytest-ordering/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonPackage 2 - , pytest }: 3 - 4 - buildPythonPackage rec { 5 - pname = "pytest-ordering"; 6 - version = "unstable-2019-06-19"; 7 - 8 - # Pypi lacks tests/ 9 - # Resolves PytestUnknownMarkWarning from pytest 10 - src = fetchFromGitHub { 11 - owner = "ftobia"; 12 - repo = pname; 13 - rev = "492697ee26633cc31d329c1ceaa468375ee8ee9c"; 14 - sha256 = "1xim0kj5g37p1skgvp8gdylpx949krmx60w3pw6j1m1h7sakmddn"; 15 - }; 16 - 17 - nativeCheckInputs = [ 18 - pytest 19 - ]; 20 - 21 - checkPhase = '' 22 - pytest tests 23 - ''; 24 - 25 - meta = with lib; { 26 - homepage = "https://github.com/ftobia/pytest-ordering"; 27 - description = "Pytest plugin to run your tests in a specific order"; 28 - license = licenses.mit; 29 - broken = true; # See https://github.com/NixOS/nixpkgs/pull/122264 30 - maintainers = with maintainers; [ eadwu ]; 31 - }; 32 - }
-52
pkgs/development/python-modules/pytest-sanic/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , async_generator 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , httpx 7 - , pytest 8 - , pytestCheckHook 9 - , sanic 10 - , websockets 11 - }: 12 - 13 - buildPythonPackage rec { 14 - pname = "pytest-sanic"; 15 - version = "1.9.1"; 16 - 17 - src = fetchFromGitHub { 18 - owner = "yunstanford"; 19 - repo = pname; 20 - rev = "v${version}"; 21 - hash = "sha256-82Xq/jyxTXyZVHqn7G+S9K++InDdORCO9oFqgaIgY7s="; 22 - }; 23 - 24 - buildInputs = [ 25 - pytest 26 - ]; 27 - 28 - propagatedBuildInputs = [ 29 - aiohttp 30 - async_generator 31 - httpx 32 - pytest 33 - websockets 34 - ]; 35 - 36 - nativeCheckInputs = [ 37 - sanic 38 - pytestCheckHook 39 - ]; 40 - 41 - pythonImportsCheck = [ 42 - "pytest_sanic" 43 - ]; 44 - 45 - meta = with lib; { 46 - description = "A pytest plugin for Sanic"; 47 - homepage = "https://github.com/yunstanford/pytest-sanic/"; 48 - license = licenses.asl20; 49 - maintainers = with maintainers; [ costrouc ]; 50 - broken = true; # 2021-11-04 51 - }; 52 - }
+39
pkgs/development/python-modules/wikipedia/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , beautifulsoup4 5 + , requests 6 + , unittestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "wikipedia"; 11 + version = "1.4.0"; 12 + format = "setuptools"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-2w+tGCn91EGxhSMG6YVjmCBNwHhtKZbdLgyLuOJhM7I="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + beautifulsoup4 21 + requests 22 + ]; 23 + 24 + nativeCheckInputs = [ 25 + unittestCheckHook 26 + ]; 27 + 28 + unittestFlagsArray = [ 29 + "tests/ '*test.py'" 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "A Pythonic wrapper for the Wikipedia API"; 34 + homepage = "https://github.com/goldsmith/Wikipedia"; 35 + changelog = "https://github.com/goldsmith/Wikipedia/blob/master/CHANGELOG.md"; 36 + license = licenses.mit; 37 + maintainers = with maintainers; [ natsukium ]; 38 + }; 39 + }
+3 -3
pkgs/development/tools/bearer/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "bearer"; 10 - version = "1.11.0"; 10 + version = "1.14.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "bearer"; 14 14 repo = "bearer"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-JbxITOF+6LxITA1Ujy9ZbCO9vSym/qfbEascKDvogJk="; 16 + hash = "sha256-7h+7lP4K4Dbf5V2HDrb2lJKWqINtOpqybBAyae0S6EE="; 17 17 }; 18 18 19 - vendorHash = "sha256-MKfD6RBMaCxB09SX0FlH+mJnzXyw2KkkOnVvBTMdb/w="; 19 + vendorHash = "sha256-D8LdufbOx3ogLbeSwBTsDnQ4NpZF+Ro2QiUg4hPGGYI="; 20 20 21 21 subPackages = [ 22 22 "cmd/bearer"
+3 -3
pkgs/development/tools/oh-my-posh/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "oh-my-posh"; 9 - version = "17.4.0"; 9 + version = "17.5.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "jandedobbeleer"; 13 13 repo = pname; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-dcQj9VPHPMg6Ht6EBz4nCv76xcQ7xqxvDH/KfFPQsqU="; 15 + hash = "sha256-WNB4NzOvabShVHivDs027y6QmU71GMrYJehCB9jPlA8="; 16 16 }; 17 17 18 - vendorHash = "sha256-tEOEFCKR4qqqnyfpAEMw5WQdOok4SFZAqsMc1+H5CCU="; 18 + vendorHash = "sha256-fHwaCcN47+LkJYqRFSQgVddVuR1QfdFuSNDYFh1edM4="; 19 19 20 20 sourceRoot = "source/src"; 21 21
+2 -1
pkgs/development/tools/parsing/tree-sitter/default.nix
··· 72 72 { tree-sitter-typescript = grammars'.tree-sitter-typescript // { location = "typescript"; }; } // 73 73 { tree-sitter-tsx = grammars'.tree-sitter-typescript // { location = "tsx"; }; } // 74 74 { tree-sitter-markdown = grammars'.tree-sitter-markdown // { location = "tree-sitter-markdown"; }; } // 75 - { tree-sitter-markdown-inline = grammars'.tree-sitter-markdown // { language = "markdown_inline"; location = "tree-sitter-markdown-inline"; }; }; 75 + { tree-sitter-markdown-inline = grammars'.tree-sitter-markdown // { language = "markdown_inline"; location = "tree-sitter-markdown-inline"; }; } // 76 + { tree-sitter-wing = grammars'.tree-sitter-wing // { location = "libs/tree-sitter-wing"; generate = true; }; }; 76 77 in 77 78 lib.mapAttrs build (grammars); 78 79
+1
pkgs/development/tools/parsing/tree-sitter/grammars/default.nix
··· 96 96 tree-sitter-verilog = lib.importJSON ./tree-sitter-verilog.json; 97 97 tree-sitter-vim = lib.importJSON ./tree-sitter-vim.json; 98 98 tree-sitter-vue = lib.importJSON ./tree-sitter-vue.json; 99 + tree-sitter-wing = lib.importJSON ./tree-sitter-wing.json; 99 100 tree-sitter-yaml = lib.importJSON ./tree-sitter-yaml.json; 100 101 tree-sitter-yang = lib.importJSON ./tree-sitter-yang.json; 101 102 tree-sitter-zig = lib.importJSON ./tree-sitter-zig.json;
+11
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-wing.json
··· 1 + { 2 + "url": "https://github.com/winglang/wing", 3 + "rev": "e578973d6f60091ba3458095edceb37bae2d04e2", 4 + "date": "2023-06-27T12:28:26+00:00", 5 + "path": "/nix/store/ppjabjz0dgmsr3k0wm07z7391vz7m120-wing", 6 + "sha256": "0089rxdzxi43qal2310dpyzw1a3zl08qbm5b8md8cgwmvycija9a", 7 + "fetchLFS": false, 8 + "fetchSubmodules": false, 9 + "deepClone": false, 10 + "leaveDotGit": false 11 + }
+4
pkgs/development/tools/parsing/tree-sitter/update.nix
··· 371 371 orga = "eonpatapon"; 372 372 repo = "tree-sitter-cue"; 373 373 }; 374 + "tree-sitter-wing" = { 375 + orga = "winglang"; 376 + repo = "wing"; 377 + }; 374 378 }; 375 379 376 380 allGrammars =
+4 -8
pkgs/development/tools/rust/cargo-binstall/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "cargo-binstall"; 14 - version = "0.23.1"; 14 + version = "1.0.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "cargo-bins"; 18 18 repo = "cargo-binstall"; 19 19 rev = "v${version}"; 20 - hash = "sha256-Dpo/J6FTW95rODWeIqD+8YnN4dt5yhLPxoezA1CTM4A="; 20 + hash = "sha256-43AXxTuHwaNLDTDmLps/HbRvQFWyUgLQhTrxHtQCk3k="; 21 21 }; 22 22 23 - cargoHash = "sha256-Nc/kdrLsAooM41pwlkZ3zWsLvFlnxHG/2ZQhPsEyPkI="; 23 + cargoHash = "sha256-F26wjIsBjQ+z+sHGzE7PdYOZi7XwStlOXfbK/lpepDY="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config ··· 37 37 buildNoDefaultFeatures = true; 38 38 buildFeatures = [ 39 39 "fancy-no-backtrace" 40 + "git" 40 41 "pkg-config" 41 42 "rustls" 42 43 "trust-dns" ··· 52 53 "--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_no_such_release" 53 54 "--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_v0_20_1" 54 55 ]; 55 - 56 - # remove cargo config so it can find the linker on aarch64-unknown-linux-gnu 57 - postPatch = '' 58 - rm .cargo/config 59 - ''; 60 56 61 57 meta = with lib; { 62 58 description = "A tool for installing rust binaries as an alternative to building from source";
+3 -3
pkgs/development/tools/rust/cargo-vet/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-vet"; 5 - version = "0.7.0"; 5 + version = "0.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mozilla"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-URTWfV/weXWvgaZv7RWKqr7w3dnad2Pr5wNv0rcm2eg="; 11 + sha256 = "sha256-VnOqQ1dKgNZSHTzJrD7stoCzNGrSkYxcLDJAsrJUsEQ="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-cnxVcq5v6MXH7hrdT4kE+8DxJY5z2fGCF3G6GGJx8pw="; 14 + cargoSha256 = "sha256-M8sZzgSEMIB6pPVaE+tC18MCbwYaYpHOnhrEvm9JTso="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin Security; 17 17
+3 -3
pkgs/development/tools/sq/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "sq"; 5 - version = "0.38.0"; 5 + version = "0.39.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "neilotoole"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-h8rCHtBTckLjRxi79N26pYiCJSI/UKUbwUTsQXD7Sco="; 11 + sha256 = "sha256-Icx7IhMRbud2gCyMvjuYM9CipzAH39X+bC4AEwVheVQ="; 12 12 }; 13 13 14 - vendorHash = "sha256-VcqCscheXYgWT88ZExJWdwRMT5Ir0C49S5+Hp557jiw="; 14 + vendorHash = "sha256-xaUjkUWmYfvYGgWgKiMhgi50ws0VhNNqzBwQ2WzDkas="; 15 15 16 16 proxyVendor = true; 17 17
+3 -2
pkgs/development/tools/xcodes/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "xcodes"; 5 - version = "1.3.0"; 5 + version = "1.4.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/XcodesOrg/xcodes/releases/download/${finalAttrs.version}/xcodes.zip"; 9 - hash = "sha256:0cqb0gfb80xrnm4fipr46kbzqz2kicc13afhdxkbifzm4k83any5"; 9 + hash = "sha256-PtXF2eqNfEX29EtXlcjdxrUs7BPn/YurUuFFeLpXwrk="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip ]; ··· 31 31 dontFixup = true; 32 32 33 33 meta = with lib; { 34 + changelog = "https://github.com/XcodesOrg/xcodes/releases/tag/${finalAttrs.version}"; 34 35 description = "Command-line tool to install and switch between multiple versions of Xcode"; 35 36 homepage = "https://github.com/XcodesOrg/xcodes"; 36 37 license = licenses.mit;
+2 -3
pkgs/games/rare/default.nix
··· 13 13 14 14 buildPythonApplication rec { 15 15 pname = "rare"; 16 - version = "1.9.4"; 16 + version = "1.10.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "Dummerle"; 20 20 repo = "Rare"; 21 21 rev = "refs/tags/${version}"; 22 - sha256 = "sha256-+STwVsDdvjP7HaqmaQVug+6h0n0rw/j4LGQQSNdLVQQ="; 22 + hash = "sha256-7KER9gCpqjEKikQTVHsvwX6efCb9L0ut6OBjjLBW2tI="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ ··· 36 36 ]; 37 37 38 38 patches = [ 39 - ./fix-instance.patch 40 39 # Not able to run pythonRelaxDepsHook because of https://github.com/NixOS/nixpkgs/issues/198342 41 40 ./legendary-gl-version.patch 42 41 ];
-10
pkgs/games/rare/fix-instance.patch
··· 1 - diff --git a/rare/utils/misc.py b/rare/utils/misc.py 2 - index 4492074..5352dac 100644 3 - --- a/rare/utils/misc.py 4 - +++ b/rare/utils/misc.py 5 - @@ -190,6 +190,7 @@ def get_rare_executable() -> List[str]: 6 - executable = [sys.executable] 7 - 8 - executable[0] = os.path.abspath(executable[0]) 9 - + executable.pop(0) 10 - return executable
+2 -2
pkgs/games/rare/legendary-gl-version.patch
··· 6 6 7 7 requirements = [ 8 8 "requests<3.0", 9 - - "legendary-gl==0.20.31", 10 - + "legendary-gl~=0.20.31", 9 + - "legendary-gl==0.20.32", 10 + + "legendary-gl~=0.20.32", 11 11 "setuptools", 12 12 "wheel", 13 13 "PyQt5",
+31
pkgs/misc/lssecret/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , pkg-config 5 + , libsecret 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + name = "lssecret"; 10 + version = "unstable-2022-12-02"; 11 + 12 + src = fetchFromGitLab { 13 + owner = "GrantMoyer"; 14 + repo = name; 15 + rev = "20fd771a"; 16 + hash = "sha256-yU70WZj4EC/sFJxyq2SQ0YQ6RCQHYiW/aQiYWo7+ujk="; 17 + }; 18 + 19 + nativeBuildInputs = [ pkg-config ]; 20 + buildInputs = [ libsecret ]; 21 + 22 + makeFlags = ["DESTDIR=$(out)"]; 23 + 24 + meta = { 25 + description = "A tool to list passwords and other secrets stored using the org.freedesktop.secrets dbus api"; 26 + homepage = "https://gitlab.com/GrantMoyer/lssecret"; 27 + license = lib.licenses.unlicense; 28 + maintainers = with lib.maintainers; [ genericnerdyusername ]; 29 + platforms = lib.platforms.unix; 30 + }; 31 + }
+1
pkgs/tools/games/trigger-control/default.nix
··· 64 64 homepage = "https://github.com/Etaash-mathamsetty/trigger-control"; 65 65 license = licenses.mit; 66 66 maintainers = with maintainers; [ azuwis ]; 67 + platforms = platforms.all; 67 68 }; 68 69 }
+36
pkgs/tools/misc/hashpump/default.nix
··· 1 + { stdenv, fetchFromGitHub, openssl, lib }: 2 + 3 + stdenv.mkDerivation (finalAttrs: { 4 + pname = "hashpump"; 5 + version = "1.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "bwall"; 9 + repo = "HashPump"; 10 + rev = "v${finalAttrs.version}"; 11 + hash = "sha256-xL/1os17agwFtdq0snS3ZJzwJhk22ujxfWLH65IMMEM="; 12 + }; 13 + 14 + makeFlags = [ "INSTALLLOCATION=${placeholder "out"}/bin/" ]; 15 + 16 + buildInputs = [ openssl ]; 17 + 18 + doCheck = true; 19 + checkPhase = '' 20 + runHook preCheck 21 + ./hashpump --test 22 + runHook postCheck 23 + ''; 24 + 25 + preInstall = '' 26 + mkdir -p $out/bin 27 + ''; 28 + 29 + meta = { 30 + description = "A tool to exploit the hash length extension attack in various hashing algorithms"; 31 + homepage = "https://github.com/bwall/HashPump"; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ t4ccer ]; 34 + platforms = lib.platforms.linux; 35 + }; 36 + })
+3 -3
pkgs/tools/misc/shopware-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "shopware-cli"; 11 - version = "0.2.0"; 11 + version = "0.2.1"; 12 12 src = fetchFromGitHub { 13 13 repo = "shopware-cli"; 14 14 owner = "FriendsOfShopware"; 15 15 rev = version; 16 - hash = "sha256-IWp4cgZd6td2hOMd2r4v3MI5kY1PqLhLGAIJ3VLvgEA="; 16 + hash = "sha256-3upZmqsKCg98j/HTwFp0L7MMspCw7Dj6dRoyEPW287k="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ installShellFiles makeWrapper ]; 20 20 21 - vendorHash = "sha256-JTjz39zw5Il37V6V7mOQuCYiPJnnizBhkBHBAg2DvSU="; 21 + vendorHash = "sha256-KEWACwZka4WMQS4/O6WkIdeeUnxtcpEwQmMlNBLUjbI="; 22 22 23 23 postInstall = '' 24 24 export HOME="$(mktemp -d)"
+5 -3
pkgs/tools/networking/ooniprobe-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ooniprobe-cli"; 8 - version = "3.17.5"; 8 + version = "3.18.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "ooni"; 12 12 repo = "probe-cli"; 13 13 rev = "v${version}"; 14 - hash = "sha256-pzNcyioicAOCAWaEo30T/Dr74sJ1kXvJN0pnuA2JJ7k="; 14 + hash = "sha256-3KnPqUB9vNxIWF28BGZqqg1IwglHOP2qAZfDMaNcN7s="; 15 15 }; 16 16 17 - vendorHash = "sha256-e8FI678zr6EWKd+rOvPOyq20PJyaXszzcooDFuGWfOU="; 17 + vendorHash = "sha256-iMEmTip9c7ySFUxcKr8ZUuREw7FfBvsIhECvmagvVL0="; 18 18 19 19 subPackages = [ "cmd/ooniprobe" ]; 20 + 21 + ldflags = [ "-s" "-w" ]; 20 22 21 23 meta = with lib; { 22 24 changelog = "https://github.com/ooni/probe-cli/releases/tag/${src.rev}";
+48
pkgs/tools/package-management/fortran-fpm/default.nix
··· 1 + { lib 2 + , fetchurl 3 + , pkgs 4 + , stdenv 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "fortran-fpm"; 9 + 10 + version = "0.9.0"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/fortran-lang/fpm/releases/download/v${version}/fpm-${version}.F90"; 14 + sha256 = "sha256-VWs4g7odtv1iyZunFD8el+u0CXKcQgnwOqPG/JcMzj8="; 15 + }; 16 + 17 + dontUnpack = true; 18 + 19 + nativeBuildInputs = with pkgs; [ gfortran ]; 20 + 21 + buildPath = "build/bootstrap"; 22 + 23 + buildPhase = '' 24 + runHook preBuild 25 + 26 + mkdir -p ${buildPath} 27 + gfortran -J ${buildPath} -o ${buildPath}/${pname} $src 28 + 29 + runHook postBuild 30 + ''; 31 + 32 + installPhase = '' 33 + runHook preInstall 34 + 35 + mkdir -p $out/bin 36 + cp ${buildPath}/${pname} $out/bin 37 + 38 + runHook postInstall 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "Fortran Package Manager (fpm)"; 43 + homepage = "https://fpm.fortran-lang.org"; 44 + maintainers = [ maintainers.proofconstruction ]; 45 + license = licenses.mit; 46 + platforms = platforms.all; 47 + }; 48 + }
+2 -2
pkgs/tools/security/gotrue/supabase.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gotrue"; 10 - version = "2.74.2"; 10 + version = "2.76.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "supabase"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-cTRCwWbGqiN6qy2Nh9Hs6Ex928z1r1ud5dGNJLZDLAA="; 16 + hash = "sha256-2hhO/8PvrRoz2RoctoJdCMWn+DdBEni+AyoxkXLbgp0="; 17 17 }; 18 18 19 19 vendorHash = "sha256-uLcea5tLe61oAyw09PpIfgf1xbClgqZYlk6553Vsvso=";
+10 -7
pkgs/tools/security/rnp/default.nix
··· 10 10 , json_c 11 11 , pkg-config 12 12 , python3 13 + , sexp 13 14 , zlib 14 15 }: 15 16 16 - stdenv.mkDerivation rec { 17 + stdenv.mkDerivation (finalAttrs: { 17 18 pname = "rnp"; 18 - version = "0.16.3"; 19 + version = "0.17.0"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "rnpgp"; 22 23 repo = "rnp"; 23 - rev = "v${version}"; 24 - sha256 = "sha256-kM3gBc5rbLJU7UXvWz4a9c+Ahi/d0z8R9S5t0B9Fts0="; 24 + rev = "v${finalAttrs.version}"; 25 + hash = "sha256-4fB7Sl9+ATrJTRnhbNG5BoW3XLxR7IP167RK96+gxj0="; 25 26 }; 26 27 27 - buildInputs = [ zlib bzip2 json_c botan2 ]; 28 + buildInputs = [ zlib bzip2 json_c botan2 sexp ]; 29 + 30 + patches = [ ./unbundle-sexp.patch ]; 28 31 29 32 cmakeFlags = [ 30 33 "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}" ··· 43 46 outputs = [ "out" "lib" "dev" ]; 44 47 45 48 preConfigure = '' 46 - echo "v${version}" > version.txt 49 + echo "v${finalAttrs.version}" > version.txt 47 50 ''; 48 51 49 52 meta = with lib; { ··· 53 56 platforms = platforms.all; 54 57 maintainers = with maintainers; [ ribose-jeffreylau ]; 55 58 }; 56 - } 59 + })
+38
pkgs/tools/security/rnp/unbundle-sexp.patch
··· 1 + diff --git i/CMakeLists.txt w/CMakeLists.txt 2 + index bb6d40cb..30171e7c 100644 3 + --- i/CMakeLists.txt 4 + +++ w/CMakeLists.txt 5 + @@ -176,11 +176,6 @@ if (ENABLE_FUZZERS) 6 + endif() 7 + add_subdirectory(src/common) 8 + 9 + -set(WITH_SEXP_CLI OFF) 10 + -set(WITH_SEXP_TESTS OFF) 11 + -set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME development) 12 + -add_subdirectory(src/libsexp EXCLUDE_FROM_ALL) 13 + - 14 + add_subdirectory(src/lib) 15 + add_subdirectory(src/rnp) 16 + add_subdirectory(src/rnpkeys) 17 + diff --git i/src/lib/CMakeLists.txt w/src/lib/CMakeLists.txt 18 + index 086ac57d..b219ef06 100755 19 + --- i/src/lib/CMakeLists.txt 20 + +++ w/src/lib/CMakeLists.txt 21 + @@ -433,7 +433,7 @@ install(TARGETS librnp 22 + COMPONENT development 23 + ) 24 + 25 + - install(TARGETS librnp-static sexp 26 + + install(TARGETS librnp-static 27 + EXPORT rnp-targets 28 + ARCHIVE 29 + DESTINATION "${CMAKE_INSTALL_LIBDIR}" 30 + @@ -441,7 +441,7 @@ install(TARGETS librnp 31 + ) 32 + else(BUILD_SHARED_LIBS) 33 + # static libraries only 34 + -install(TARGETS librnp sexp 35 + +install(TARGETS librnp 36 + EXPORT rnp-targets 37 + ARCHIVE 38 + DESTINATION "${CMAKE_INSTALL_LIBDIR}"
+3 -3
pkgs/tools/text/asciigraph/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "asciigraph"; 5 - version = "0.5.5"; 5 + version = "0.5.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "guptarohit"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7sobelRCDY8mC5FYyGZmNsvUsEMxRulqPnUucNRN5J8="; 11 + sha256 = "sha256-ZmH0+UXPUyO90ZI6YsKiTd6Nf8dgZAgm7Qx8PVUkHAU="; 12 12 }; 13 13 14 - vendorSha256 = null; 14 + vendorHash = null; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+3 -2
pkgs/tools/virtualization/cloud-init/default.nix
··· 16 16 17 17 python3.pkgs.buildPythonApplication rec { 18 18 pname = "cloud-init"; 19 - version = "23.2"; 19 + version = "23.2.1"; 20 20 namePrefix = ""; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "canonical"; 24 24 repo = "cloud-init"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-/bhezXS5GunlgID7e/QaTC4UsQ2hDvS5HnG8Wphk64k="; 26 + hash = "sha256-2e05ExF6JOeFR0BUd/iCIYV0XoKTgoI7xz20GQ/bmO4="; 27 27 }; 28 28 29 29 patches = [ ··· 127 127 meta = with lib; { 128 128 homepage = "https://github.com/canonical/cloud-init"; 129 129 description = "Provides configuration and customization of cloud instance"; 130 + changelog = "https://github.com/canonical/cloud-init/raw/${version}/ChangeLog"; 130 131 license = with licenses; [ asl20 gpl3Plus ]; 131 132 maintainers = with maintainers; [ illustris jfroche ]; 132 133 platforms = platforms.all;
+16 -4
pkgs/top-level/all-packages.nix
··· 2065 2065 inherit (darwin.apple_sdk.frameworks) Security; 2066 2066 }; 2067 2067 2068 + git-graph = callPackage ../applications/version-management/git-graph { }; 2069 + 2068 2070 git-hound = callPackage ../applications/version-management/git-hound { }; 2069 2071 2070 2072 git-hub = callPackage ../applications/version-management/git-hub { }; ··· 5521 5523 5522 5524 long-shebang = callPackage ../misc/long-shebang { }; 5523 5525 5526 + lssecret = callPackage ../misc/lssecret {}; 5527 + 5524 5528 lowdown = callPackage ../tools/typesetting/lowdown { }; 5525 5529 5526 5530 numatop = callPackage ../os-specific/linux/numatop { }; ··· 7836 7840 7837 7841 forktty = callPackage ../os-specific/linux/forktty { }; 7838 7842 7843 + fortran-fpm = callPackage ../tools/package-management/fortran-fpm { }; 7844 + 7839 7845 fortune = callPackage ../tools/misc/fortune { }; 7840 7846 7841 7847 fox = callPackage ../development/libraries/fox { ··· 10951 10957 10952 10958 onlykey = callPackage ../tools/security/onlykey { node_webkit = nwjs; }; 10953 10959 10954 - ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { 10955 - buildGoModule = buildGo119Module; # go 1.20 build failure 10956 - }; 10960 + ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { }; 10957 10961 10958 10962 openapi-generator-cli = callPackage ../tools/networking/openapi-generator-cli { jre = pkgs.jre_headless; }; 10959 10963 openapi-generator-cli-unstable = callPackage ../tools/networking/openapi-generator-cli/unstable.nix { jre = pkgs.jre_headless; }; ··· 11656 11660 11657 11661 profile-sync-daemon = callPackage ../tools/misc/profile-sync-daemon { }; 11658 11662 11663 + projectable = callPackage ../applications/file-managers/projectable { }; 11664 + 11659 11665 projectlibre = callPackage ../applications/misc/projectlibre { 11660 11666 jre = jre8; 11661 11667 jdk = jdk8; ··· 29787 29793 29788 29794 cheesecutter = callPackage ../applications/audio/cheesecutter { }; 29789 29795 29796 + cutecapture = callPackage ../applications/video/cutecapture { }; 29797 + 29790 29798 milkytracker = callPackage ../applications/audio/milkytracker { }; 29791 29799 29792 29800 ptcollab = libsForQt5.callPackage ../applications/audio/ptcollab { }; ··· 39451 39459 39452 39460 gummy = callPackage ../tools/misc/gummy { }; 39453 39461 39462 + hashpump = callPackage ../tools/misc/hashpump { }; 39463 + 39454 39464 hck = callPackage ../tools/text/hck { }; 39455 39465 39456 39466 helm = callPackage ../applications/audio/helm { }; ··· 39831 39841 39832 39842 alejandra = callPackage ../tools/nix/alejandra { }; 39833 39843 39834 - nixfmt = haskell.lib.compose.justStaticExecutables haskellPackages.nixfmt; 39844 + nixfmt = haskellPackages.nixfmt.bin; 39835 39845 39836 39846 nixpkgs-fmt = callPackage ../tools/nix/nixpkgs-fmt { }; 39837 39847 ··· 41106 41116 reindeer = callPackage ../development/tools/reindeer { }; 41107 41117 41108 41118 charasay = callPackage ../tools/misc/charasay { }; 41119 + 41120 + waylyrics = callPackage ../applications/audio/waylyrics { }; 41109 41121 }
-27
pkgs/top-level/haskell-packages.nix
··· 28 28 "ghc945" 29 29 "ghc94" 30 30 "ghc96" 31 - "ghc961" 32 31 "ghc962" 33 32 "ghcHEAD" 34 33 ]; ··· 48 47 "ghc944" 49 48 "ghc945" 50 49 "ghc96" 51 - "ghc961" 52 50 "ghc962" 53 51 "ghcHEAD" 54 52 ]; ··· 350 348 llvmPackages = pkgs.llvmPackages_12; 351 349 }; 352 350 ghc94 = ghc945; 353 - ghc961 = callPackage ../development/compilers/ghc/9.6.1.nix { 354 - bootPkgs = 355 - # For GHC 9.2 no armv7l bindists are available. 356 - if stdenv.hostPlatform.isAarch32 then 357 - packages.ghc924 358 - else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then 359 - packages.ghc924 360 - else if stdenv.isAarch64 then 361 - packages.ghc924BinaryMinimal 362 - else 363 - packages.ghc924Binary; 364 - inherit (buildPackages.python3Packages) sphinx; 365 - # Need to use apple's patched xattr until 366 - # https://github.com/xattr/xattr/issues/44 and 367 - # https://github.com/xattr/xattr/issues/55 are solved. 368 - inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; 369 - # Support range >= 10 && < 15 370 - buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_14; 371 - llvmPackages = pkgs.llvmPackages_14; 372 - }; 373 351 ghc962 = callPackage ../development/compilers/ghc/9.6.2.nix { 374 352 bootPkgs = 375 353 # For GHC 9.2 no armv7l bindists are available. ··· 553 531 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { }; 554 532 }; 555 533 ghc94 = ghc945; 556 - ghc961 = callPackage ../development/haskell-modules { 557 - buildHaskellPackages = bh.packages.ghc961; 558 - ghc = bh.compiler.ghc961; 559 - compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.6.x.nix { }; 560 - }; 561 534 ghc962 = callPackage ../development/haskell-modules { 562 535 buildHaskellPackages = bh.packages.ghc962; 563 536 ghc = bh.compiler.ghc962;
+3
pkgs/top-level/python-aliases.nix
··· 211 211 pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23 212 212 pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20 213 213 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 214 + pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20 214 215 PyGithub = pygithub; # added 2023-02-19 215 216 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15 216 217 pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 ··· 250 251 PyStemmer = pystemmer; # added 2023-02-19 251 252 pytest_6 = pytest; # added 2022-02-10 252 253 pytestcov = pytest-cov; # added 2021-01-04 254 + pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22 253 255 pytest-pep8 = pytestpep8; # added 2021-01-04 254 256 pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12 255 257 pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09 258 + pytest-sanic = throw "pytest-sanic has been removed because it is unmaintained and broken"; # added 2023-06-22 256 259 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 257 260 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 258 261 pytestrunner = pytest-runner; # added 2021-01-04
+12 -8
pkgs/top-level/python-packages.nix
··· 1326 1326 1327 1327 binwalk-full = self.binwalk.override { visualizationSupport = true; }; 1328 1328 1329 + biopandas = callPackage ../development/python-modules/biopandas { }; 1330 + 1329 1331 biopython = callPackage ../development/python-modules/biopython { }; 1330 1332 1331 1333 biplist = callPackage ../development/python-modules/biplist { }; ··· 1860 1862 cjkwrap = callPackage ../development/python-modules/cjkwrap { }; 1861 1863 1862 1864 ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { }; 1865 + 1866 + clarifai = callPackage ../development/python-modules/clarifai { }; 1867 + 1868 + clarifai-grpc = callPackage ../development/python-modules/clarifai-grpc { }; 1863 1869 1864 1870 claripy = callPackage ../development/python-modules/claripy { }; 1865 1871 ··· 6113 6119 6114 6120 marshmallow-sqlalchemy = callPackage ../development/python-modules/marshmallow-sqlalchemy { }; 6115 6121 6122 + mashumaro = callPackage ../development/python-modules/mashumaro { }; 6123 + 6116 6124 mask-rcnn = callPackage ../development/python-modules/mask-rcnn { }; 6117 6125 6118 6126 masky = callPackage ../development/python-modules/masky { }; ··· 6392 6400 mmh3 = callPackage ../development/python-modules/mmh3 { }; 6393 6401 6394 6402 mmpython = callPackage ../development/python-modules/mmpython { }; 6403 + 6404 + mmtf-python = callPackage ../development/python-modules/mmtf-python { }; 6395 6405 6396 6406 mnemonic = callPackage ../development/python-modules/mnemonic { }; 6397 6407 ··· 8692 8702 8693 8703 pygatt = callPackage ../development/python-modules/pygatt { }; 8694 8704 8695 - pygbm = callPackage ../development/python-modules/pygbm { }; 8696 - 8697 8705 pygccxml = callPackage ../development/python-modules/pygccxml { }; 8698 8706 8699 8707 pygdbmi = callPackage ../development/python-modules/pygdbmi { }; ··· 9741 9749 9742 9750 pytest-order = callPackage ../development/python-modules/pytest-order { }; 9743 9751 9744 - pytest-ordering = callPackage ../development/python-modules/pytest-ordering { }; 9745 - 9746 9752 pytest-param-files = callPackage ../development/python-modules/pytest-param-files { }; 9747 9753 9748 9754 pytest-playwright = callPackage ../development/python-modules/pytest-playwright {}; ··· 9782 9788 pytest-resource-path = callPackage ../development/python-modules/pytest-resource-path { }; 9783 9789 9784 9790 pytest-runner = callPackage ../development/python-modules/pytest-runner { }; 9785 - 9786 - pytest-sanic = callPackage ../development/python-modules/pytest-sanic { 9787 - sanic = self.sanic.override { doCheck = false; }; 9788 - }; 9789 9791 9790 9792 pytest-server-fixtures = callPackage ../development/python-modules/pytest-server-fixtures { }; 9791 9793 ··· 13214 13216 wiffi = callPackage ../development/python-modules/wiffi { }; 13215 13217 13216 13218 wifi = callPackage ../development/python-modules/wifi { }; 13219 + 13220 + wikipedia = callPackage ../development/python-modules/wikipedia { }; 13217 13221 13218 13222 willow = callPackage ../development/python-modules/willow { }; 13219 13223
-8
pkgs/top-level/release-haskell.nix
··· 69 69 ghc927 70 70 ghc928 71 71 ghc945 72 - ghc961 73 72 ghc962 74 73 ]; 75 74 ··· 487 486 Cabal_3_10_1_0 = released; 488 487 Cabal-syntax_3_10_1_0 = released; 489 488 cabal2nix = lib.subtractLists [ 490 - compilerNames.ghc961 491 489 compilerNames.ghc962 492 490 ] released; 493 491 cabal2nix-unstable = lib.subtractLists [ 494 - compilerNames.ghc961 495 492 compilerNames.ghc962 496 493 ] released; 497 494 funcmp = lib.subtractLists [ 498 - compilerNames.ghc961 499 495 compilerNames.ghc962 500 496 ] released; 501 497 haskell-language-server = lib.subtractLists [ ··· 503 499 compilerNames.ghc884 504 500 ] released; 505 501 hoogle = lib.subtractLists [ 506 - compilerNames.ghc961 507 502 compilerNames.ghc962 508 503 ] released; 509 504 hlint = lib.subtractLists [ 510 - compilerNames.ghc961 511 505 compilerNames.ghc962 512 506 ] released; 513 507 hpack = lib.subtractLists [ 514 - compilerNames.ghc961 515 508 compilerNames.ghc962 516 509 ] released; 517 510 hsdns = released; 518 511 jailbreak-cabal = released; 519 512 language-nix = lib.subtractLists [ 520 - compilerNames.ghc961 521 513 compilerNames.ghc962 522 514 ] released; 523 515 nix-paths = released;