Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 9d424dbc 4f746003

+2937 -1527
+12
maintainers/maintainer-list.nix
··· 5884 5884 githubId = 54999; 5885 5885 name = "Ariel Nunez"; 5886 5886 }; 5887 + iopq = { 5888 + email = "iop_jr@yahoo.com"; 5889 + github = "iopq"; 5890 + githubId = 1817528; 5891 + name = "Igor Polyakov"; 5892 + }; 5887 5893 irenes = { 5888 5894 name = "Irene Knapp"; 5889 5895 email = "ireneista@gmail.com"; ··· 13304 13310 github = "tasmo"; 13305 13311 githubId = 102685; 13306 13312 name = "Thomas Friese"; 13313 + }; 13314 + taylor1791 = { 13315 + email = "nixpkgs@tayloreverding.com"; 13316 + github = "taylor1791"; 13317 + githubId = 555003; 13318 + name = "Taylor Everding"; 13307 13319 }; 13308 13320 tazjin = { 13309 13321 email = "mail@tazj.in";
+9
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 191 191 </listitem> 192 192 <listitem> 193 193 <para> 194 + [xray] (https://github.com/XTLS/Xray-core), a fully compatible 195 + v2ray-core replacement. Features XTLS, which when enabled on 196 + server and client, brings UDP FullCone NAT to proxy setups. 197 + Available as 198 + <link xlink:href="options.html#opt-services.xray.enable">services.xray</link>. 199 + </para> 200 + </listitem> 201 + <listitem> 202 + <para> 194 203 <link xlink:href="https://github.com/mozilla-services/syncstorage-rs">syncstorage-rs</link>, 195 204 a self-hostable sync server for Firefox. Available as 196 205 <link xlink:href="options.html#opt-services.firefox-syncserver.enable">services.firefox-syncserver</link>.
+3
nixos/doc/manual/release-notes/rl-2211.section.md
··· 71 71 ## New Services {#sec-release-22.11-new-services} 72 72 73 73 - [appvm](https://github.com/jollheef/appvm), Nix based app VMs. Available as [virtualisation.appvm](options.html#opt-virtualisation.appvm.enable). 74 + 75 + - [xray] (https://github.com/XTLS/Xray-core), a fully compatible v2ray-core replacement. Features XTLS, which when enabled on server and client, brings UDP FullCone NAT to proxy setups. Available as [services.xray](options.html#opt-services.xray.enable). 76 + 74 77 - [syncstorage-rs](https://github.com/mozilla-services/syncstorage-rs), a self-hostable sync server for Firefox. Available as [services.firefox-syncserver](options.html#opt-services.firefox-syncserver.enable). 75 78 76 79 - [dragonflydb](https://dragonflydb.io/), a modern replacement for Redis and Memcached. Available as [services.dragonflydb](#opt-services.dragonflydb.enable).
+1
nixos/modules/module-list.nix
··· 991 991 ./services/networking/xinetd.nix 992 992 ./services/networking/xl2tpd.nix 993 993 ./services/networking/x2goserver.nix 994 + ./services/networking/xray.nix 994 995 ./services/networking/xrdp.nix 995 996 ./services/networking/yggdrasil.nix 996 997 ./services/networking/zerobin.nix
+3 -2
nixos/modules/services/continuous-integration/jenkins/job-builder.nix
··· 30 30 }; 31 31 32 32 accessUser = mkOption { 33 - default = ""; 33 + default = "admin"; 34 34 type = types.str; 35 35 description = lib.mdDoc '' 36 36 User id in Jenkins used to reload config. ··· 48 48 }; 49 49 50 50 accessTokenFile = mkOption { 51 - default = ""; 51 + default = "${config.services.jenkins.home}/secrets/initialAdminPassword"; 52 + defaultText = literalExpression ''"''${config.services.jenkins.home}/secrets/initialAdminPassword"''; 52 53 type = types.str; 53 54 example = "/run/keys/jenkins-job-builder-access-token"; 54 55 description = lib.mdDoc ''
+4 -2
nixos/modules/services/hardware/udev.nix
··· 192 192 ###### interface 193 193 194 194 options = { 195 - 196 195 boot.hardwareScan = mkOption { 197 196 type = types.bool; 198 197 default = true; ··· 205 204 }; 206 205 207 206 services.udev = { 207 + enable = mkEnableOption (lib.mdDoc "udev") // { 208 + default = true; 209 + }; 208 210 209 211 packages = mkOption { 210 212 type = types.listOf types.path; ··· 345 347 346 348 ###### implementation 347 349 348 - config = mkIf (!config.boot.isContainer) { 350 + config = mkIf cfg.enable { 349 351 350 352 services.udev.extraRules = nixosRules; 351 353
+96
nixos/modules/services/networking/xray.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + { 6 + options = { 7 + 8 + services.xray = { 9 + enable = mkOption { 10 + type = types.bool; 11 + default = false; 12 + description = lib.mdDoc '' 13 + Whether to run xray server. 14 + 15 + Either `settingsFile` or `settings` must be specified. 16 + ''; 17 + }; 18 + 19 + package = mkOption { 20 + type = types.package; 21 + default = pkgs.xray; 22 + defaultText = literalExpression "pkgs.xray"; 23 + description = lib.mdDoc '' 24 + Which xray package to use. 25 + ''; 26 + }; 27 + 28 + settingsFile = mkOption { 29 + type = types.nullOr types.path; 30 + default = null; 31 + example = "/etc/xray/config.json"; 32 + description = lib.mdDoc '' 33 + The absolute path to the configuration file. 34 + 35 + Either `settingsFile` or `settings` must be specified. 36 + 37 + See <https://www.v2fly.org/en_US/config/overview.html>. 38 + ''; 39 + }; 40 + 41 + settings = mkOption { 42 + type = types.nullOr (types.attrsOf types.unspecified); 43 + default = null; 44 + example = { 45 + inbounds = [{ 46 + port = 1080; 47 + listen = "127.0.0.1"; 48 + protocol = "http"; 49 + }]; 50 + outbounds = [{ 51 + protocol = "freedom"; 52 + }]; 53 + }; 54 + description = lib.mdDoc '' 55 + The configuration object. 56 + 57 + Either `settingsFile` or `settings` must be specified. 58 + 59 + See <https://www.v2fly.org/en_US/config/overview.html>. 60 + ''; 61 + }; 62 + }; 63 + 64 + }; 65 + 66 + config = let 67 + cfg = config.services.xray; 68 + settingsFile = if cfg.settingsFile != null 69 + then cfg.settingsFile 70 + else pkgs.writeTextFile { 71 + name = "xray.json"; 72 + text = builtins.toJSON cfg.settings; 73 + checkPhase = '' 74 + ${cfg.package}/bin/xray -test -config $out 75 + ''; 76 + }; 77 + 78 + in mkIf cfg.enable { 79 + assertions = [ 80 + { 81 + assertion = (cfg.settingsFile == null) != (cfg.settings == null); 82 + message = "Either but not both `settingsFile` and `settings` should be specified for xray."; 83 + } 84 + ]; 85 + 86 + systemd.services.xray = { 87 + description = "xray Daemon"; 88 + after = [ "network.target" ]; 89 + wantedBy = [ "multi-user.target" ]; 90 + serviceConfig = { 91 + DynamicUser = true; 92 + ExecStart = "${cfg.package}/bin/xray -config ${settingsFile}"; 93 + }; 94 + }; 95 + }; 96 + }
+7 -7
nixos/modules/services/web-apps/healthchecks.nix
··· 15 15 16 16 environmentFile = pkgs.writeText "healthchecks-environment" (lib.generators.toKeyValue { } environment); 17 17 18 - healthchecksManageScript = with pkgs; (writeShellScriptBin "healthchecks-manage" '' 18 + healthchecksManageScript = pkgs.writeShellScriptBin "healthchecks-manage" '' 19 + sudo=exec 19 20 if [[ "$USER" != "${cfg.user}" ]]; then 20 - echo "please run as user 'healtchecks'." >/dev/stderr 21 - exit 1 21 + sudo='exec /run/wrappers/bin/sudo -u ${cfg.user} --preserve-env --preserve-env=PYTHONPATH' 22 22 fi 23 - export $(cat ${environmentFile} | xargs); 24 - exec ${pkg}/opt/healthchecks/manage.py "$@" 25 - ''); 23 + export $(cat ${environmentFile} | xargs) 24 + $sudo ${pkg}/opt/healthchecks/manage.py "$@" 25 + ''; 26 26 in 27 27 { 28 28 options.services.healthchecks = { ··· 163 163 WorkingDirectory = cfg.dataDir; 164 164 User = cfg.user; 165 165 Group = cfg.group; 166 - EnvironmentFile = environmentFile; 166 + EnvironmentFile = [ environmentFile ]; 167 167 StateDirectory = mkIf (cfg.dataDir == "/var/lib/healthchecks") "healthchecks"; 168 168 StateDirectoryMode = mkIf (cfg.dataDir == "/var/lib/healthchecks") "0750"; 169 169 };
+3
nixos/modules/virtualisation/container-config.nix
··· 16 16 # Containers should be light-weight, so start sshd on demand. 17 17 services.openssh.startWhenNeeded = mkDefault true; 18 18 19 + # containers do not need to setup devices 20 + services.udev.enable = false; 21 + 19 22 # Shut up warnings about not having a boot loader. 20 23 system.build.installBootLoader = lib.mkDefault "${pkgs.coreutils}/bin/true"; 21 24
-2
nixos/tests/jenkins.nix
··· 18 18 enable = true; 19 19 jobBuilder = { 20 20 enable = true; 21 - accessUser = "admin"; 22 - accessTokenFile = "/var/lib/jenkins/secrets/initialAdminPassword"; 23 21 nixJobs = [ 24 22 { job = { 25 23 name = "job-1";
+3 -3
nixos/tests/web-apps/healthchecks.nix
··· 33 33 ) 34 34 35 35 with subtest("Manage script works"): 36 - # Should fail if not called by healthchecks user 37 - machine.fail("echo 'print(\"foo\")' | healthchecks-manage help") 38 - 39 36 # "shell" sucommand should succeed, needs python in PATH. 40 37 assert "foo\n" == machine.succeed("echo 'print(\"foo\")' | sudo -u healthchecks healthchecks-manage shell") 38 + 39 + # Shouldn't fail if not called by healthchecks user 40 + assert "foo\n" == machine.succeed("echo 'print(\"foo\")' | healthchecks-manage shell") 41 41 ''; 42 42 })
+2 -2
pkgs/applications/audio/cider/default.nix
··· 2 2 3 3 appimageTools.wrapType2 rec { 4 4 pname = "cider"; 5 - version = "1.5.6"; 5 + version = "1.5.7"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/ciderapp/cider-releases/releases/download/v${version}/Cider-${version}.AppImage"; 9 - sha256 = "sha256-gn0dRoPPolujZ1ukuo/esSLwbhiPdcknIe9+W6iRaYw="; 9 + sha256 = "sha256-fWpt7YxqEDa1U4CwyVZwgbiwe0lrh64v0cJG9pbNMUU="; 10 10 }; 11 11 12 12 extraInstallCommands =
+2 -2
pkgs/applications/audio/tagger/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "tagger"; 21 - version = "2022.10.4"; 21 + version = "2022.10.5"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "nlogozzo"; 25 25 repo = "NickvisionTagger"; 26 26 rev = version; 27 - hash = "sha256-I4jhlz/dmS24nszP755xlYMF6aLhmAxlv6Td4xFbr3U="; 27 + hash = "sha256-rkpeecJUOBom0clrwftBa/VxACTihfMfWVmfbZhMQ50="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+20 -12
pkgs/applications/blockchains/zcash/default.nix
··· 1 - { autoreconfHook, boost179, cargo, coreutils, curl, cxx-rs, db62, fetchFromGitHub 2 - , hexdump, lib, libevent, libsodium, makeWrapper, rust, rustPlatform, pkg-config 3 - , stdenv, testers, utf8cpp, util-linux, zcash, zeromq 1 + { autoreconfHook, boost180, cargo, coreutils, curl, cxx-rs, db62, fetchFromGitHub 2 + , hexdump, hostPlatform, lib, libevent, libsodium, makeWrapper, rust, rustPlatform 3 + , pkg-config, Security, stdenv, testers, utf8cpp, util-linux, zcash, zeromq 4 4 }: 5 5 6 6 rustPlatform.buildRustPackage.override { inherit stdenv; } rec { 7 7 pname = "zcash"; 8 - version = "5.1.0"; 8 + version = "5.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "zcash"; 12 12 repo = "zcash"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-tU6DuWpe8Vlx0qIilAKWuO7WFp1ucbxtvOxoWLA0gdc="; 14 + hash = "sha256-mlABKZDYYC3y+KlXQVFqdcm46m8K9tbOCqk4lM4shp8="; 15 15 }; 16 16 17 17 prePatch = lib.optionalString stdenv.isAarch64 '' ··· 20 20 --replace "linker = \"aarch64-linux-gnu-gcc\"" "" 21 21 ''; 22 22 23 - patches = [ 24 - ./patches/fix-missing-header.patch 25 - ]; 26 - 27 - cargoSha256 = "sha256-ZWmkveDEENdXRirGmnUWSjtPNJvX0Jpgfxhzk44F7Q0="; 23 + cargoHash = "sha256-6uhtOaBsgMw59Dy6yivZYUEWDsYfpInA7VmJrqxDS/4="; 28 24 29 25 nativeBuildInputs = [ autoreconfHook cargo cxx-rs hexdump makeWrapper pkg-config ]; 30 26 31 - buildInputs = [ boost179 db62 libevent libsodium utf8cpp zeromq ]; 27 + buildInputs = [ 28 + boost180 29 + db62 30 + libevent 31 + libsodium 32 + utf8cpp 33 + zeromq 34 + ] ++ lib.optionals stdenv.isDarwin [ 35 + Security 36 + ]; 32 37 33 38 # Use the stdenv default phases (./configure; make) instead of the 34 39 # ones from buildRustPackage. ··· 50 55 51 56 configureFlags = [ 52 57 "--disable-tests" 53 - "--with-boost-libdir=${lib.getLib boost179}/lib" 58 + "--with-boost-libdir=${lib.getLib boost180}/lib" 54 59 "RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}" 55 60 ]; 56 61 ··· 75 80 homepage = "https://z.cash/"; 76 81 maintainers = with maintainers; [ rht tkerber centromere ]; 77 82 license = licenses.mit; 83 + 84 + # https://github.com/zcash/zcash/issues/4405 85 + broken = hostPlatform.isAarch64 && hostPlatform.isDarwin; 78 86 }; 79 87 }
-10
pkgs/applications/blockchains/zcash/patches/fix-missing-header.patch
··· 1 - --- a/src/uint256.h 2022-07-20 10:07:39.191319302 +0000 2 - +++ b/src/uint256.h 2022-07-20 10:07:11.809632293 +0000 3 - @@ -7,6 +7,7 @@ 4 - #ifndef BITCOIN_UINT256_H 5 - #define BITCOIN_UINT256_H 6 - 7 - +#include <array> 8 - #include <assert.h> 9 - #include <cstring> 10 - #include <stdexcept>
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 1469 1469 mktplcRef = { 1470 1470 name = "nix-ide"; 1471 1471 publisher = "jnoortheen"; 1472 - version = "0.1.23"; 1473 - sha256 = "sha256-64gwwajfgniVzJqgVLK9b8PfkNG5mk1W+qewKL7Dv0Q="; 1472 + version = "0.2.1"; 1473 + sha256 = "sha256-yC4ybThMFA2ncGhp8BYD7IrwYiDU3226hewsRvJYKy4="; 1474 1474 }; 1475 1475 meta = with lib; { 1476 1476 changelog = "https://marketplace.visualstudio.com/items/jnoortheen.nix-ide/changelog";
+31 -31
pkgs/applications/emulators/bochs/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 + , SDL2 5 + , curl 4 6 , docbook_xml_dtd_45 5 7 , docbook_xsl 8 + , gtk3 9 + , libGL 10 + , libGLU 11 + , libX11 12 + , libXpm 13 + , libobjc 6 14 , libtool 15 + , ncurses 7 16 , pkg-config 8 - , curl 9 17 , readline 10 18 , wget 11 - , libobjc 12 - , enableX11 ? !stdenv.isDarwin 13 - , libGL 14 - , libGLU 15 - , libX11 16 - , libXpm 17 - , enableSdl2 ? true 18 - , SDL2 19 + , wxGTK 20 + , enableSDL2 ? true 19 21 , enableTerm ? true 20 - , ncurses 21 22 , enableWx ? !stdenv.isDarwin 22 - , wxGTK 23 - , gtk3 23 + , enableX11 ? !stdenv.isDarwin 24 24 }: 25 25 26 26 stdenv.mkDerivation (finalAttrs: { ··· 28 28 version = "2.7"; 29 29 30 30 src = fetchurl { 31 - url = "mirror://sourceforge/project/${finalAttrs.pname}/${finalAttrs.pname}/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; 31 + url = "mirror://sourceforge/project/bochs/bochs/${finalAttrs.version}/bochs-${finalAttrs.version}.tar.gz"; 32 32 hash = "sha256-oBCrG/3HKsWgjS4kEs1HHA/r1mrx2TSbwNeWh53lsXo="; 33 33 }; 34 34 ··· 43 43 curl 44 44 readline 45 45 wget 46 - ] ++ lib.optionals stdenv.isDarwin [ 47 - libobjc 48 - ] ++ lib.optionals enableX11 [ 49 - libGL 50 - libGLU 51 - libX11 52 - libXpm 53 - ] ++ lib.optionals enableSdl2 [ 46 + ] ++ lib.optionals enableSDL2 [ 54 47 SDL2 55 48 ] ++ lib.optionals enableTerm [ 56 49 ncurses 57 50 ] ++ lib.optionals enableWx [ 51 + gtk3 58 52 wxGTK 59 - gtk3 53 + ] ++ lib.optionals enableX11 [ 54 + libGL 55 + libGLU 56 + libX11 57 + libXpm 58 + ] ++ lib.optionals stdenv.isDarwin [ 59 + libobjc 60 60 ]; 61 61 62 62 configureFlags = [ ··· 114 114 "--enable-voodoo" 115 115 "--enable-x86-64" 116 116 "--enable-x86-debugger" 117 + ] ++ lib.optionals enableSDL2 [ 118 + "--with-sdl2" 119 + ] ++ lib.optionals enableTerm [ 120 + "--with-term" 121 + ] ++ lib.optionals enableWx [ 122 + "--with-wx" 123 + ] ++ lib.optionals enableX11 [ 124 + "--with-x" 125 + "--with-x11" 117 126 ] ++ lib.optionals (!stdenv.isDarwin) [ 118 127 "--enable-e1000" 119 128 "--enable-es1370" ··· 121 130 "--enable-plugins" 122 131 "--enable-pnic" 123 132 "--enable-sb16" 124 - ] ++ lib.optionals enableX11 [ 125 - "--with-x" 126 - "--with-x11" 127 - ] ++ lib.optionals enableSdl2 [ 128 - "--with-sdl2" 129 - ] ++ lib.optionals enableTerm [ 130 - "--with-term" 131 - ] ++ lib.optionals enableWx [ 132 - "--with-wx" 133 133 ]; 134 134 135 135 enableParallelBuilding = true;
+2 -2
pkgs/applications/misc/gallery-dl/default.nix
··· 2 2 3 3 buildPythonApplication rec { 4 4 pname = "gallery-dl"; 5 - version = "1.23.4"; 5 + version = "1.23.5"; 6 6 format = "setuptools"; 7 7 8 8 src = fetchPypi { 9 9 inherit version; 10 10 pname = "gallery_dl"; 11 - sha256 = "sha256-IpbV6wWIfRDuljX/Bexo9siFXMezeCRBFK5CzVH0vUU="; 11 + sha256 = "sha256-NhnuW7rq5Dgrnkw/nUO/pFg/Sh2D/d9gFCIb+gQy5QE="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+3 -3
pkgs/applications/misc/passky-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "passky-desktop"; 5 - version = "5.0.0"; 5 + version = "7.1.0"; 6 6 7 7 srcs = { 8 8 x86_64-linux = fetchurl { 9 9 url = "https://github.com/Rabbit-Company/Passky-Desktop/releases/download/v${version}/Passky-${version}.AppImage"; 10 - sha256 = "19sy9y2bcxrf10ifszinh4yn32q3032h3d1qxm046zffzl069807"; 10 + sha256 = "1xnhrmmm018mmyzjq05mhbf673f0n81fh1k3kbfarbgk2kbwpq6y"; 11 11 }; 12 12 x86_64-darwin = fetchurl { 13 13 url = "https://github.com/Rabbit-Company/Passky-Desktop/releases/download/v${version}/Passky-${version}.dmg"; 14 - sha256 = "sha256-lclJOaYe+2XeKhJb2WcOAzjBMzK3YEmlS4rXuRUJYU0="; 14 + sha256 = "0mm7hk4v7zvpjdqyw3nhk33x72j0gh3f59bx3q18azlm4dr61r2d"; 15 15 }; 16 16 }; 17 17 src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+20 -20
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 1 1 { 2 2 "stable": { 3 - "version": "107.0.5304.68", 4 - "sha256": "0k5qrmby1k2gw3lj96x3qag20kka61my578pv0zyrqqj5sdz3i5a", 5 - "sha256bin64": "1x9svz5s8fm2zhnpzjpqckzfp37hjni3nf3pm63rwnvbd06y48ja", 3 + "version": "107.0.5304.87", 4 + "sha256": "0n9wr5v7zcdmbqs7mmnyydjvzw0glh5l3skpj7i1nap2hv0h03kc", 5 + "sha256bin64": "16a6qisxkfmx60qh67rvfy3knp66hdgxan48cga6j3zd683inas2", 6 6 "deps": { 7 7 "gn": { 8 8 "version": "2022-09-14", ··· 19 19 } 20 20 }, 21 21 "beta": { 22 - "version": "107.0.5304.68", 23 - "sha256": "0k5qrmby1k2gw3lj96x3qag20kka61my578pv0zyrqqj5sdz3i5a", 24 - "sha256bin64": "15ijvsm9k28iwr7dxi2vbrlb7z5nz63yvpx7cg766z1z1q5jcg7m", 22 + "version": "108.0.5359.22", 23 + "sha256": "1wwrwqyl9nl4kpkmkybw14ygj5lfrk274yx5f817ha1kpk8vma0y", 24 + "sha256bin64": "0dq3mf1rai7i3aqq9h8g4iy9nxy3hbb6gd86c31admxygdpgpds5", 25 25 "deps": { 26 26 "gn": { 27 - "version": "2022-09-14", 27 + "version": "2022-10-05", 28 28 "url": "https://gn.googlesource.com/gn", 29 - "rev": "fff29c1b3f9703ea449f720fe70fa73575ef24e5", 30 - "sha256": "1c0dvpp4im1hf277bs5w7rgqxz3g2bax266i2g6smi3pl7a8jpnp" 29 + "rev": "b9c6c19be95a3863e02f00f1fe403b2502e345b6", 30 + "sha256": "1rhadb6qk867jafr85x2m3asis3jv7x06blhmad2d296p26d5w6x" 31 31 } 32 32 } 33 33 }, 34 34 "dev": { 35 - "version": "108.0.5359.19", 36 - "sha256": "1093anaymbmza6rf9hisl6qdf9jfaa27kyd3gbv5xyc0i450ypg5", 37 - "sha256bin64": "0yi6qi7asmh3kx6y86p22smjf5bpay1nrj09zg7l2qd3gi836xp0", 35 + "version": "109.0.5384.0", 36 + "sha256": "195lbklp5c6bvfzhdvah4k2yr44jwy64499y37kgxky0mb79a26n", 37 + "sha256bin64": "02qbwj9gfcgxdqm1mhxg0mljvrhnl994lhis615y23099r3r67i8", 38 38 "deps": { 39 39 "gn": { 40 - "version": "2022-10-05", 40 + "version": "2022-10-26", 41 41 "url": "https://gn.googlesource.com/gn", 42 - "rev": "b9c6c19be95a3863e02f00f1fe403b2502e345b6", 43 - "sha256": "1rhadb6qk867jafr85x2m3asis3jv7x06blhmad2d296p26d5w6x" 42 + "rev": "3e98c606ed0dff59fa461fbba4892c0b6de1966e", 43 + "sha256": "08cz58svkb7c71f1x1ahr60a6ircr31rfmkk4d46z2v39sgry1gv" 44 44 } 45 45 } 46 46 }, 47 47 "ungoogled-chromium": { 48 - "version": "107.0.5304.68", 49 - "sha256": "0k5qrmby1k2gw3lj96x3qag20kka61my578pv0zyrqqj5sdz3i5a", 50 - "sha256bin64": "1x9svz5s8fm2zhnpzjpqckzfp37hjni3nf3pm63rwnvbd06y48ja", 48 + "version": "107.0.5304.88", 49 + "sha256": "1k4j4j9b1m7kjybfgns9akb7adfby3gnjpibk0kjd22n3sprar8y", 50 + "sha256bin64": null, 51 51 "deps": { 52 52 "gn": { 53 53 "version": "2022-09-14", ··· 56 56 "sha256": "1c0dvpp4im1hf277bs5w7rgqxz3g2bax266i2g6smi3pl7a8jpnp" 57 57 }, 58 58 "ungoogled-patches": { 59 - "rev": "107.0.5304.68-1", 60 - "sha256": "0rjdi2lr71xjjf4x27183ys87fc95m85yp5x3kk6i39ppksvsj6b" 59 + "rev": "107.0.5304.88-1", 60 + "sha256": "1m9hjbs79ga5jw7x332jl882lh7yrr4n4r4qrzy37ai75x371pz2" 61 61 } 62 62 } 63 63 }
+2 -2
pkgs/applications/networking/instant-messengers/session-desktop/default.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "1.10.1"; 11 + version = "1.10.3"; 12 12 pname = "session-desktop"; 13 13 14 14 src = fetchurl { 15 15 url = "https://github.com/oxen-io/session-desktop/releases/download/v${version}/session-desktop-linux-x86_64-${version}.AppImage"; 16 - sha256 = "sha256-DArIq5bxyeHy45ZkE+FIpxBl4P6jiHTCN1lVCuF81O8="; 16 + sha256 = "sha256-I9YyzfI8EqH8LZe5E5BnD9lGPAdQo++l3yRClfN7+pY="; 17 17 }; 18 18 appimage = appimageTools.wrapType2 { 19 19 inherit version pname src;
+20 -33
pkgs/applications/networking/maestral-qt/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , python3 4 - , wrapQtAppsHook 4 + , qt6 5 5 , nixosTests 6 6 }: 7 7 8 - let 9 - inherit (pypkgs) makePythonPath; 10 - 11 - pypkgs = (python3.override { 12 - packageOverrides = self: super: { 13 - # Use last available version of maestral that still supports PyQt5 14 - # Remove this override when PyQt6 is available 15 - maestral = super.maestral.overridePythonAttrs (old: rec { 16 - version = "1.5.3"; 17 - src = fetchFromGitHub { 18 - owner = "SamSchott"; 19 - repo = "maestral"; 20 - rev = "refs/tags/v${version}"; 21 - hash = "sha256-Uo3vcYez2qSq162SSKjoCkwygwR5awzDceIq8/h3dao="; 22 - }; 23 - }); 24 - }; 25 - }).pkgs; 26 - 27 - in 28 - pypkgs.buildPythonApplication rec { 8 + python3.pkgs.buildPythonApplication rec { 29 9 pname = "maestral-qt"; 30 - version = "1.5.3"; 31 - disabled = pypkgs.pythonOlder "3.6"; 10 + version = "1.6.3"; 11 + disabled = python3.pythonOlder "3.7"; 32 12 33 13 src = fetchFromGitHub { 34 14 owner = "SamSchott"; 35 15 repo = "maestral-qt"; 36 16 rev = "refs/tags/v${version}"; 37 - sha256 = "sha256-zaG9Zwz9S/SVb7xDa7eXkjLNt1BhA1cQ3I18rVt+8uQ="; 17 + sha256 = "sha256-Fvr5WhrhxPBeAMsrVj/frg01qgt2SeWgrRJYgBxRFHc="; 38 18 }; 39 19 40 20 format = "pyproject"; 41 21 42 - propagatedBuildInputs = with pypkgs; [ 22 + propagatedBuildInputs = with python3.pkgs; [ 43 23 click 44 24 markdown2 45 25 maestral 46 26 packaging 47 - pyqt5 48 - ] ++ lib.optionals (pythonOlder "3.9") [ 49 - importlib-resources 27 + pyqt6 50 28 ]; 51 29 52 - nativeBuildInputs = [ wrapQtAppsHook ]; 30 + buildInputs = [ 31 + qt6.qtbase 32 + qt6.qtsvg # Needed for the systray icon 33 + ]; 34 + 35 + nativeBuildInputs = [ 36 + qt6.wrapQtAppsHook 37 + ]; 38 + 39 + dontWrapQtApps = true; 53 40 54 - makeWrapperArgs = [ 41 + makeWrapperArgs = with python3.pkgs; [ 55 42 # Firstly, add all necessary QT variables 56 43 "\${qtWrapperArgs[@]}" 57 44 58 45 # Add the installed directories to the python path so the daemon can find them 59 - "--prefix PYTHONPATH : ${makePythonPath (pypkgs.requiredPythonModules pypkgs.maestral.propagatedBuildInputs)}" 60 - "--prefix PYTHONPATH : ${makePythonPath [ pypkgs.maestral ]}" 46 + "--prefix PYTHONPATH : ${makePythonPath (requiredPythonModules maestral.propagatedBuildInputs)}" 47 + "--prefix PYTHONPATH : ${makePythonPath [ maestral ]}" 61 48 ]; 62 49 63 50 # no tests
+9 -2
pkgs/applications/science/biology/sambamba/default.nix
··· 23 23 nativeBuildInputs = [ which python3 ldc ]; 24 24 buildInputs = [ zlib lz4 ]; 25 25 26 + buildFlags = [ 27 + "CC=${stdenv.cc.targetPrefix}cc" 28 + ]; 29 + 26 30 # Upstream's install target is broken; copy manually 27 31 installPhase = '' 28 - mkdir -p $out/bin 29 - cp bin/sambamba-${version} $out/bin/sambamba 32 + runHook preInstall 33 + 34 + install -Dm755 bin/sambamba-${version} $out/bin/sambamba 35 + 36 + runHook postInstall 30 37 ''; 31 38 32 39 meta = with lib; {
+37
pkgs/applications/science/logic/nusmv/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , autoPatchelfHook 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "NuSMV"; 9 + version = "2.6.0"; 10 + 11 + src = with stdenv; fetchurl ( 12 + if isx86_64 && isLinux then { 13 + url = "https://nusmv.fbk.eu/distrib/NuSMV-${version}-linux64.tar.gz"; 14 + sha256 = "1370x2vwjndv9ham5q399nn84hvhm1gj1k7pq576qmh4pi12xc8i"; 15 + } else if isx86_32 && isLinux then { 16 + url = "https://nusmv.fbk.eu/distrib/NuSMV-${version}-linux32.tar.gz"; 17 + sha256 = "1qf41czwbqxlrmv0rv2daxgz2hljza5xks85sx3dhwpjy2iav9jb"; 18 + } else throw "only linux x86_64 and x86_32 are currently supported") ; 19 + 20 + 21 + nativeBuildInputs = [ autoPatchelfHook ]; 22 + 23 + installPhase = '' 24 + install -m755 -D bin/NuSMV $out/bin/NuSMV 25 + install -m755 -D bin/ltl2smv $out/bin/ltl2smv 26 + cp -r include $out/include 27 + cp -r share $out/share 28 + ''; 29 + 30 + meta = with lib; { 31 + description = "A new symbolic model checker for the analysis of synchronous finite-state and infinite-state systems"; 32 + homepage = "https://nuxmv.fbk.eu/pmwiki.php"; 33 + maintainers = with maintainers; [ mgttlinger ]; 34 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 35 + platforms = platforms.linux; 36 + }; 37 + }
+2 -2
pkgs/applications/window-managers/gamescope/default.nix
··· 26 26 }: 27 27 let 28 28 pname = "gamescope"; 29 - version = "3.11.47"; 29 + version = "3.11.48"; 30 30 in 31 31 stdenv.mkDerivation { 32 32 inherit pname version; ··· 35 35 owner = "Plagman"; 36 36 repo = "gamescope"; 37 37 rev = "refs/tags/${version}"; 38 - hash = "sha256-GkvujrYc7dBbsGqeG0THqtEAox+VZ3DoWQK4gkHo+ds="; 38 + hash = "sha256-/a0fW0NVIrg9tuK+mg+D+IOcq3rJJxKdFwspM1ZRR9M="; 39 39 }; 40 40 41 41 patches = [ ./use-pkgconfig.patch ];
+4 -2
pkgs/data/fonts/go-font/default.nix
··· 8 8 rev = "41969df76e82aeec85fa3821b1e24955ea993001"; 9 9 10 10 postFetch = '' 11 - mv $out/* . 11 + mv $out source 12 + cd source 13 + 12 14 mkdir -p $out/share/fonts/truetype 13 15 mkdir -p $out/share/doc/go-font 14 16 cp font/gofont/ttfs/* $out/share/fonts/truetype 15 17 mv $out/share/fonts/truetype/README $out/share/doc/go-font/LICENSE 16 18 ''; 17 19 18 - sha256 = "dteUL/4ZUq3ybL6HaLYqu2Tslx3q8VvELIY3tVC+ODo="; 20 + sha256 = "175jwq16qjnd2k923n9gcbjizchy7yv4n41dm691sjwrhbl0b13x"; 19 21 }) // { 20 22 meta = with lib; { 21 23 homepage = "https://blog.golang.org/go-fonts";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "2c8100e0ec017b1ab20fcf4679176087b10fbd45", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/2c8100e0ec017b1ab20fcf4679176087b10fbd45.tar.gz", 4 - "sha256": "16jvcyn4cxc2f0p92f71yk1n2p6jmblnhqm8is5ipn0j4xz6l0bl", 5 - "msg": "Update from Hackage at 2022-10-11T19:16:50Z" 2 + "commit": "8983027e744098e8a2fbeac09bcc6eb8a9471fff", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/8983027e744098e8a2fbeac09bcc6eb8a9471fff.tar.gz", 4 + "sha256": "1iqgakw71x8cymdifpqnv546wmmrda6w862axli4k03vj7rv91iw", 5 + "msg": "Update from Hackage at 2022-10-27T19:26:33Z" 6 6 }
+19 -2
pkgs/development/compilers/dmd/binary.nix
··· 20 20 21 21 nativeBuildInputs = lib.optionals hostPlatform.isLinux [ 22 22 autoPatchelfHook 23 - ] ++ lib.optional hostPlatform.isDarwin fixDarwinDylibNames; 24 - propagatedBuildInputs = [ curl tzdata ] ++ lib.optional hostPlatform.isLinux glibc; 23 + ] ++ lib.optionals hostPlatform.isDarwin [ 24 + fixDarwinDylibNames 25 + ]; 26 + propagatedBuildInputs = [ 27 + curl 28 + tzdata 29 + ] ++ lib.optionals hostPlatform.isLinux [ 30 + glibc 31 + ]; 25 32 26 33 installPhase = '' 34 + runHook preInstall 35 + 27 36 mkdir -p $out 28 37 29 38 # try to copy model-specific binaries into bin first ··· 41 50 42 51 # fix paths in dmd.conf (one level less) 43 52 substituteInPlace $out/bin/dmd.conf --replace "/../../" "/../" 53 + 54 + runHook postInstall 44 55 ''; 56 + 57 + # Stripping on Darwin started to break libphobos2.a 58 + # Undefined symbols for architecture x86_64: 59 + # "_rt_envvars_enabled", referenced from: 60 + # __D2rt6config16rt_envvarsOptionFNbNiAyaMDFNbNiQkZQnZQq in libphobos2.a(config_99a_6c3.o) 61 + dontStrip = hostPlatform.isDarwin; 45 62 46 63 meta = with lib; { 47 64 description = "Digital Mars D Compiler Package";
+2 -2
pkgs/development/compilers/dmd/bootstrap.nix
··· 3 3 version = "2.090.1"; 4 4 hashes = { 5 5 # Get these from `nix-prefetch-url http://downloads.dlang.org/releases/2.x/2.090.1/dmd.2.090.1.linux.tar.xz` etc.. 6 - osx = "0rbn7j4dr3q0y09fblpj999bi063pi4230rqd5xgd3gwxxa0cz7l"; 7 - linux = "1vk6lsvd6y7ccvffd23yial4ig90azaxf2rxc6yvidqd1qhan807"; 6 + osx = "sha256-9HwGVO/8jfZ6aTiDIUi8w4C4Ukry0uUS8ACP3Ig8dmU="; 7 + linux = "sha256-ByCrIA4Nt7i9YT0L19VXIL1IqIp+iObcZux407amZu4="; 8 8 }; 9 9 }
+5 -216
pkgs/development/compilers/dmd/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub 2 - , makeWrapper, unzip, which, writeTextFile 3 - , curl, tzdata, gdb, Foundation, git, callPackage 4 - , targetPackages, fetchpatch, bash 5 - , HOST_DMD? "${callPackage ./bootstrap.nix { }}/bin/dmd" 6 - , version? "2.097.2" 7 - , dmdSha256? "16ldkk32y7ln82n7g2ym5d1xf3vly3i31hf8600cpvimf6yhr6kb" 8 - , druntimeSha256? "1sayg6ia85jln8g28vb4m124c27lgbkd6xzg9gblss8ardb8dsp1" 9 - , phobosSha256? "0czg13h65b6qwhk9ibya21z3iv3fpk3rsjr3zbcrpc2spqjknfw5" 10 - }: 11 - 12 - let 13 - dmdConfFile = writeTextFile { 14 - name = "dmd.conf"; 15 - text = (lib.generators.toINI {} { 16 - Environment = { 17 - DFLAGS = ''-I@out@/include/dmd -L-L@out@/lib -fPIC ${lib.optionalString (!targetPackages.stdenv.cc.isClang) "-L--export-dynamic"}''; 18 - }; 19 - }); 20 - }; 21 - 22 - bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits; 23 - in 24 - 25 - stdenv.mkDerivation rec { 26 - pname = "dmd"; 27 - inherit version; 28 - 29 - enableParallelBuilding = true; 30 - 31 - srcs = [ 32 - (fetchFromGitHub { 33 - owner = "dlang"; 34 - repo = "dmd"; 35 - rev = "v${version}"; 36 - sha256 = dmdSha256; 37 - name = "dmd"; 38 - }) 39 - (fetchFromGitHub { 40 - owner = "dlang"; 41 - repo = "druntime"; 42 - rev = "v${version}"; 43 - sha256 = druntimeSha256; 44 - name = "druntime"; 45 - }) 46 - (fetchFromGitHub { 47 - owner = "dlang"; 48 - repo = "phobos"; 49 - rev = "v${version}"; 50 - sha256 = phobosSha256; 51 - name = "phobos"; 52 - }) 53 - ]; 54 - 55 - sourceRoot = "."; 56 - 57 - # https://issues.dlang.org/show_bug.cgi?id=19553 58 - hardeningDisable = [ "fortify" ]; 59 - 60 - # Not using patches option to make it easy to patch, for example, dmd and 61 - # Phobos at same time if that's required 62 - patchPhase = 63 - 64 - # Migrates D1-style operator overloads in DMD source, to allow building with 65 - # a newer DMD 66 - lib.optionalString (lib.versionOlder version "2.088.0") '' 67 - patch -p1 -F3 --directory=dmd -i ${(fetchpatch { 68 - url = "https://github.com/dlang/dmd/commit/c4d33e5eb46c123761ac501e8c52f33850483a8a.patch"; 69 - sha256 = "0rhl9h3hsi6d0qrz24f4zx960cirad1h8mm383q6n21jzcw71cp5"; 70 - })} 71 - '' 72 - 73 - # Fixes C++ tests that compiled on older C++ but not on the current one 74 - + lib.optionalString (lib.versionOlder version "2.092.2") '' 75 - patch -p1 -F3 --directory=druntime -i ${(fetchpatch { 76 - url = "https://github.com/dlang/druntime/commit/438990def7e377ca1f87b6d28246673bb38022ab.patch"; 77 - sha256 = "0nxzkrd1rzj44l83j7jj90yz2cv01na8vn9d116ijnm85jl007b4"; 78 - })} 79 - '' 80 - 81 - + postPatch; 82 - 83 - 84 - postPatch = 85 - '' 86 - patchShebangs . 87 - 88 - # Disable tests that rely on objdump whitespace until fixed upstream: 89 - # https://issues.dlang.org/show_bug.cgi?id=23317 90 - rm dmd/test/runnable/cdvecfill.sh 91 - rm dmd/test/compilable/cdcmp.d 92 - '' 93 - 94 - # This one has tested against a hardcoded year, then against a current year on 95 - # and off again. It just isn't worth it to patch all the historical versions 96 - # of it, so just remove it until the most recent change. 97 - + lib.optionalString (lib.versionOlder version "2.091.0") '' 98 - rm dmd/test/compilable/ddocYear.d 99 - '' 100 - 101 - + lib.optionalString (version == "2.092.1") '' 102 - rm dmd/test/dshell/test6952.d 103 - '' + lib.optionalString (lib.versionAtLeast version "2.092.2") '' 104 - substituteInPlace dmd/test/dshell/test6952.d --replace "/usr/bin/env bash" "${bash}/bin/bash" 105 - '' 106 - 107 - + '' 108 - rm dmd/test/runnable/gdb1.d 109 - rm dmd/test/runnable/gdb10311.d 110 - rm dmd/test/runnable/gdb14225.d 111 - rm dmd/test/runnable/gdb14276.d 112 - rm dmd/test/runnable/gdb14313.d 113 - rm dmd/test/runnable/gdb14330.d 114 - rm dmd/test/runnable/gdb15729.sh 115 - rm dmd/test/runnable/gdb4149.d 116 - rm dmd/test/runnable/gdb4181.d 117 - 118 - # Grep'd string changed with gdb 12 119 - substituteInPlace druntime/test/exceptions/Makefile \ 120 - --replace 'in D main (' 'in _Dmain (' 121 - '' 122 - 123 - + lib.optionalString stdenv.isLinux '' 124 - substituteInPlace phobos/std/socket.d --replace "assert(ih.addrList[0] == 0x7F_00_00_01);" "" 125 - '' + lib.optionalString stdenv.isDarwin '' 126 - substituteInPlace phobos/std/socket.d --replace "foreach (name; names)" "names = []; foreach (name; names)" 127 - ''; 128 - 129 - nativeBuildInputs = [ makeWrapper unzip which git ]; 130 - 131 - buildInputs = [ gdb curl tzdata ] 132 - ++ lib.optionals stdenv.isDarwin [ Foundation gdb ]; 133 - 134 - 135 - osname = if stdenv.isDarwin then 136 - "osx" 137 - else 138 - stdenv.hostPlatform.parsed.kernel.name; 139 - top = "$NIX_BUILD_TOP"; 140 - pathToDmd = "${top}/dmd/generated/${osname}/release/${bits}/dmd"; 141 - 142 - # Build and install are based on http://wiki.dlang.org/Building_DMD 143 - buildPhase = '' 144 - cd dmd 145 - make -j$NIX_BUILD_CORES -f posix.mak INSTALL_DIR=$out BUILD=release ENABLE_RELEASE=1 PIC=1 HOST_DMD=${HOST_DMD} 146 - cd ../druntime 147 - make -j$NIX_BUILD_CORES -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 INSTALL_DIR=$out DMD=${pathToDmd} 148 - cd ../phobos 149 - echo ${tzdata}/share/zoneinfo/ > TZDatabaseDirFile 150 - echo ${curl.out}/lib/libcurl${stdenv.hostPlatform.extensions.sharedLibrary} > LibcurlPathFile 151 - make -j$NIX_BUILD_CORES -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 INSTALL_DIR=$out DMD=${pathToDmd} DFLAGS="-version=TZDatabaseDir -version=LibcurlPath -J$(pwd)" 152 - cd .. 153 - ''; 154 - 155 - doCheck = true; 156 - 157 - # many tests are disbled because they are failing 158 - 159 - # NOTE: Purity check is disabled for checkPhase because it doesn't fare well 160 - # with the DMD linker. See https://github.com/NixOS/nixpkgs/issues/97420 161 - checkPhase = '' 162 - cd dmd 163 - NIX_ENFORCE_PURITY= \ 164 - make -j$NIX_BUILD_CORES -C test -f Makefile PIC=1 CC=$CXX DMD=${pathToDmd} BUILD=release SHELL=$SHELL 165 - 166 - cd ../druntime 167 - NIX_ENFORCE_PURITY= \ 168 - make -j$NIX_BUILD_CORES -f posix.mak unittest PIC=1 DMD=${pathToDmd} BUILD=release 169 - 170 - cd ../phobos 171 - NIX_ENFORCE_PURITY= \ 172 - make -j$NIX_BUILD_CORES -f posix.mak unittest BUILD=release ENABLE_RELEASE=1 PIC=1 DMD=${pathToDmd} DFLAGS="-version=TZDatabaseDir -version=LibcurlPath -J$(pwd)" 173 - 174 - cd .. 175 - ''; 176 - 177 - installPhase = '' 178 - cd dmd 179 - mkdir $out 180 - mkdir $out/bin 181 - cp ${pathToDmd} $out/bin 182 - 183 - mkdir -p $out/share/man/man1 184 - mkdir -p $out/share/man/man5 185 - cp -r docs/man/man1/* $out/share/man/man1/ 186 - cp -r docs/man/man5/* $out/share/man/man5/ 187 - 188 - cd ../druntime 189 - mkdir $out/include 190 - mkdir $out/include/dmd 191 - cp -r import/* $out/include/dmd 192 - 193 - cd ../phobos 194 - mkdir $out/lib 195 - cp generated/${osname}/release/${bits}/libphobos2.* $out/lib 196 - 197 - cp -r std $out/include/dmd 198 - cp -r etc $out/include/dmd 199 - 200 - wrapProgram $out/bin/dmd \ 201 - --prefix PATH ":" "${targetPackages.stdenv.cc}/bin" \ 202 - --set-default CC "${targetPackages.stdenv.cc}/bin/cc" 203 - 204 - substitute ${dmdConfFile} "$out/bin/dmd.conf" --subst-var out 205 - ''; 206 - 207 - meta = with lib; { 208 - broken = stdenv.isDarwin; 209 - description = "Official reference compiler for the D language"; 210 - homepage = "https://dlang.org/"; 211 - # Everything is now Boost licensed, even the backend. 212 - # https://github.com/dlang/dmd/pull/6680 213 - license = licenses.boost; 214 - maintainers = with maintainers; [ ThomasMader lionello dukc ]; 215 - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 216 - }; 1 + import ./generic.nix { 2 + version = "2.100.2"; 3 + dmdSha256 = "sha256-o4+G3ARXIGObYHtHooYZKr+Al6kHpiwpMIog3i4BlDM="; 4 + druntimeSha256 = "sha256-qXvY1ECN4mPwOGgOE1FWwvxoRvlSww3tGLWgBdhzAKo="; 5 + phobosSha256 = "sha256-kTHRaAKG7cAGb4IE/NGHWaZ8t7ZceKj03l6E8wLzJzs="; 217 6 }
+250
pkgs/development/compilers/dmd/generic.nix
··· 1 + { version 2 + , dmdSha256 3 + , druntimeSha256 4 + , phobosSha256 5 + }: 6 + 7 + { stdenv 8 + , lib 9 + , fetchFromGitHub 10 + , makeWrapper 11 + , which 12 + , writeTextFile 13 + , curl 14 + , tzdata 15 + , gdb 16 + , Foundation 17 + , callPackage 18 + , targetPackages 19 + , fetchpatch 20 + , bash 21 + , installShellFiles 22 + , git 23 + , unzip 24 + , HOST_DMD ? "${callPackage ./bootstrap.nix { }}/bin/dmd" 25 + }: 26 + 27 + let 28 + dmdConfFile = writeTextFile { 29 + name = "dmd.conf"; 30 + text = (lib.generators.toINI { } { 31 + Environment = { 32 + DFLAGS = ''-I@out@/include/dmd -L-L@out@/lib -fPIC ${lib.optionalString (!targetPackages.stdenv.cc.isClang) "-L--export-dynamic"}''; 33 + }; 34 + }); 35 + }; 36 + 37 + bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits; 38 + osname = 39 + if stdenv.isDarwin then 40 + "osx" 41 + else 42 + stdenv.hostPlatform.parsed.kernel.name; 43 + 44 + pathToDmd = "\${NIX_BUILD_TOP}/dmd/generated/${osname}/release/${bits}/dmd"; 45 + in 46 + 47 + stdenv.mkDerivation rec { 48 + pname = "dmd"; 49 + inherit version; 50 + 51 + enableParallelBuilding = true; 52 + 53 + srcs = [ 54 + (fetchFromGitHub { 55 + owner = "dlang"; 56 + repo = "dmd"; 57 + rev = "v${version}"; 58 + sha256 = dmdSha256; 59 + name = "dmd"; 60 + }) 61 + (fetchFromGitHub { 62 + owner = "dlang"; 63 + repo = "druntime"; 64 + rev = "v${version}"; 65 + sha256 = druntimeSha256; 66 + name = "druntime"; 67 + }) 68 + (fetchFromGitHub { 69 + owner = "dlang"; 70 + repo = "phobos"; 71 + rev = "v${version}"; 72 + sha256 = phobosSha256; 73 + name = "phobos"; 74 + }) 75 + ]; 76 + 77 + sourceRoot = "."; 78 + 79 + # https://issues.dlang.org/show_bug.cgi?id=19553 80 + hardeningDisable = [ "fortify" ]; 81 + 82 + patches = lib.optionals (lib.versionOlder version "2.088.0") [ 83 + # Migrates D1-style operator overloads in DMD source, to allow building with 84 + # a newer DMD 85 + (fetchpatch { 86 + url = "https://github.com/dlang/dmd/commit/c4d33e5eb46c123761ac501e8c52f33850483a8a.patch"; 87 + stripLen = 1; 88 + extraPrefix = "dmd/"; 89 + sha256 = "sha256-N21mAPfaTo+zGCip4njejasraV5IsWVqlGR5eOdFZZE="; 90 + }) 91 + ] ++ lib.optionals (lib.versionOlder version "2.092.2") [ 92 + # Fixes C++ tests that compiled on older C++ but not on the current one 93 + (fetchpatch { 94 + url = "https://github.com/dlang/druntime/commit/438990def7e377ca1f87b6d28246673bb38022ab.patch"; 95 + stripLen = 1; 96 + extraPrefix = "druntime/"; 97 + sha256 = "sha256-/pPKK7ZK9E/mBrxm2MZyBNhYExE8p9jz8JqBdZSE6uY="; 98 + }) 99 + ]; 100 + 101 + postPatch = '' 102 + patchShebangs dmd/test/{runnable,fail_compilation,compilable,tools}{,/extra-files}/*.sh 103 + 104 + rm dmd/test/runnable/gdb1.d 105 + rm dmd/test/runnable/gdb10311.d 106 + rm dmd/test/runnable/gdb14225.d 107 + rm dmd/test/runnable/gdb14276.d 108 + rm dmd/test/runnable/gdb14313.d 109 + rm dmd/test/runnable/gdb14330.d 110 + rm dmd/test/runnable/gdb15729.sh 111 + rm dmd/test/runnable/gdb4149.d 112 + rm dmd/test/runnable/gdb4181.d 113 + 114 + # Disable tests that rely on objdump whitespace until fixed upstream: 115 + # https://issues.dlang.org/show_bug.cgi?id=23317 116 + rm dmd/test/runnable/cdvecfill.sh 117 + rm dmd/test/compilable/cdcmp.d 118 + 119 + # Grep'd string changed with gdb 12 120 + # https://issues.dlang.org/show_bug.cgi?id=23198 121 + substituteInPlace druntime/test/exceptions/Makefile \ 122 + --replace 'in D main (' 'in _Dmain (' 123 + 124 + # We're using gnused on all platforms 125 + substituteInPlace druntime/test/coverage/Makefile \ 126 + --replace 'freebsd osx' 'none' 127 + '' 128 + 129 + + lib.optionalString (lib.versionOlder version "2.091.0") '' 130 + # This one has tested against a hardcoded year, then against a current year on 131 + # and off again. It just isn't worth it to patch all the historical versions 132 + # of it, so just remove it until the most recent change. 133 + rm dmd/test/compilable/ddocYear.d 134 + '' + lib.optionalString (lib.versionAtLeast version "2.089.0" && lib.versionOlder version "2.092.2") '' 135 + rm dmd/test/dshell/test6952.d 136 + '' + lib.optionalString (lib.versionAtLeast version "2.092.2") '' 137 + substituteInPlace dmd/test/dshell/test6952.d --replace "/usr/bin/env bash" "${bash}/bin/bash" 138 + '' 139 + 140 + + lib.optionalString stdenv.isLinux '' 141 + substituteInPlace phobos/std/socket.d --replace "assert(ih.addrList[0] == 0x7F_00_00_01);" "" 142 + '' + lib.optionalString stdenv.isDarwin '' 143 + substituteInPlace phobos/std/socket.d --replace "foreach (name; names)" "names = []; foreach (name; names)" 144 + ''; 145 + 146 + nativeBuildInputs = [ 147 + makeWrapper 148 + which 149 + installShellFiles 150 + ] ++ lib.optionals (lib.versionOlder version "2.088.0") [ 151 + git 152 + ]; 153 + 154 + buildInputs = [ 155 + curl 156 + tzdata 157 + ] ++ lib.optionals stdenv.isDarwin [ 158 + Foundation 159 + ]; 160 + 161 + checkInputs = [ 162 + gdb 163 + ] ++ lib.optionals (lib.versionOlder version "2.089.0") [ 164 + unzip 165 + ]; 166 + 167 + buildFlags = [ 168 + "BUILD=release" 169 + "ENABLE_RELEASE=1" 170 + "PIC=1" 171 + ]; 172 + 173 + # Build and install are based on http://wiki.dlang.org/Building_DMD 174 + buildPhase = '' 175 + runHook preBuild 176 + 177 + export buildJobs=$NIX_BUILD_CORES 178 + if [ -z $enableParallelBuilding ]; then 179 + buildJobs=1 180 + fi 181 + 182 + make -C dmd -f posix.mak $buildFlags -j$buildJobs HOST_DMD=${HOST_DMD} 183 + make -C druntime -f posix.mak $buildFlags -j$buildJobs DMD=${pathToDmd} 184 + echo ${tzdata}/share/zoneinfo/ > TZDatabaseDirFile 185 + echo ${lib.getLib curl}/lib/libcurl${stdenv.hostPlatform.extensions.sharedLibrary} > LibcurlPathFile 186 + make -C phobos -f posix.mak $buildFlags -j$buildJobs DMD=${pathToDmd} DFLAGS="-version=TZDatabaseDir -version=LibcurlPath -J$PWD" 187 + 188 + runHook postBuild 189 + ''; 190 + 191 + doCheck = true; 192 + 193 + checkFlags = buildFlags; 194 + 195 + # many tests are disbled because they are failing 196 + 197 + # NOTE: Purity check is disabled for checkPhase because it doesn't fare well 198 + # with the DMD linker. See https://github.com/NixOS/nixpkgs/issues/97420 199 + checkPhase = '' 200 + runHook preCheck 201 + 202 + export checkJobs=$NIX_BUILD_CORES 203 + if [ -z $enableParallelChecking ]; then 204 + checkJobs=1 205 + fi 206 + 207 + NIX_ENFORCE_PURITY= \ 208 + make -C dmd/test $checkFlags CC=$CXX SHELL=$SHELL -j$checkJobs N=$checkJobs 209 + 210 + NIX_ENFORCE_PURITY= \ 211 + make -C druntime -f posix.mak unittest $checkFlags -j$checkJobs 212 + 213 + NIX_ENFORCE_PURITY= \ 214 + make -C phobos -f posix.mak unittest $checkFlags -j$checkJobs DFLAGS="-version=TZDatabaseDir -version=LibcurlPath -J$PWD" 215 + 216 + runHook postBuild 217 + ''; 218 + 219 + installPhase = '' 220 + runHook preInstall 221 + 222 + install -Dm755 ${pathToDmd} $out/bin/dmd 223 + 224 + installManPage dmd/docs/man/man*/* 225 + 226 + mkdir -p $out/include/dmd 227 + cp -r {druntime/import/*,phobos/{std,etc}} $out/include/dmd/ 228 + 229 + mkdir $out/lib 230 + cp phobos/generated/${osname}/release/${bits}/libphobos2.* $out/lib/ 231 + 232 + wrapProgram $out/bin/dmd \ 233 + --prefix PATH ":" "${targetPackages.stdenv.cc}/bin" \ 234 + --set-default CC "${targetPackages.stdenv.cc}/bin/cc" 235 + 236 + substitute ${dmdConfFile} "$out/bin/dmd.conf" --subst-var out 237 + 238 + runHook postInstall 239 + ''; 240 + 241 + meta = with lib; { 242 + description = "Official reference compiler for the D language"; 243 + homepage = "https://dlang.org/"; 244 + # Everything is now Boost licensed, even the backend. 245 + # https://github.com/dlang/dmd/pull/6680 246 + license = licenses.boost; 247 + maintainers = with maintainers; [ ThomasMader lionello dukc ]; 248 + platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 249 + }; 250 + }
+164
pkgs/development/compilers/fbc/default.nix
··· 1 + { stdenv 2 + , buildPackages 3 + , lib 4 + , fetchzip 5 + , fetchpatch 6 + , gpm 7 + , libffi 8 + , libGL 9 + , libX11 10 + , libXext 11 + , libXpm 12 + , libXrandr 13 + , ncurses 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "fbc"; 18 + version = "1.09.0"; 19 + 20 + src = fetchzip { 21 + # Bootstrap tarball has sources pretranslated from FreeBASIC to C 22 + url = "https://github.com/freebasic/fbc/releases/download/${version}/FreeBASIC-${version}-source-bootstrap.tar.xz"; 23 + sha256 = "1q1gxp5kjz4vkcs9jl0x01v8qm1q2j789lgvxvikzd591ay0xini"; 24 + }; 25 + 26 + patches = [ 27 + # Fixes fbc_tests.udt_wstring_.midstmt ascii getting stuck due to stack corruption 28 + # Remove when >1.09.0 29 + (fetchpatch { 30 + name = "fbc-tests-Fix-stack-corruption.patch"; 31 + url = "https://github.com/freebasic/fbc/commit/42f4f6dfdaafdd5302a647152f16cda78e4ec904.patch"; 32 + excludes = [ "changelog.txt" ]; 33 + sha256 = "sha256-Bn+mnTIkM2/uM2k/b9+Up4HJ7SJWwfD3bWLJsSycFRE="; 34 + }) 35 + # Respect SOURCE_DATE_EPOCH when set 36 + # Remove when >1.09.0 37 + (fetchpatch { 38 + name = "fbc-SOURCE_DATE_EPOCH-support.patch"; 39 + url = "https://github.com/freebasic/fbc/commit/74ea6efdcfe9a90d1c860f64d11ab4a6cd607269.patch"; 40 + excludes = [ "changelog.txt" ]; 41 + sha256 = "sha256-v5FTi4vKOvSV03kigZDiOH8SEGEphhzkBL6p1hd+NtU="; 42 + }) 43 + ]; 44 + 45 + postPatch = '' 46 + patchShebangs tests/warnings/test.sh 47 + 48 + # Some tests lack proper dependency on libstdc++ 49 + for missingStdcpp in tests/cpp/{class,call2}-fbc.bas; do 50 + sed -i -e "/'"' TEST_MODE : /a #inclib "stdc++"' $missingStdcpp 51 + done 52 + 53 + # Help compiler find libstdc++ with gcc backend 54 + sed -i -e '/fbcAddLibPathFor( "libgcc.a" )/a fbcAddLibPathFor( "libstdc++.so" )' src/compiler/fbc.bas 55 + ''; 56 + 57 + dontConfigure = true; 58 + 59 + depsBuildBuild = [ 60 + buildPackages.stdenv.cc 61 + buildPackages.ncurses 62 + buildPackages.libffi 63 + ]; 64 + 65 + buildInputs = [ 66 + ncurses 67 + libffi 68 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 69 + gpm 70 + libGL 71 + libX11 72 + libXext 73 + libXpm 74 + libXrandr 75 + ]; 76 + 77 + enableParallelBuilding = true; 78 + 79 + hardeningDisable = [ 80 + "format" 81 + ]; 82 + 83 + makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 84 + "TARGET=${stdenv.hostPlatform.config}" 85 + ]; 86 + 87 + preBuild = '' 88 + export buildJobs=$NIX_BUILD_CORES 89 + if [ -z "$enableParallelBuilding" ]; then 90 + buildJobs=1 91 + fi 92 + 93 + echo Bootstrap an unpatched build compiler 94 + make bootstrap-minimal -j$buildJobs \ 95 + BUILD_PREFIX=${buildPackages.stdenv.cc.targetPrefix} LD=${buildPackages.stdenv.cc.targetPrefix}ld 96 + 97 + echo Compile patched build compiler and host rtlib 98 + make compiler -j$buildJobs \ 99 + "FBC=$PWD/bin/fbc${stdenv.buildPlatform.extensions.executable} -i $PWD/inc" \ 100 + BUILD_PREFIX=${buildPackages.stdenv.cc.targetPrefix} LD=${buildPackages.stdenv.cc.targetPrefix}ld 101 + make rtlib -j$buildJobs \ 102 + "FBC=$PWD/bin/fbc${stdenv.buildPlatform.extensions.executable} -i $PWD/inc" \ 103 + ${if (stdenv.buildPlatform == stdenv.hostPlatform) then 104 + "BUILD_PREFIX=${buildPackages.stdenv.cc.targetPrefix} LD=${buildPackages.stdenv.cc.targetPrefix}ld" 105 + else 106 + "TARGET=${stdenv.hostPlatform.config}" 107 + } 108 + 109 + echo Install patched build compiler and host rtlib to local directory 110 + make install-compiler prefix=$PWD/patched-fbc 111 + make install-rtlib prefix=$PWD/patched-fbc ${lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) "TARGET=${stdenv.hostPlatform.config}"} 112 + make clean 113 + 114 + echo Compile patched host everything with previous patched stage 115 + buildFlagsArray+=("FBC=$PWD/patched-fbc/bin/fbc${stdenv.buildPlatform.extensions.executable} -i $PWD/inc") 116 + ''; 117 + 118 + installFlags = [ 119 + "prefix=${placeholder "out"}" 120 + ]; 121 + 122 + # Tests do not work when cross-compiling even if build platform can execute 123 + # host binaries, compiler struggles to find the cross compiler's libgcc_s 124 + doCheck = stdenv.buildPlatform == stdenv.hostPlatform; 125 + 126 + checkTarget = "unit-tests warning-tests log-tests"; 127 + 128 + checkFlags = [ 129 + "UNITTEST_RUN_ARGS=--verbose" # see what unit-tests are doing 130 + "ABORT_CMD=false" # abort log-tests on failure 131 + ]; 132 + 133 + checkPhase = '' 134 + runHook preCheck 135 + 136 + # Some tests fail with too much parallelism 137 + export maxCheckJobs=50 138 + export checkJobs=$(($NIX_BUILD_CORES<=$maxCheckJobs ? $NIX_BUILD_CORES : $maxCheckJobs)) 139 + if [ -z "$enableParallelChecking" ]; then 140 + checkJobs=1 141 + fi 142 + 143 + # Run check targets in series, else the logs are a mess 144 + for target in $checkTarget; do 145 + make $target -j$checkJobs $makeFlags $checkFlags 146 + done 147 + 148 + runHook postCheck 149 + ''; 150 + 151 + meta = with lib; { 152 + homepage = "https://www.freebasic.net/"; 153 + description = "A multi-platform BASIC Compiler"; 154 + longDescription = '' 155 + FreeBASIC is a completely free, open-source, multi-platform BASIC compiler (fbc), 156 + with syntax similar to (and support for) MS-QuickBASIC, that adds new features 157 + such as pointers, object orientation, unsigned data types, inline assembly, 158 + and many others. 159 + ''; 160 + license = licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception 161 + maintainers = with maintainers; [ OPNA2608 ]; 162 + platforms = with platforms; windows ++ linux; 163 + }; 164 + }
+35
pkgs/development/compilers/fbc/mac-bin.nix
··· 1 + { stdenvNoCC 2 + , lib 3 + , fetchzip 4 + }: 5 + 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "fbc-mac-bin"; 8 + version = "1.06-darwin-wip20160505"; 9 + 10 + src = fetchzip { 11 + url = "https://tmc.castleparadox.com/temp/fbc-${version}.tar.bz2"; 12 + sha256 = "sha256-hD3SRUkk50sf0MhhgHNMvBoJHTKz/71lyFxaAXM4/qI="; 13 + }; 14 + 15 + dontConfigure = true; 16 + dontBuild = true; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + mkdir -p $out 22 + cp -R * $out 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = with lib; { 28 + homepage = "https://rpg.hamsterrepublic.com/ohrrpgce/Compiling_in_Mac_OS_X"; 29 + description = "FreeBASIC, a multi-platform BASIC Compiler (precompiled Darwin build by OHRRPGCE team)"; 30 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 + license = licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception 32 + maintainers = with maintainers; [ OPNA2608 ]; 33 + platforms = [ "x86_64-darwin" ]; 34 + }; 35 + }
+4 -4
pkgs/development/compilers/ldc/bootstrap.nix
··· 3 3 version = "1.25.0"; 4 4 hashes = { 5 5 # Get these from `nix-prefetch-url https://github.com/ldc-developers/ldc/releases/download/v1.19.0/ldc2-1.19.0-osx-x86_64.tar.xz` etc.. 6 - osx-x86_64 = "1xaqxf1lz8kdb0n5iycfpxpvabf1zy0akg14kg554sm85xnsf8pa"; 7 - linux-x86_64 = "1shzdq564jg3ga1hwrvpx30lpszc6pqndqndr5mqmc352znkiy5i"; 8 - linux-aarch64 = "04i4xxwhq02d98r3qrrnv5dbd4xr4d7ph3zv94z2m58z3vgphdjh"; 9 - osx-arm64 = "0b0cpgzn23clggx0cvdaja29q7w7ihkmjbnf1md03h9h5nzp9z1v"; 6 + osx-x86_64 = "sha256-6iKnbS+oalLKmyS8qYD/wS21b7+O+VgsWG2iT4PrWPU="; 7 + linux-x86_64 = "sha256-sfg47RdlsIpryc3iZvE17OtLweh3Zw6DeuNJYgpuH+o="; 8 + linux-aarch64 = "sha256-UDZ43x4flSo+SfsPeE8juZO2Wtk2ZzwySk0ADHnvJBI="; 9 + osx-arm64 = "sha256-O/x0vy0wwQFaDc4uWSeMhx+chJKqbQb6e5QNYf+7DCw="; 10 10 }; 11 11 }
+2 -2
pkgs/development/compilers/ldc/default.nix
··· 1 1 import ./generic.nix { 2 - version = "1.27.1"; 3 - ldcSha256 = "1775001ba6n8w46ln530kb5r66vs935ingnppgddq8wqnc0gbj4k"; 2 + version = "1.30.0"; 3 + sha256 = "sha256-/bs3bwgkLZF5IqaiKnc5gCF/r6MQBG/F1kWUkK8j2s0="; 4 4 }
+2 -2
pkgs/development/compilers/ldc/generic.nix
··· 1 - { version, ldcSha256 }: 1 + { version, sha256 }: 2 2 { lib, stdenv, fetchurl, cmake, ninja, llvm_11, curl, tzdata 3 3 , libconfig, lit, gdb, unzip, darwin, bash 4 4 , callPackage, makeWrapper, runCommand, targetPackages ··· 20 20 21 21 src = fetchurl { 22 22 url = "https://github.com/ldc-developers/ldc/releases/download/v${version}/ldc-${version}-src.tar.gz"; 23 - sha256 = ldcSha256; 23 + inherit sha256; 24 24 }; 25 25 26 26 # https://issues.dlang.org/show_bug.cgi?id=19553
+35 -6
pkgs/development/haskell-modules/configuration-common.nix
··· 1105 1105 1106 1106 # Requires pg_ctl command during tests 1107 1107 beam-postgres = overrideCabal (drv: { 1108 + # https://github.com/NixOS/nixpkgs/issues/198495 1109 + doCheck = pkgs.postgresql.doCheck; 1108 1110 testToolDepends = (drv.testToolDepends or []) ++ [pkgs.postgresql]; 1109 1111 }) super.beam-postgres; 1110 1112 ··· 1127 1129 sed -i test/PostgreSQL/Test.hs \ 1128 1130 -e s^host=localhost^^ 1129 1131 ''; 1132 + # https://github.com/NixOS/nixpkgs/issues/198495 1133 + doCheck = pkgs.postgresql.doCheck; 1130 1134 # Match the test suite defaults (or hardcoded values?) 1131 1135 preCheck = drv.preCheck or "" + '' 1132 1136 PGUSER=esqutest ··· 1267 1271 sed -i test/PgInit.hs \ 1268 1272 -e s^'host=" <> host <> "'^^ 1269 1273 ''; 1274 + # https://github.com/NixOS/nixpkgs/issues/198495 1275 + doCheck = pkgs.postgresql.doCheck; 1270 1276 preCheck = drv.preCheck or "" + '' 1271 1277 PGDATABASE=test 1272 1278 PGUSER=test ··· 1471 1477 testToolDepends = drv.testToolDepends or [] ++ [ 1472 1478 pkgs.postgresql pkgs.postgresqlTestHook 1473 1479 ]; 1480 + # https://github.com/NixOS/nixpkgs/issues/198495 1481 + doCheck = pkgs.postgresql.doCheck; 1474 1482 preCheck = drv.preCheck or "" + '' 1475 1483 # empty string means use default connection 1476 1484 export DATABASE_URL="" ··· 1557 1565 hlint = enableCabalFlag "ghc-lib" lself.hlint_3_4_1; 1558 1566 ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; 1559 1567 ghc-lib-parser = lself.ghc-lib-parser_9_2_4_20220729; 1568 + # For most ghc versions, we overrideScope Cabal in the configuration-ghc-???.nix, 1569 + # because some packages, like ormolu, need a newer Cabal version. 1570 + # ghc-paths is special because it depends on Cabal for building 1571 + # its Setup.hs, and therefor declares a Cabal dependency, but does 1572 + # not actually use it as a build dependency. 1573 + # That means ghc-paths can just use the ghc included Cabal version, 1574 + # without causing package-db incoherence and we should do that because 1575 + # otherwise we have different versions of ghc-paths 1576 + # around with have the same abi-hash, which can lead to confusions and conflicts. 1577 + ghc-paths = lsuper.ghc-paths.override { Cabal = null; }; 1560 1578 }); 1561 1579 1562 1580 hls-hlint-plugin = super.hls-hlint-plugin.overrideScope (lself: lsuper: { ··· 1593 1611 # 2022-09-19: https://github.com/haskell/haskell-language-server/issues/3200 1594 1612 hls-refactor-plugin = dontCheck super.hls-refactor-plugin; 1595 1613 1614 + # 2022-10-27: implicit-hie 0.1.3.0 needs a newer version of Cabal-syntax. 1615 + implicit-hie = super.implicit-hie.override { 1616 + Cabal-syntax = self.Cabal-syntax_3_8_1_0; 1617 + }; 1618 + 1596 1619 # 2021-03-21: Test hangs 1597 1620 # https://github.com/haskell/haskell-language-server/issues/1562 1598 1621 # 2021-11-13: Too strict upper bound on implicit-hie-cradle ··· 1900 1923 1901 1924 # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. 1902 1925 trial-optparse-applicative = assert super.trial-optparse-applicative.version == "0.0.0.0"; doJailbreak super.trial-optparse-applicative; 1903 - 1904 - # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. 1905 - extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions; 1906 1926 1907 1927 # 2021-04-02: iCalendar is basically unmaintained. 1908 1928 # There are PRs for bumping the bounds: https://github.com/chrra/iCalendar/pull/46 ··· 2417 2437 csv = overrideCabal (drv: { preCompileBuildDriver = "rm Setup.hs"; }) super.csv; 2418 2438 2419 2439 cabal-fmt = doJailbreak (super.cabal-fmt.override { 2420 - # Needs newer Cabal-syntex version. 2440 + # Needs newer Cabal-syntax version. 2421 2441 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 2422 2442 }); 2423 2443 ··· 2539 2559 testTarget = "regex-tdfa-unittest"; 2540 2560 } super.regex-tdfa; 2541 2561 2562 + # Missing test files https://github.com/qrilka/xlsx/issues/165 2563 + xlsx = dontCheck super.xlsx; 2564 + 2565 + # Missing test files https://github.com/kephas/xdg-basedir-compliant/issues/1 2566 + xdg-basedir-compliant = dontCheck super.xdg-basedir-compliant; 2567 + 2542 2568 # 2022-09-01: 2543 2569 # Restrictive upper bound on base. 2544 2570 # Remove once version 1.* is released ··· 2578 2604 purescript = 2579 2605 lib.pipe 2580 2606 (super.purescript.overrideScope purescriptOverlay) 2581 - [ 2607 + ([ 2582 2608 # PureScript uses nodejs to run tests, so the tests have been disabled 2583 2609 # for now. If someone is interested in figuring out how to get this 2584 2610 # working, it seems like it might be possible. ··· 2589 2615 doJailbreak 2590 2616 # Generate shell completions 2591 2617 (self.generateOptparseApplicativeCompletions [ "purs" ]) 2592 - ]; 2618 + ] ++ lib.optionals (lib.versions.majorMinor self.ghc.version == "9.2") [ 2619 + markUnbroken 2620 + doDistribute 2621 + ]); 2593 2622 2594 2623 purescript-cst = purescriptStOverride super.purescript-cst; 2595 2624
+2 -2
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 52 52 cabal-install = super.cabal-install.overrideScope (self: super: { 53 53 Cabal = self.Cabal_3_8_1_0; 54 54 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 55 - process = self.process_1_6_15_0; 55 + process = self.process_1_6_16_0; 56 56 }); 57 57 cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 58 58 Cabal = self.Cabal_3_8_1_0; 59 59 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 60 - process = self.process_1_6_15_0; 60 + process = self.process_1_6_16_0; 61 61 }); 62 62 63 63 # Pick right versions for GHC-specific packages
+2 -2
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 58 58 cabal-install = super.cabal-install.overrideScope (self: super: { 59 59 Cabal = self.Cabal_3_8_1_0; 60 60 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 61 - process = self.process_1_6_15_0; 61 + process = self.process_1_6_16_0; 62 62 }); 63 63 cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 64 64 Cabal = self.Cabal_3_8_1_0; 65 65 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 66 - process = self.process_1_6_15_0; 66 + process = self.process_1_6_16_0; 67 67 }); 68 68 69 69 # Ignore overly restrictive upper version bounds.
+2 -2
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 53 53 cabal-install = super.cabal-install.overrideScope (self: super: { 54 54 Cabal = self.Cabal_3_8_1_0; 55 55 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 56 - process = self.process_1_6_15_0; 56 + process = self.process_1_6_16_0; 57 57 }); 58 58 cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 59 59 Cabal = self.Cabal_3_8_1_0; 60 60 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 61 - process = self.process_1_6_15_0; 61 + process = self.process_1_6_16_0; 62 62 }); 63 63 64 64 # Jailbreaks & Version Updates
+8 -3
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 59 59 cabal-install = super.cabal-install.overrideScope (self: super: { 60 60 Cabal = self.Cabal_3_8_1_0; 61 61 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 62 - process = self.process_1_6_15_0; 62 + process = self.process_1_6_16_0; 63 63 }); 64 64 cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { 65 65 Cabal = self.Cabal_3_8_1_0; 66 66 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 67 - process = self.process_1_6_15_0; 67 + process = self.process_1_6_16_0; 68 68 }); 69 69 70 70 doctest = dontCheck (doJailbreak super.doctest); ··· 87 87 constraints = doJailbreak super.constraints; 88 88 cpphs = overrideCabal (drv: { postPatch = "sed -i -e 's,time >=1.5 && <1.11,time >=1.5 \\&\\& <1.12,' cpphs.cabal";}) super.cpphs; 89 89 data-fix = doJailbreak super.data-fix; 90 - dbus = self.dbus_1_2_26; 90 + dbus = self.dbus_1_2_27; 91 91 dec = doJailbreak super.dec; 92 92 ed25519 = doJailbreak super.ed25519; 93 93 ghc-byteorder = doJailbreak super.ghc-byteorder; ··· 131 131 singleton-bool = doJailbreak super.singleton-bool; 132 132 servant = doJailbreak super.servant; 133 133 servant-swagger = doJailbreak super.servant-swagger; 134 + 135 + # Depends on utf8-light which isn't maintained / doesn't support base >= 4.16 136 + # https://github.com/haskell-infra/hackage-trustees/issues/347 137 + # https://mail.haskell.org/pipermail/haskell-cafe/2022-October/135613.html 138 + language-javascript_0_7_0_0 = dontCheck super.language-javascript_0_7_0_0; 134 139 135 140 # 2022-09-02: Too strict bounds on lens 136 141 # https://github.com/haskell-servant/servant/pull/1607/files
+5 -31
pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
··· 10 10 11 11 with haskellLib; 12 12 self: super: let 13 - doctest_0_20_broken = p: checkAgainAfter self.doctest "0.20.0" "doctest broken on 9.4" (dontCheck p); 14 13 jailbreakForCurrentVersion = p: v: checkAgainAfter p v "bad bounds" (doJailbreak p); 15 14 in { 16 15 llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages; ··· 62 61 # 0.30 introduced support for GHC 9.2. 63 62 cryptonite = doDistribute self.cryptonite_0_30; 64 63 65 - # Too strict bound on base 66 - # https://github.com/haskell/cabal/issues/8509 67 - # Requested versions of Cabal, Cabal-syntax and process match GHC 9.4's for now 68 - cabal-install = doJailbreak super.cabal-install; 69 - cabal-install-solver = doJailbreak super.cabal-install-solver; 70 - 71 - # Test failure due to new Cabal 3.8 version. Since the failure only pertains 72 - # to a change in how Cabal internally represents some platforms and we depend 73 - # on the type of representation anywhere, this failure is harmless. Can be 74 - # removed after https://github.com/NixOS/cabal2nix/pull/571 is merged. 75 - # TODO(@sternenseemann): merge and release a fixed version 76 - distribution-nixpkgs = dontCheck super.distribution-nixpkgs; 77 64 cabal2nix = 78 65 # cabal2nix depends on foundation, which is broken on aarch64-linux. 79 66 # https://github.com/haskell-foundation/foundation/issues/571 80 67 overrideCabal 81 68 (drv: { badPlatforms = [ "aarch64-linux" ]; }) 82 - (dontCheck super.cabal2nix); 83 - cabal2nix-unstable = dontCheck super.cabal2nix-unstable; 69 + super.cabal2nix; 84 70 85 - # build fails on due to ghc api changes 86 - # unfinished PR that doesn't yet compile: 87 - # https://github.com/sol/doctest/pull/375 88 - doctest = markBroken super.doctest_0_20_0; 71 + doctest = self.doctest_0_20_1; 89 72 # consequences of doctest breakage follow: 90 - http-types = doctest_0_20_broken super.http-types; 91 - iproute = doctest_0_20_broken super.iproute; 92 - foldl = doctest_0_20_broken super.foldl; 93 - prettyprinter-ansi-terminal = doctest_0_20_broken super.prettyprinter-ansi-terminal; 94 - pretty-simple = doctest_0_20_broken super.pretty-simple; 95 - http-date = doctest_0_20_broken super.http-date; 96 - network-byte-order = doctest_0_20_broken super.network-byte-order; 97 - co-log-core = doctest_0_20_broken (doJailbreak super.co-log-core); 98 - xml-conduit = doctest_0_20_broken (dontCheck super.xml-conduit); 99 - validation-selective = doctest_0_20_broken (dontCheck super.validation-selective); 100 73 101 74 double-conversion = markBroken super.double-conversion; 102 75 blaze-textual = checkAgainAfter super.double-conversion "2.0.4.1" "double-conversion fails to build; required for testsuite" (dontCheck super.blaze-textual); ··· 105 78 lucid = jailbreakForCurrentVersion super.lucid "2.11.1"; 106 79 invariant = jailbreakForCurrentVersion super.invariant "0.5.6"; 107 80 implicit-hie-cradle = jailbreakForCurrentVersion super.implicit-hie-cradle "0.5.0.0"; 81 + # https://github.com/co-log/co-log-core/pull/22#issuecomment-1294040208 82 + co-log-core = jailbreakForCurrentVersion super.co-log-core "0.3.1.0"; 108 83 109 84 haskell-src-meta = doJailbreak super.haskell-src-meta; 110 85 ··· 114 89 # Jailbreaks & Version Updates 115 90 116 91 aeson = self.aeson_2_1_1_0; 117 - aeson-diff = doctest_0_20_broken (dontCheck super.aeson-diff); 118 92 lens-aeson = self.lens-aeson_1_2_2; 119 93 120 94 assoc = doJailbreak super.assoc; ··· 153 127 154 128 # 2022-09-02: Too strict bounds on lens 155 129 # https://github.com/GetShopTV/swagger2/pull/242 156 - swagger2 = doctest_0_20_broken (dontCheck (doJailbreak super.swagger2)); 130 + swagger2 = doJailbreak super.swagger2; 157 131 158 132 base-orphans = dontCheck super.base-orphans; 159 133
+14 -2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 264 264 - avatar-generator 265 265 - aviation-units 266 266 - avl-static 267 + - avro 267 268 - avro-piper 268 269 - avr-shake 269 270 - avwx ··· 745 746 - codo-notation 746 747 - coin 747 748 - coinbase-pro 749 + - cointracking-imports 748 750 - collada-output 749 751 - collapse-util 750 752 - collections ··· 1149 1151 - djinn-th 1150 1152 - dmcc 1151 1153 - dmenu 1154 + - dnf-repo 1152 1155 - dns-patterns 1153 1156 - dnsrbl 1154 1157 - dnssd ··· 1257 1260 - edit 1258 1261 - edit-lenses 1259 1262 - editline 1263 + - effectful-st 1260 1264 - effect-handlers 1261 1265 - effective-aspects 1262 1266 - effect-monad ··· 1357 1361 - eventful-sql-common 1358 1362 - eventsource-api 1359 1363 - eventstore 1364 + - eventuo11y 1365 + - eventuo11y-dsl 1360 1366 - evoke 1361 1367 - ewe 1362 1368 - exact-cover ··· 1391 1397 - extended-containers 1392 1398 - extensible-effects-concurrent 1393 1399 - extensible-skeleton 1394 - - extensions 1395 1400 - Extra 1396 1401 - extractelf 1397 1402 - ez3 ··· 2351 2356 - hquantlib 2352 2357 - hquery 2353 2358 - hR 2359 + - h-raylib 2354 2360 - hreq-core 2355 2361 - h-reversi 2356 2362 - hricket ··· 3340 3346 - monoid-owns 3341 3347 - monoidplus 3342 3348 - monoids 3349 + - monomer-hagrid 3343 3350 - monopati 3344 3351 - monus 3345 3352 - monzo ··· 3591 3598 - Omega 3592 3599 - om-elm 3593 3600 - om-fail 3601 + - om-fork 3594 3602 - om-http 3595 3603 - om-http-logging 3596 3604 - omnifmt ··· 4107 4115 - Pup-Events-Server 4108 4116 - pure-io 4109 4117 - pure-priority-queue 4118 + - purescript 4110 4119 - purescript-tsd-gen 4111 4120 - pure-zlib 4112 4121 - pushbullet ··· 5007 5016 - Tablify 5008 5017 - tabloid 5009 5018 - tabs 5010 - - taffybar 5011 5019 - tag-bits 5012 5020 - tagged-exception-core 5013 5021 - tagged-timers ··· 5365 5373 - unescaping-print 5366 5374 - unfix-binders 5367 5375 - unfoldable 5376 + - unicode-data-names 5377 + - unicode-data-scripts 5378 + - unicode-data-security 5368 5379 - unicode-prelude 5369 5380 - unicode-symbols 5370 5381 - unicode-tricks ··· 5676 5687 - xleb 5677 5688 - xls 5678 5689 - xlsior 5690 + - xlsx-tabular 5679 5691 - xlsx-templater 5680 5692 - xml2json 5681 5693 - xml-conduit-decode
+1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 416 416 - rel8 417 417 - regex-rure 418 418 - jacinda 419 + - citeproc 419 420 # owothia 420 421 - irc-client 421 422 - chatter
+43 -44
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.28 1 + # Stackage LTS 19.30 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 706 706 - executable-path ==0.0.3.1 707 707 - exit-codes ==1.0.0 708 708 - exomizer ==1.0.0 709 - - experimenter ==0.1.0.12 709 + - experimenter ==0.1.0.14 710 710 - expiring-cache-map ==0.0.6.1 711 711 - explainable-predicates ==0.1.2.3 712 712 - explicit-exception ==0.1.10 ··· 725 725 - fakedata-quickcheck ==0.2.0 726 726 - fakefs ==0.3.0.2 727 727 - fakepull ==0.3.0.2 728 - - faktory ==1.1.2.3 728 + - faktory ==1.1.2.4 729 729 - fast-builder ==0.1.3.0 730 730 - fast-logger ==3.1.1 731 731 - fast-math ==1.0.2 ··· 887 887 - ghc-syntax-highlighter ==0.0.7.0 888 888 - ghc-tcplugins-extra ==0.4.3 889 889 - ghc-trace-events ==0.1.2.6 890 - - ghc-typelits-extra ==0.4.3 891 - - ghc-typelits-knownnat ==0.7.6 892 - - ghc-typelits-natnormalise ==0.7.6 890 + - ghc-typelits-extra ==0.4.4 891 + - ghc-typelits-knownnat ==0.7.7 892 + - ghc-typelits-natnormalise ==0.7.7 893 893 - ghc-typelits-presburger ==0.6.2.0 894 894 - ghost-buster ==0.1.1.0 895 - - gi-atk ==2.0.24 896 - - gi-cairo ==1.0.26 895 + - gi-atk ==2.0.25 896 + - gi-cairo ==1.0.27 897 897 - gi-cairo-connector ==0.1.1 898 - - gi-cairo-render ==0.1.1 899 - - gi-dbusmenu ==0.4.10 900 - - gi-dbusmenugtk3 ==0.4.11 901 - - gi-freetype2 ==2.0.1 902 - - gi-gdk ==3.0.25 903 - - gi-gdkpixbuf ==2.0.28 904 - - gi-gdkx11 ==3.0.12 905 - - gi-gio ==2.0.29 906 - - gi-glib ==2.0.26 907 - - gi-gmodule ==2.0.2 908 - - gi-gobject ==2.0.27 909 - - gi-graphene ==1.0.4 910 - - gi-gtk ==3.0.38 911 - - gi-gtk-hs ==0.3.12 912 - - gi-gtksource ==3.0.25 913 - - gi-harfbuzz ==0.0.6 914 - - gi-javascriptcore ==4.0.24 898 + - gi-cairo-render ==0.1.2 899 + - gi-dbusmenu ==0.4.11 900 + - gi-dbusmenugtk3 ==0.4.12 901 + - gi-freetype2 ==2.0.2 902 + - gi-gdk ==3.0.26 903 + - gi-gdkpixbuf ==2.0.29 904 + - gi-gdkx11 ==3.0.13 905 + - gi-gio ==2.0.30 906 + - gi-glib ==2.0.27 907 + - gi-gmodule ==2.0.3 908 + - gi-gobject ==2.0.28 909 + - gi-graphene ==1.0.5 910 + - gi-gtk ==3.0.39 911 + - gi-gtk-hs ==0.3.13 912 + - gi-gtksource ==3.0.26 913 + - gi-harfbuzz ==0.0.7 914 + - gi-javascriptcore ==4.0.25 915 915 - ginger ==0.10.4.0 916 - - gi-pango ==1.0.26 916 + - gi-pango ==1.0.27 917 917 - githash ==0.1.6.2 918 918 - github ==0.27 919 919 - github-release ==2.0.0.2 ··· 921 921 - github-types ==0.2.1 922 922 - github-webhooks ==0.15.0 923 923 - gitrev ==1.3.1 924 - - gi-vte ==2.91.29 925 - - gi-xlib ==2.0.11 924 + - gi-vte ==2.91.30 925 + - gi-xlib ==2.0.12 926 926 - gl ==0.9 927 - - glabrous ==2.0.5 927 + - glabrous ==2.0.6 928 928 - glasso ==0.1.0 929 929 - GLFW-b ==3.3.0.0 930 930 - Glob ==0.10.2 ··· 993 993 - haskeline ==0.8.2 994 994 - haskell-awk ==1.2.0.1 995 995 - haskell-gi ==0.26.1 996 - - haskell-gi-base ==0.26.1 996 + - haskell-gi-base ==0.26.2 997 997 - haskell-gi-overloading ==1.0 998 998 - haskell-lexer ==1.1 999 999 - haskell-lsp-types ==0.24.0.0 ··· 1016 1016 - has-transformers ==0.1.0.4 1017 1017 - hasty-hamiltonian ==1.3.4 1018 1018 - HaTeX ==3.22.3.1 1019 - - HaXml ==1.25.11 1019 + - HaXml ==1.25.12 1020 1020 - haxr ==3000.11.4.1 1021 1021 - HCodecs ==0.5.2 1022 1022 - hdaemonize ==0.5.6 ··· 1385 1385 - lazysmallcheck ==0.6 1386 1386 - lca ==0.4 1387 1387 - leancheck ==0.9.12 1388 - - leancheck-instances ==0.0.4 1388 + - leancheck-instances ==0.0.5 1389 1389 - leapseconds-announced ==2017.1.0.1 1390 1390 - learn-physics ==0.6.5 1391 1391 - lens ==5.0.1 ··· 1548 1548 - mock-time ==0.1.0 1549 1549 - mod ==0.1.2.2 1550 1550 - model ==0.5 1551 - - modern-uri ==0.3.4.4 1551 + - modern-uri ==0.3.5.0 1552 1552 - modular ==0.1.0.8 1553 1553 - monad-chronicle ==1.0.1 1554 1554 - monad-control ==1.0.3.1 ··· 1579 1579 - monads-tf ==0.1.0.3 1580 1580 - monad-time ==0.3.1.0 1581 1581 - mongoDB ==2.7.1.1 1582 - - monoidal-containers ==0.6.2.0 1582 + - monoidal-containers ==0.6.3.0 1583 1583 - monoid-extras ==0.6.1 1584 1584 - monoid-subclasses ==1.1.3 1585 1585 - monoid-transformer ==0.0.4 ··· 1651 1651 - network-simple-tls ==0.4 1652 1652 - network-transport ==0.5.4 1653 1653 - network-transport-composed ==0.2.1 1654 - - network-transport-tcp ==0.8.0 1655 - - network-transport-tests ==0.3.0 1654 + - network-transport-tcp ==0.8.1 1655 + - network-transport-tests ==0.3.1 1656 1656 - network-uri ==2.6.4.1 1657 1657 - network-wait ==0.1.2.0 1658 1658 - newtype ==0.2.2.0 ··· 1766 1766 - partial-isomorphisms ==0.2.3.0 1767 1767 - partial-order ==0.2.0.0 1768 1768 - partial-semigroup ==0.5.1.14 1769 - - password ==3.0.1.0 1769 + - password ==3.0.2.0 1770 1770 - password-instances ==3.0.0.0 1771 1771 - password-types ==1.0.0.0 1772 1772 - pasta-curves ==0.0.1.0 ··· 1786 1786 - pava ==0.1.1.4 1787 1787 - pcg-random ==0.1.3.7 1788 1788 - pcre2 ==2.1.1.1 1789 - - pcre-heavy ==1.0.0.2 1789 + - pcre-heavy ==1.0.0.3 1790 1790 - pcre-light ==0.4.1.0 1791 1791 - pcre-utils ==0.1.8.2 1792 1792 - pdc ==0.1.1 ··· 1822 1822 - phatsort ==0.5.0.1 1823 1823 - picosat ==0.1.6 1824 1824 - pid1 ==0.1.3.0 1825 - - pinch ==0.4.1.2 1825 + - pinch ==0.4.2.0 1826 1826 - pipes ==4.3.16 1827 1827 - pipes-attoparsec ==0.5.1.5 1828 1828 - pipes-bytestring ==2.1.7 ··· 1862 1862 - polysemy-plugin ==0.4.1.1 1863 1863 - polysemy-several ==0.1.1.0 1864 1864 - polysemy-socket ==0.0.2.0 1865 - - polysemy-uncontrolled ==0.1.1.0 1865 + - polysemy-uncontrolled ==0.1.1.1 1866 1866 - polysemy-video ==0.2.0.1 1867 1867 - polysemy-vinyl ==0.1.5.0 1868 1868 - polysemy-webserver ==0.2.1.1 ··· 2379 2379 - svg-builder ==0.1.1 2380 2380 - SVGFonts ==1.8.0.1 2381 2381 - svg-tree ==0.6.2.4 2382 - - swagger2 ==2.8.4 2382 + - swagger2 ==2.8.5 2383 2383 - swish ==0.10.2.0 2384 2384 - syb ==0.7.2.2 2385 2385 - sydtest-discover ==0.0.0.2 ··· 2595 2595 - type-spec ==0.4.0.0 2596 2596 - typography-geometry ==1.0.1.0 2597 2597 - tz ==0.1.3.6 2598 - - tzdata ==0.2.20220923.0 2598 + - tzdata ==0.2.20221011.0 2599 2599 - ua-parser ==0.7.7.0 2600 2600 - uglymemo ==0.1.0.1 2601 2601 - unagi-chan ==0.4.1.4 ··· 2614 2614 - unicode-transforms ==0.4.0.1 2615 2615 - unidecode ==0.1.0.4 2616 2616 - unification-fd ==0.11.2 2617 - - union ==0.1.2 2618 2617 - union-angle ==0.1.0.1 2619 2618 - union-find ==0.2 2620 2619 - unipatterns ==0.0.0.0 ··· 2696 2695 - vector-th-unbox ==0.2.2 2697 2696 - vectortiles ==1.5.1 2698 2697 - verbosity ==0.4.0.0 2699 - - versions ==5.0.3 2698 + - versions ==5.0.4 2700 2699 - vformat ==0.14.1.0 2701 2700 - vformat-time ==0.1.0.0 2702 2701 - ViennaRNAParser ==1.3.3
+16 -4
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 234 234 - KiCS-debugger 235 235 - KiCS-prophecy 236 236 - LDAPv3 237 + - LPPaver 237 238 - LambdaHack 238 239 - LambdaINet 239 240 - LambdaPrettyQuote ··· 811 812 - blubber 812 813 - bluetile 813 814 - blunt 815 + - bnb-staking-csvs 814 816 - bno055-haskell 815 817 - bogre-banana 816 818 - boilerplate ··· 922 924 - cheapskate-terminal 923 925 - check-pvp 924 926 - chevalier-common 927 + - chiasma-test 925 928 - chitauri 926 929 - choose-exe 927 930 - chorale-geo ··· 1346 1349 - eventsource-geteventstore-store 1347 1350 - eventsource-store-specs 1348 1351 - eventsource-stub-store 1352 + - eventuo11y-batteries 1353 + - eventuo11y-json 1349 1354 - every-bit-counts 1350 1355 - exception-monads-fd 1351 1356 - exference ··· 1555 1560 - gi-ges 1556 1561 - gi-gsk 1557 1562 - gi-gstpbutils 1558 - - gi-gtk_4_0_5 1563 + - gi-gtk_4_0_6 1559 1564 - gipeda 1560 1565 - git-config 1561 1566 - git-fmt ··· 2134 2139 - hpaste 2135 2140 - hpc-tracer 2136 2141 - hplayground 2142 + - hpqtypes-effectful 2137 2143 - hpqtypes-extras 2138 2144 - hprotoc-fork 2139 2145 - hps ··· 2173 2179 - hsfacter 2174 2180 - hsinspect-lsp 2175 2181 - hslogstash 2182 + - hslua-module-zip 2176 2183 - hsnsq 2177 2184 - hspec-expectations-pretty 2178 2185 - hspec-pg-transact ··· 2224 2231 - huzzy 2225 2232 - hw-all 2226 2233 - hw-aws-sqs-conduit 2234 + - hw-kafka-avro 2227 2235 - hw-uri 2228 2236 - hworker-ses 2229 2237 - hwormhole ··· 2278 2286 - indentation-parsec 2279 2287 - indentation-trifecta 2280 2288 - indexation 2281 - - indieweb-algorithms 2282 2289 - indigo 2283 2290 - infernu 2284 2291 - infinity ··· 2446 2453 - lambdiff 2447 2454 - lang 2448 2455 - language-Modula2 2456 + - language-avro 2449 2457 - language-boogie 2450 2458 - language-ecmascript-analysis 2451 2459 - language-eiffel ··· 2653 2661 - metar-http 2654 2662 - metronome 2655 2663 - micro-gateway 2656 - - microformats2-parser 2657 2664 - microformats2-types 2658 2665 - midimory 2659 2666 - mighttpd ··· 2715 2722 - morpheus-graphql-cli 2716 2723 - morpheus-graphql-client 2717 2724 - morpheus-graphql-code-gen 2725 + - morpheus-graphql-code-gen-utils 2726 + - morpheus-graphql-server 2718 2727 - morpheus-graphql-subscriptions 2719 2728 - morphisms-functors-inventory 2720 2729 - mortred ··· 2994 3003 - pisigma 2995 3004 - pitchtrack 2996 3005 - pkgtreediff 3006 + - pkgtreediff_0_6_0 2997 3007 - planet-mitchell 2998 3008 - playlists-http 2999 3009 - plocketed ··· 3272 3282 - ribosome-host 3273 3283 - ribosome-host-test 3274 3284 - ribosome-root 3285 + - ribosome-test 3275 3286 - ridley-extras 3276 3287 - rio-process-pool 3277 3288 - riot ··· 3473 3484 - skeletons 3474 3485 - sketch-frp-copilot 3475 3486 - skylark-client 3476 - - skylighting_0_13 3487 + - skylighting_0_13_1 3477 3488 - slate 3478 3489 - slidemews 3479 3490 - slip32 ··· 3528 3539 - sock2stream 3529 3540 - socket-io 3530 3541 - sockets 3542 + - solana-staking-csvs 3531 3543 - solga-swagger 3532 3544 - solr 3533 3545 - souffle-dsl
+20 -2
pkgs/development/haskell-modules/configuration-nix.nix
··· 27 27 # If you have an override of this kind, see configuration-common.nix instead. 28 28 { pkgs, haskellLib }: 29 29 30 + let 31 + inherit (pkgs) lib; 32 + in 33 + 30 34 with haskellLib; 31 35 32 36 # All of the overrides in this set should look like: ··· 788 792 # Tests access internet 789 793 prune-juice = dontCheck super.prune-juice; 790 794 795 + citeproc = lib.pipe super.citeproc [ 796 + enableSeparateBinOutput 797 + # Enable executable being built and add missing dependencies 798 + (enableCabalFlag "executable") 799 + (addBuildDepends [ self.aeson-pretty ]) 800 + # TODO(@sternenseemann): we may want to enable that for improved performance 801 + # Is correctness good enough since 0.5? 802 + (disableCabalFlag "icu") 803 + ]; 804 + 791 805 # based on https://github.com/gibiansky/IHaskell/blob/aafeabef786154d81ab7d9d1882bbcd06fc8c6c4/release.nix 792 806 ihaskell = overrideCabal (drv: { 793 807 # ihaskell's cabal file forces building a shared executable, which we need ··· 887 901 ''; 888 902 }) super.nvfetcher); 889 903 890 - rel8 = addTestToolDepend pkgs.postgresql super.rel8; 904 + rel8 = pkgs.lib.pipe super.rel8 [ 905 + (addTestToolDepend pkgs.postgresql) 906 + # https://github.com/NixOS/nixpkgs/issues/198495 907 + (overrideCabal { doCheck = pkgs.postgresql.doCheck; }) 908 + ]; 891 909 892 910 cachix = self.generateOptparseApplicativeCompletions [ "cachix" ] (super.cachix.override { nix = pkgs.nixVersions.nix_2_9; }); 893 911 ··· 1054 1072 # Make sure that Cabal 3.8.* can be built as-is 1055 1073 Cabal_3_8_1_0 = doDistribute (super.Cabal_3_8_1_0.override { 1056 1074 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 1057 - process = self.process_1_6_15_0; 1075 + process = self.process_1_6_16_0; 1058 1076 }); 1059 1077 1060 1078 # cabal-install switched to build type simple in 3.2.0.0
+1608 -926
pkgs/development/haskell-modules/hackage-packages.nix
··· 2069 2069 }: 2070 2070 mkDerivation { 2071 2071 pname = "Blammo"; 2072 - version = "1.0.2.3"; 2073 - sha256 = "1c113fdjwfbh01n3xsprya4dp6wc4m9xvilx9fyb3lbzdmmii624"; 2072 + version = "1.1.0.0"; 2073 + sha256 = "02j49dzwlx0p39njspz10vbj5qybb1l2l2lk4gdrbicp953czaa8"; 2074 2074 libraryHaskellDepends = [ 2075 2075 aeson base bytestring case-insensitive clock containers dlist 2076 2076 envparse exceptions fast-logger http-types lens monad-logger-aeson ··· 9618 9618 pname = "HStringTemplate"; 9619 9619 version = "0.8.8"; 9620 9620 sha256 = "1n8ci0kzjcgnqh4dfpqwlh7mnlzyiqiqc6hc0zr65p0balbg8zbi"; 9621 - revision = "2"; 9622 - editedCabalFile = "1iq8ni7im7b0q3hpchyc9j7iw1r431xlikwsqlhiwnw61q2c5qi5"; 9621 + revision = "3"; 9622 + editedCabalFile = "0316jr5npssxxxj85x74vasvm2ib09mjv2jy7abwjs7cfqbpnr8w"; 9623 9623 libraryHaskellDepends = [ 9624 9624 array base blaze-builder bytestring containers deepseq directory 9625 9625 filepath mtl old-locale parsec pretty semigroups syb ··· 10062 10062 }: 10063 10063 mkDerivation { 10064 10064 pname = "HaXml"; 10065 - version = "1.25.11"; 10066 - sha256 = "1l5kmiqvnqzdzz3jyaphy7ckglm6jhn0b10kf47yizv0w496bmjg"; 10065 + version = "1.25.12"; 10066 + sha256 = "1xaqp519dw948v00q309msx07yhzxbd0k8ds5q434l6g6cmsqqgc"; 10067 10067 isLibrary = true; 10068 10068 isExecutable = true; 10069 10069 libraryHaskellDepends = [ ··· 12612 12612 hydraPlatforms = lib.platforms.none; 12613 12613 }) {}; 12614 12614 12615 + "LPPaver" = callPackage 12616 + ({ mkDerivation, aern2-mfun, aern2-mp, base, collect-errors 12617 + , containers, directory, mixed-types-num, optparse-applicative 12618 + , parallel, pqueue, PropaFP, simplex-method 12619 + }: 12620 + mkDerivation { 12621 + pname = "LPPaver"; 12622 + version = "0.0.3.1"; 12623 + sha256 = "0avnvdd538akcf8dsybyp4k3sb539n38d0vv6fv7psvhz8bwbr7a"; 12624 + isLibrary = true; 12625 + isExecutable = true; 12626 + libraryHaskellDepends = [ 12627 + aern2-mfun aern2-mp base collect-errors containers directory 12628 + mixed-types-num optparse-applicative parallel pqueue PropaFP 12629 + simplex-method 12630 + ]; 12631 + executableHaskellDepends = [ 12632 + aern2-mfun aern2-mp base collect-errors containers directory 12633 + mixed-types-num optparse-applicative parallel pqueue PropaFP 12634 + simplex-method 12635 + ]; 12636 + testHaskellDepends = [ 12637 + aern2-mfun aern2-mp base collect-errors containers directory 12638 + mixed-types-num optparse-applicative parallel pqueue PropaFP 12639 + simplex-method 12640 + ]; 12641 + description = "An automated prover targeting problems that involve nonlinear real arithmetic"; 12642 + license = lib.licenses.mpl20; 12643 + hydraPlatforms = lib.platforms.none; 12644 + mainProgram = "lppaver"; 12645 + }) {}; 12646 + 12615 12647 "LParse" = callPackage 12616 12648 ({ mkDerivation, base, containers }: 12617 12649 mkDerivation { ··· 14246 14278 }) {}; 14247 14279 14248 14280 "Monadoro" = callPackage 14249 - ({ mkDerivation, ansi-terminal, base, doctest, hspec, process, time 14250 - }: 14281 + ({ mkDerivation, base, doctest, hspec, process, time }: 14251 14282 mkDerivation { 14252 14283 pname = "Monadoro"; 14253 - version = "0.2.8.1"; 14254 - sha256 = "0w0wjxvg36y1qdvljqlg2l4dw5jwbhmm1q6979rns6ncvlyjyyvn"; 14284 + version = "0.3.3.0"; 14285 + sha256 = "1zya572cc0gml4k9mm2g9z5bakjzz6ivigdc9fpv2bsrnc58a4y4"; 14255 14286 isLibrary = true; 14256 14287 isExecutable = true; 14257 14288 enableSeparateDataOutput = true; 14258 - libraryHaskellDepends = [ ansi-terminal base process time ]; 14259 - executableHaskellDepends = [ ansi-terminal base process time ]; 14260 - testHaskellDepends = [ 14261 - ansi-terminal base doctest hspec process time 14262 - ]; 14289 + libraryHaskellDepends = [ base process time ]; 14290 + executableHaskellDepends = [ base process time ]; 14291 + testHaskellDepends = [ base doctest hspec process time ]; 14263 14292 description = "A minimalistic CLI Pomodoro timer"; 14264 14293 license = lib.licenses.mit; 14265 14294 mainProgram = "monadoro"; ··· 16747 16776 }: 16748 16777 mkDerivation { 16749 16778 pname = "PropaFP"; 16750 - version = "0.1.0.0"; 16751 - sha256 = "1rq39yciyqrzc2ky9w0phg6m00m106mng6vf586rl3yd9v83makg"; 16779 + version = "0.1.1.0"; 16780 + sha256 = "0r69x9i5iq740y6r7v3i86q7vx19qwrad0klmi3iy7a0g7wa5ldy"; 16781 + revision = "1"; 16782 + editedCabalFile = "0sx7198rx2ajcp6mn0ym474h24fizf1cbw0skyw8fanri7jr2i41"; 16752 16783 isLibrary = true; 16753 16784 isExecutable = true; 16754 16785 libraryHaskellDepends = [ ··· 16917 16948 pname = "PyF"; 16918 16949 version = "0.10.2.0"; 16919 16950 sha256 = "0a1bq7c3vx6yp7745xr2vlxjsqgqa0s1f7yzqnfsybqwff03zbcw"; 16951 + revision = "1"; 16952 + editedCabalFile = "0hinbn56d8bw45zxazpmgv1b6lcmlcys9jfdkv2lyr5j44pzpvvj"; 16920 16953 libraryHaskellDepends = [ 16921 16954 base bytestring ghc ghc-boot mtl parsec template-haskell text time 16922 16955 ]; ··· 26300 26333 license = lib.licenses.bsd3; 26301 26334 }) {}; 26302 26335 26303 - "aeson-typescript_0_4_0_0" = callPackage 26336 + "aeson-typescript_0_4_1_0" = callPackage 26304 26337 ({ mkDerivation, aeson, base, bytestring, containers, directory 26305 26338 , filepath, hspec, mtl, process, string-interpolate 26306 26339 , template-haskell, temporary, text, th-abstraction, transformers ··· 26308 26341 }: 26309 26342 mkDerivation { 26310 26343 pname = "aeson-typescript"; 26311 - version = "0.4.0.0"; 26312 - sha256 = "0qy8hnrczyfxlyayrs9x1sp25wv9klc5n6c1pdds4lf09aq201ji"; 26344 + version = "0.4.1.0"; 26345 + sha256 = "0zr6p0yyzm1mdhnyycd37alw3xg2jmx303mbd5a7251wffxc42n8"; 26313 26346 libraryHaskellDepends = [ 26314 26347 aeson base containers mtl string-interpolate template-haskell text 26315 26348 th-abstraction transformers unordered-containers ··· 26418 26451 pname = "aeson-yaml"; 26419 26452 version = "1.1.0.1"; 26420 26453 sha256 = "06x1l0a0dvzf8n2xmqny5qpsgdsl03xlh2z9x7wdxiykl8p4xd24"; 26421 - revision = "2"; 26422 - editedCabalFile = "1pylybgbj1z3b7yj6xig60w2x9j3ljr0s0pfxsrqdym2c65dv7ww"; 26454 + revision = "3"; 26455 + editedCabalFile = "11srm7kkslnicqvbk728kzpy58am8rz680f7l6axn2nfh5ykx8n6"; 26423 26456 isLibrary = true; 26424 26457 isExecutable = true; 26425 26458 libraryHaskellDepends = [ ··· 38057 38090 }: 38058 38091 mkDerivation { 38059 38092 pname = "avro"; 38060 - version = "0.6.1.1"; 38061 - sha256 = "16ii6mvls85i0gfmq9c2mhzan3rcfz3ishnk80rw5z69r29z2wyl"; 38093 + version = "0.6.1.2"; 38094 + sha256 = "02qczc2hih1yvmarbi4vjccvh8x2n8wsjllq3hm42shkd9xl0s6a"; 38062 38095 libraryHaskellDepends = [ 38063 38096 aeson array base base16-bytestring bifunctors binary bytestring 38064 38097 containers data-binary-ieee754 deepseq fail HasBigDecimal hashable ··· 38081 38114 ]; 38082 38115 description = "Avro serialization support for Haskell"; 38083 38116 license = lib.licenses.bsd3; 38117 + hydraPlatforms = lib.platforms.none; 38118 + broken = true; 38084 38119 }) {}; 38085 38120 38086 38121 "avro-piper" = callPackage ··· 38241 38276 }: 38242 38277 mkDerivation { 38243 38278 pname = "aws-arn"; 38244 - version = "0.2.0.0"; 38245 - sha256 = "1amqcycxncgcs7nvpxrr2f2r2g6dhyfmlcwsk2am8l9ncmrr8ijx"; 38279 + version = "0.3.0.0"; 38280 + sha256 = "042lzvm1wpdqfrmgl1ygqgkdisvjyf9jfg9aqnibwhk2pw354dj3"; 38246 38281 libraryHaskellDepends = [ 38247 38282 base deriving-compat hashable profunctors tagged text 38248 38283 ]; ··· 41638 41673 }) {}; 41639 41674 41640 41675 "bearriver" = callPackage 41641 - ({ mkDerivation, base, dunai, MonadRandom, mtl, simple-affine-space 41642 - , transformers 41676 + ({ mkDerivation, base, deepseq, dunai, MonadRandom, mtl 41677 + , simple-affine-space, transformers 41643 41678 }: 41644 41679 mkDerivation { 41645 41680 pname = "bearriver"; 41646 - version = "0.13.6"; 41647 - sha256 = "07ga08r2wwwd2n7jq2bc93jaiqymn4kih2mjb43273zz29kxds99"; 41681 + version = "0.13.7"; 41682 + sha256 = "1synznzas89cyp05lhiwxfsbmz5zv2pyjn08548dr21ih1x4560j"; 41648 41683 libraryHaskellDepends = [ 41649 - base dunai MonadRandom mtl simple-affine-space transformers 41684 + base deepseq dunai MonadRandom mtl simple-affine-space transformers 41650 41685 ]; 41651 41686 description = "FRP Yampa replacement implemented with Monadic Stream Functions"; 41652 41687 license = lib.licenses.bsd3; ··· 46956 46991 ]; 46957 46992 description = "Generate CSV Exports of Your BNB Staking Rewards"; 46958 46993 license = lib.licenses.bsd3; 46994 + hydraPlatforms = lib.platforms.none; 46959 46995 mainProgram = "bnb-staking-csvs"; 46960 46996 }) {}; 46961 46997 ··· 48395 48431 hydraPlatforms = lib.platforms.none; 48396 48432 }) {}; 48397 48433 48398 - "brick_1_3" = callPackage 48434 + "brick_1_4" = callPackage 48399 48435 ({ mkDerivation, base, bimap, bytestring, config-ini, containers 48400 48436 , contravariant, data-clist, deepseq, directory, exceptions 48401 48437 , filepath, microlens, microlens-mtl, microlens-th, mtl, QuickCheck ··· 48404 48440 }: 48405 48441 mkDerivation { 48406 48442 pname = "brick"; 48407 - version = "1.3"; 48408 - sha256 = "0lpd6685ya0va0a6n7cw70f5b1s13y8ynzac0gkxyqb1ivzj0hsb"; 48443 + version = "1.4"; 48444 + sha256 = "12gwwqq38x0k6hjcn72dpcdwi0lrvyy8gxmp884h22l73xa4vda6"; 48409 48445 isLibrary = true; 48410 48446 isExecutable = true; 48411 48447 libraryHaskellDepends = [ ··· 48467 48503 }: 48468 48504 mkDerivation { 48469 48505 pname = "brick-panes"; 48470 - version = "1.0.0.0"; 48471 - sha256 = "1q4j4scamy1rracjx78nld3r2grn53ifs7qjhk80w8qdjabjh6vr"; 48506 + version = "1.0.0.1"; 48507 + sha256 = "05f5c99b44c6aajx12hx4ayxjldbj4n0fi70i95q18qxy9aacljw"; 48472 48508 isLibrary = true; 48473 48509 isExecutable = true; 48474 48510 libraryHaskellDepends = [ base brick containers microlens vty ]; ··· 49579 49615 pname = "bugzilla-redhat"; 49580 49616 version = "1.0.0"; 49581 49617 sha256 = "1g95j03y2sg1fwdf48a05nijqllkd0m7scn1wbfyzvb57q716hlx"; 49582 - revision = "2"; 49583 - editedCabalFile = "1x4vkr7wxwdvzdcam9zawmbc1ssl8ifpyaczimw2h63l47vv4y8b"; 49618 + revision = "3"; 49619 + editedCabalFile = "1f5mbfskr7h14ywg3v23x3r7d0k80z4ksflvqsbzkb2z3nqikj4a"; 49584 49620 isLibrary = true; 49585 49621 isExecutable = true; 49586 49622 libraryHaskellDepends = [ ··· 52090 52126 pname = "cabal-install"; 52091 52127 version = "3.8.1.0"; 52092 52128 sha256 = "1rk7xb86c1vgarv1m16d2i82fiig6q119j51gvq2pq8l5rpl7kk1"; 52093 - revision = "1"; 52094 - editedCabalFile = "0d6g8q9g8xv69dk51d2jjnc2bv9ah59vn1p5xg1hn42filh35sa1"; 52129 + revision = "2"; 52130 + editedCabalFile = "1l2lvljkr1ibnr3py7xfp2csxyb3rzlhy7jlpx8gkamq9cjmi6p2"; 52095 52131 isLibrary = true; 52096 52132 isExecutable = true; 52097 52133 libraryHaskellDepends = [ ··· 52259 52295 pname = "cabal-install-solver"; 52260 52296 version = "3.8.1.0"; 52261 52297 sha256 = "1rzzi3jx5ivxy43vdg460fsbn1p2v5br1havcara65vmqgv6j8yz"; 52298 + revision = "1"; 52299 + editedCabalFile = "1g487j20pj03pc10yaha18v73wh3ackxjgfpfqaj7xznqcbm5xwm"; 52262 52300 libraryHaskellDepends = [ 52263 52301 array base bytestring Cabal Cabal-syntax containers edit-distance 52264 52302 filepath mtl pretty transformers ··· 52817 52855 }: 52818 52856 mkDerivation { 52819 52857 pname = "cabal2nix"; 52820 - version = "2.19.0"; 52821 - sha256 = "1cmx8vas9fryr8sd5a485aa43rdx60l3fbrk1kppwx4s9jw9hq65"; 52858 + version = "2.19.1"; 52859 + sha256 = "1ck7yqvvxkylwh3pw8hj24jg5jqx6hqy3bm37dkg85q9p9fs7nz0"; 52822 52860 isLibrary = true; 52823 52861 isExecutable = true; 52824 52862 libraryHaskellDepends = [ ··· 53773 53811 broken = true; 53774 53812 }) {}; 53775 53813 53814 + "call-alloy_0_4" = callPackage 53815 + ({ mkDerivation, async, base, bytestring, containers, directory 53816 + , extra, filepath, hspec, mtl, process, split, trifecta, unix 53817 + }: 53818 + mkDerivation { 53819 + pname = "call-alloy"; 53820 + version = "0.4"; 53821 + sha256 = "1af4a6inik3dcawn4lwlk01pyx6j5a1ly07qqf0ywkz2pv4ifgdc"; 53822 + enableSeparateDataOutput = true; 53823 + libraryHaskellDepends = [ 53824 + async base bytestring containers directory extra filepath mtl 53825 + process split trifecta unix 53826 + ]; 53827 + testHaskellDepends = [ 53828 + async base bytestring containers directory extra filepath hspec mtl 53829 + process split trifecta unix 53830 + ]; 53831 + description = "A simple library to call Alloy given a specification"; 53832 + license = lib.licenses.mit; 53833 + hydraPlatforms = lib.platforms.none; 53834 + broken = true; 53835 + }) {}; 53836 + 53776 53837 "call-haskell-from-anything" = callPackage 53777 53838 ({ mkDerivation, base, bytestring, data-msgpack, mtl 53778 53839 , storable-endian, template-haskell ··· 53795 53856 }) {}; 53796 53857 53797 53858 "call-plantuml" = callPackage 53798 - ({ mkDerivation, base, bytestring, filepath, hspec, process }: 53859 + ({ mkDerivation, async, base, bytestring, filepath, hspec, process 53860 + }: 53799 53861 mkDerivation { 53800 53862 pname = "call-plantuml"; 53801 - version = "0.0.1"; 53802 - sha256 = "1bx914719566fkhpxxyc22m3x8aq6c134kgs2a6ipf583883yfzh"; 53863 + version = "0.0.1.1"; 53864 + sha256 = "0wipnjcwv4d92vh1nmf228gf8bdy2yc0fana0a7zg5fxkaqznq0v"; 53803 53865 enableSeparateDataOutput = true; 53804 - libraryHaskellDepends = [ base bytestring filepath process ]; 53805 - testHaskellDepends = [ base bytestring filepath hspec process ]; 53866 + libraryHaskellDepends = [ async base bytestring filepath process ]; 53867 + testHaskellDepends = [ 53868 + async base bytestring filepath hspec process 53869 + ]; 53806 53870 description = "A simple library to call PlantUML given a diagram specification"; 53807 53871 license = lib.licenses.mit; 53808 53872 hydraPlatforms = lib.platforms.none; ··· 53849 53913 , GenericPretty, ghc-prim, happy, hmatrix, hspec, hspec-discover 53850 53914 , lattices, lens, matrix, mmorph, mtl, optparse-applicative 53851 53915 , parallel, pipes, pretty, QuickCheck, sbv, silently, singletons 53852 - , strict, syb, syz, template-haskell, temporary, text, time 53853 - , transformers, uniplate, vector, verifiable-expressions, vinyl 53916 + , singletons-base, singletons-th, strict, syb, syz 53917 + , template-haskell, temporary, text, time, transformers, uniplate 53918 + , vector, verifiable-expressions, vinyl 53854 53919 }: 53855 53920 mkDerivation { 53856 53921 pname = "camfort"; 53857 - version = "1.1.2"; 53858 - sha256 = "13a6x4j4f95izwz7g5sykpb2pq4lzwcswi31986gkyl6nicn5cfj"; 53922 + version = "1.2.0"; 53923 + sha256 = "1i2ssa4zlxa0c9gfhzm32rg8kc2fixyqyh203xhd9f82rn113mn8"; 53859 53924 isLibrary = true; 53860 53925 isExecutable = true; 53861 53926 libraryHaskellDepends = [ 53862 53927 array base binary bytestring containers deepseq directory fgl 53863 53928 filepath fortran-src GenericPretty ghc-prim hmatrix lattices lens 53864 - matrix mmorph mtl parallel pipes pretty sbv singletons strict syb 53865 - syz template-haskell text transformers uniplate vector 53866 - verifiable-expressions vinyl 53929 + matrix mmorph mtl parallel pipes pretty sbv singletons 53930 + singletons-base singletons-th strict syb syz template-haskell text 53931 + transformers uniplate vector verifiable-expressions vinyl 53867 53932 ]; 53868 53933 librarySystemDepends = [ flint ]; 53869 53934 libraryToolDepends = [ alex happy ]; 53870 53935 executableHaskellDepends = [ 53871 - base directory fortran-src optparse-applicative 53936 + array base binary bytestring containers directory fgl filepath 53937 + fortran-src hmatrix lattices lens mtl optparse-applicative sbv text 53938 + uniplate verifiable-expressions 53872 53939 ]; 53873 53940 testHaskellDepends = [ 53874 53941 array base binary bytestring containers directory fgl filepath ··· 55826 55893 pname = "cbor-tool"; 55827 55894 version = "0.2.2.0"; 55828 55895 sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p"; 55829 - revision = "3"; 55830 - editedCabalFile = "12sdpffqii9z70kbxn64vg08wlsgd6llbi479nxjc819cdmpgm59"; 55896 + revision = "4"; 55897 + editedCabalFile = "1wr6dlijy5j1b88bfmyvzj5pdipw6rcb40gfik678apr2q7gw0i6"; 55831 55898 isLibrary = false; 55832 55899 isExecutable = true; 55833 55900 executableHaskellDepends = [ ··· 55850 55917 pname = "cborg"; 55851 55918 version = "0.2.8.0"; 55852 55919 sha256 = "07mh5bk61k5dz2x5g7fqw2cv7bjzs7v65yxvzkq7mdbkq8kwhn9f"; 55920 + revision = "1"; 55921 + editedCabalFile = "13m2shrlpvg5s9d40a2463mmckzg50y8jb47zfd6i1rg6q3q6xx6"; 55853 55922 libraryHaskellDepends = [ 55854 55923 array base bytestring containers deepseq ghc-bignum ghc-prim half 55855 55924 primitive text ··· 55872 55941 pname = "cborg-json"; 55873 55942 version = "0.2.5.0"; 55874 55943 sha256 = "1m3w0yyp6xb07fx04g5c52pb0b46vpkgpi32w1c8bz867x2p7hsq"; 55944 + revision = "1"; 55945 + editedCabalFile = "0zzn2p6yl9mqw7agm5w7iiz105078gv66vxr8bqazilgssqk5wyg"; 55875 55946 libraryHaskellDepends = [ 55876 55947 aeson aeson-pretty base cborg scientific text unordered-containers 55877 55948 vector ··· 57633 57704 }) {}; 57634 57705 57635 57706 "chiasma" = callPackage 57636 - ({ mkDerivation, aeson, attoparsec, base, bytestring, composition 57637 - , composition-extra, conduit, conduit-extra, containers, cornea 57638 - , data-default, deepseq, directory, either, exceptions, filepath 57639 - , free, hedgehog, lens, mtl, parsec, parsers, posix-pty 57640 - , prettyprinter, prettyprinter-ansi-terminal, process, random 57641 - , relude, resourcet, split, stm-chans, stm-conduit, tasty 57642 - , tasty-hedgehog, text, transformers, typed-process, unix, unliftio 57643 - , unliftio-core, uuid 57707 + ({ mkDerivation, attoparsec, base, bytestring, composition 57708 + , containers, exon, extra, first-class-families, lens, parsec 57709 + , parsers, path, polysemy, polysemy-conc, polysemy-log 57710 + , polysemy-plugin, polysemy-process, polysemy-time, prelate 57711 + , prettyprinter, prettyprinter-ansi-terminal, random, text 57712 + , transformers, typed-process, uuid 57644 57713 }: 57645 57714 mkDerivation { 57646 57715 pname = "chiasma"; 57647 - version = "0.2.0.0"; 57648 - sha256 = "11pbg9mlmp15hs2wdca0qyhbc94d91xkl75jlcaksla8l1qnnz9m"; 57716 + version = "0.10.0.0"; 57717 + sha256 = "116780x6a6avs2w62r32319w6fqhn2iwvxbfrl83h01iskr57x53"; 57718 + libraryHaskellDepends = [ 57719 + attoparsec base bytestring composition containers exon extra 57720 + first-class-families lens parsec parsers path polysemy 57721 + polysemy-conc polysemy-log polysemy-plugin polysemy-process 57722 + polysemy-time prelate prettyprinter prettyprinter-ansi-terminal 57723 + random text transformers typed-process uuid 57724 + ]; 57725 + description = "A tmux client for Polysemy"; 57726 + license = "BSD-2-Clause-Patent"; 57727 + hydraPlatforms = lib.platforms.none; 57728 + broken = true; 57729 + }) {}; 57730 + 57731 + "chiasma-test" = callPackage 57732 + ({ mkDerivation, base, bytestring, chiasma, chronos, exon, hedgehog 57733 + , lens, path, path-io, polysemy, polysemy-chronos, polysemy-conc 57734 + , polysemy-log, polysemy-plugin, polysemy-process, polysemy-test 57735 + , polysemy-time, prelate, tasty, tasty-hedgehog, text 57736 + , typed-process 57737 + }: 57738 + mkDerivation { 57739 + pname = "chiasma-test"; 57740 + version = "0.10.0.0"; 57741 + sha256 = "0244xxn0j53v0jcvj9d11wfrxjwjpr9247nbgqj8ipz5v56amih3"; 57649 57742 libraryHaskellDepends = [ 57650 - aeson attoparsec base bytestring composition composition-extra 57651 - conduit conduit-extra containers cornea data-default deepseq 57652 - directory either exceptions filepath free lens mtl parsec parsers 57653 - posix-pty prettyprinter prettyprinter-ansi-terminal process random 57654 - relude resourcet split stm-chans stm-conduit text transformers 57655 - typed-process unix unliftio unliftio-core uuid 57743 + base bytestring chiasma chronos exon hedgehog path path-io polysemy 57744 + polysemy-chronos polysemy-conc polysemy-log polysemy-plugin 57745 + polysemy-process polysemy-test polysemy-time prelate text 57746 + typed-process 57656 57747 ]; 57657 57748 testHaskellDepends = [ 57658 - aeson attoparsec base bytestring composition composition-extra 57659 - conduit conduit-extra containers cornea data-default deepseq 57660 - directory either exceptions filepath free hedgehog lens mtl parsec 57661 - parsers posix-pty prettyprinter prettyprinter-ansi-terminal process 57662 - random relude resourcet split stm-chans stm-conduit tasty 57663 - tasty-hedgehog text transformers typed-process unix unliftio 57664 - unliftio-core uuid 57749 + base chiasma hedgehog lens path-io polysemy polysemy-chronos 57750 + polysemy-plugin polysemy-test prelate tasty tasty-hedgehog 57665 57751 ]; 57666 - description = "tmux api"; 57752 + description = "A tmux client for Polysemy"; 57667 57753 license = "BSD-2-Clause-Patent"; 57668 57754 hydraPlatforms = lib.platforms.none; 57669 - broken = true; 57670 57755 }) {}; 57671 57756 57672 57757 "chimera" = callPackage ··· 58258 58343 }: 58259 58344 mkDerivation { 58260 58345 pname = "churros"; 58261 - version = "0.1.5.0"; 58262 - sha256 = "05fb9vmx18dypfw6303y74cbag9vv187w6z402dv4vff35ya4bvh"; 58346 + version = "0.1.6.0"; 58347 + sha256 = "0ksjwdk36i8c90dzp9l24ynd2647ihv20kgv8412qcg3g3wplzpz"; 58263 58348 libraryHaskellDepends = [ 58264 58349 async base containers random stm time unagi-chan 58265 58350 ]; ··· 58280 58365 }: 58281 58366 mkDerivation { 58282 58367 pname = "cicero-api"; 58283 - version = "0.1.1.3"; 58284 - sha256 = "1wsvdi0hfsa6p70a9yag998iyzn3irbydrs17nfxalq5cnzwg0y4"; 58368 + version = "0.1.2.0"; 58369 + sha256 = "1y8dvv9ly64kwnx15ln5gidmab3wdwjclsbf719ajczvaxfkic0z"; 58285 58370 isLibrary = true; 58286 58371 isExecutable = true; 58287 58372 libraryHaskellDepends = [ ··· 58760 58845 ]; 58761 58846 description = "Generates citations and bibliography from CSL styles"; 58762 58847 license = lib.licenses.bsd2; 58848 + maintainers = [ lib.maintainers.sternenseemann ]; 58763 58849 }) {}; 58764 58850 58765 58851 "citeproc_0_8_0_2" = callPackage ··· 58787 58873 description = "Generates citations and bibliography from CSL styles"; 58788 58874 license = lib.licenses.bsd2; 58789 58875 hydraPlatforms = lib.platforms.none; 58876 + maintainers = [ lib.maintainers.sternenseemann ]; 58790 58877 }) {}; 58791 58878 58792 58879 "citeproc-hs" = callPackage ··· 59328 59415 }: 59329 59416 mkDerivation { 59330 59417 pname = "clash-shake"; 59331 - version = "0.3.1"; 59332 - sha256 = "1paym4vsihwggml62m0ijlln9349p4yrcpg6bvh6i199h3qs78id"; 59418 + version = "0.3.1.2"; 59419 + sha256 = "1nj9vhzfybm43jcns8nr3ka4gjc1xyn0ccv6xiqdyjipzldx4a1n"; 59333 59420 libraryHaskellDepends = [ 59334 59421 aeson base bytestring clash-ghc clash-lib clash-prelude directory 59335 59422 shake split stache text unordered-containers ··· 60772 60859 }: 60773 60860 mkDerivation { 60774 60861 pname = "cloudi"; 60775 - version = "2.0.4"; 60776 - sha256 = "0d53ya6mqjl74yj1skmlbir5vvrfisrliahilm2jkaj3l8awyr2h"; 60862 + version = "2.0.5"; 60863 + sha256 = "0ry89sh969p0zhgchnciidacbkjkzs25mfnv07fm740lzzvh5isb"; 60777 60864 libraryHaskellDepends = [ 60778 60865 array base binary bytestring containers network time unix zlib 60779 60866 ]; ··· 61960 62047 }: 61961 62048 mkDerivation { 61962 62049 pname = "codeworld-api"; 61963 - version = "0.7.0"; 61964 - sha256 = "1l1w4mrw4b2njz4kmfvd94mlwn776vryy1y9x9cb3r69fw5qy2f3"; 61965 - revision = "4"; 61966 - editedCabalFile = "06qa2djbzfdwlvgbr2k8667fipyrkdvp8a1vac75fla99pdwp7yi"; 62050 + version = "0.8.0"; 62051 + sha256 = "0iaiw3gngpg2cwm0pgckn9vb0hjm7xm8szsii0k2s4d8fkl4k5rv"; 61967 62052 libraryHaskellDepends = [ 61968 62053 aeson base base64-bytestring blank-canvas bytestring cereal 61969 62054 cereal-text containers deepseq dependent-sum ghc-prim hashable ··· 62320 62405 ]; 62321 62406 description = "Generate CSV & XLSX files for importing into CoinTracking"; 62322 62407 license = lib.licenses.bsd3; 62408 + hydraPlatforms = lib.platforms.none; 62409 + broken = true; 62323 62410 }) {}; 62324 62411 62325 62412 "colada" = callPackage ··· 65414 65501 pname = "conduit"; 65415 65502 version = "1.3.4.3"; 65416 65503 sha256 = "0zchhxcpciq4nr7ll4z4c7wshlngphr0dz0y3xfml1pfls3a18mc"; 65504 + revision = "1"; 65505 + editedCabalFile = "0fsvnlx8gd9d8f70f6gl68ljhmff790anrifrixcflz0j2kfxwjh"; 65417 65506 libraryHaskellDepends = [ 65418 65507 base bytestring directory exceptions filepath mono-traversable mtl 65419 65508 primitive resourcet text transformers unix unliftio-core vector ··· 68544 68633 license = lib.licenses.mit; 68545 68634 }) {}; 68546 68635 68547 - "core-program_0_6_1_0" = callPackage 68636 + "core-program_0_6_1_1" = callPackage 68548 68637 ({ mkDerivation, base, bytestring, core-data, core-text, directory 68549 68638 , exceptions, filepath, fsnotify, hashable, hourglass, mtl 68550 68639 , prettyprinter, safe-exceptions, stm, template-haskell ··· 68553 68642 }: 68554 68643 mkDerivation { 68555 68644 pname = "core-program"; 68556 - version = "0.6.1.0"; 68557 - sha256 = "0gbahw4gwgj4ms5dg2142jmmhwrb9w6bc3ivpqg0h4cnd7ai20fr"; 68645 + version = "0.6.1.1"; 68646 + sha256 = "1qc9acs4jcrs80677fkd42h7nzwx8n7falrnxjsqpslh6i900hzc"; 68558 68647 libraryHaskellDepends = [ 68559 68648 base bytestring core-data core-text directory exceptions filepath 68560 68649 fsnotify hashable hourglass mtl prettyprinter safe-exceptions stm ··· 68574 68663 }: 68575 68664 mkDerivation { 68576 68665 pname = "core-telemetry"; 68577 - version = "0.2.6.1"; 68578 - sha256 = "0i74ij12q99dap4yvwf4rkirq9wwib9w6ygwav29j2rv8rni6pim"; 68666 + version = "0.2.7.0"; 68667 + sha256 = "148ij7rdnjh4fl84b8r20vffm0564afj101zn7xkji653fv1ha0s"; 68579 68668 libraryHaskellDepends = [ 68580 68669 base bytestring core-data core-program core-text exceptions 68581 68670 http-streams io-streams mtl network-info random safe-exceptions ··· 68626 68715 }: 68627 68716 mkDerivation { 68628 68717 pname = "core-webserver-servant"; 68629 - version = "0.1.1.2"; 68630 - sha256 = "084m2lisd9gwhasnxd2yc98f75zpa2zy3rq6sgj56f6aq7vnl0vv"; 68718 + version = "0.1.1.3"; 68719 + sha256 = "1bp7b6v96lqvsa39j9z1010yg4zjbl8v30anil12803ayc2ilvw3"; 68631 68720 libraryHaskellDepends = [ 68632 68721 base core-program core-telemetry core-webserver-warp mtl 68633 68722 safe-exceptions servant servant-server vault wai ··· 68638 68727 }) {}; 68639 68728 68640 68729 "core-webserver-warp" = callPackage 68641 - ({ mkDerivation, async, base, bytestring, core-data, core-program 68642 - , core-telemetry, core-text, http-types, http2, mtl 68643 - , safe-exceptions, vault, wai, warp 68730 + ({ mkDerivation, async, base, bytestring, bytestring-trie 68731 + , core-data, core-program, core-telemetry, core-text, http-types 68732 + , http2, mtl, safe-exceptions, vault, wai, warp 68644 68733 }: 68645 68734 mkDerivation { 68646 68735 pname = "core-webserver-warp"; 68647 - version = "0.1.1.6"; 68648 - sha256 = "05r4y1fywxxf4mi3i319vis67b2kdxf3caxq3nnlpc1ssyw37hc0"; 68736 + version = "0.2.0.0"; 68737 + sha256 = "0z0jjcj5gdcgxnnsjay5g2nw0ls43qslm3345n6732l515czivk7"; 68649 68738 libraryHaskellDepends = [ 68650 - async base bytestring core-data core-program core-telemetry 68651 - core-text http-types http2 mtl safe-exceptions vault wai warp 68739 + async base bytestring bytestring-trie core-data core-program 68740 + core-telemetry core-text http-types http2 mtl safe-exceptions vault 68741 + wai warp 68652 68742 ]; 68653 68743 description = "Interoperability with Wai/Warp"; 68654 68744 license = lib.licenses.mit; ··· 76088 76178 pname = "dbmonitor"; 76089 76179 version = "0.1.0"; 76090 76180 sha256 = "02j2f6r7jkgmmxqxysz45api0ai8wic4dffhw0y1xxhwfw5cx023"; 76181 + revision = "1"; 76182 + editedCabalFile = "0ks4sch746lvy4da4hh5mmxan487i6y0bjm5sw8vxcm6xa5jvqfg"; 76091 76183 isLibrary = true; 76092 76184 isExecutable = true; 76093 76185 libraryHaskellDepends = [ ··· 76136 76228 license = lib.licenses.asl20; 76137 76229 }) {}; 76138 76230 76139 - "dbus_1_2_26" = callPackage 76231 + "dbus_1_2_27" = callPackage 76140 76232 ({ mkDerivation, base, bytestring, cereal, conduit, containers 76141 76233 , criterion, deepseq, directory, exceptions, extra, filepath, lens 76142 76234 , network, parsec, process, QuickCheck, random, resourcet, split ··· 76145 76237 }: 76146 76238 mkDerivation { 76147 76239 pname = "dbus"; 76148 - version = "1.2.26"; 76149 - sha256 = "1c9ljbwcrnzlbrjjp7bgpwbwykm03qvha05h55yp8k11za03wh9i"; 76240 + version = "1.2.27"; 76241 + sha256 = "0lkk9hd78h2ilvi0bj5jqq5q5lwyxzdlknwvckhwyxnlf3y6dz8z"; 76150 76242 libraryHaskellDepends = [ 76151 76243 base bytestring cereal conduit containers deepseq exceptions 76152 76244 filepath lens network parsec random split template-haskell text ··· 77277 77369 pname = "deepseq-generics"; 77278 77370 version = "0.2.0.0"; 77279 77371 sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; 77280 - revision = "7"; 77281 - editedCabalFile = "1issqf30ykabjpk7f66k8pfyylxw7bxa39b5iq72s76nxi392lig"; 77372 + revision = "8"; 77373 + editedCabalFile = "0dcv4kf2g4xyacjpci9kql1gm706lkzhcyz9ks9jkbdvyvs8lf90"; 77282 77374 libraryHaskellDepends = [ base deepseq ghc-prim ]; 77283 77375 testHaskellDepends = [ 77284 77376 base deepseq ghc-prim HUnit test-framework test-framework-hunit ··· 77835 77927 }: 77836 77928 mkDerivation { 77837 77929 pname = "dep-t-advice"; 77838 - version = "0.6.1.0"; 77839 - sha256 = "1l3zphhyb55da4jrkbhgynwb72s1lm63iyi4p35np1jffwfcc9mg"; 77840 - revision = "1"; 77841 - editedCabalFile = "09rszbs5l4z8zzhizipiqk8g11h9gr7brn03ylhci716mkzwkzw5"; 77930 + version = "0.6.2.0"; 77931 + sha256 = "0kzrk3fp68phdlz2snqzgma2b7997j06gwpg3cb0m8s9rpkkszmw"; 77842 77932 libraryHaskellDepends = [ 77843 77933 base dep-t mtl sop-core transformers unliftio-core 77844 77934 ]; ··· 79160 79250 pname = "dhall"; 79161 79251 version = "1.41.2"; 79162 79252 sha256 = "14m5rrvkid76qnvg0l14xw1mnqclhip3gjrz20g1lp4fd5p056ka"; 79163 - revision = "1"; 79164 - editedCabalFile = "1gi2j6d3mh0wqx6756cp04c676843wdibfwv3i2wypvsk74dlvjm"; 79253 + revision = "2"; 79254 + editedCabalFile = "18jh1c2zinwglih5gc8av2szicyywq5q0kl2h5200sm67nxmask9"; 79165 79255 isLibrary = true; 79166 79256 isExecutable = true; 79167 79257 enableSeparateDataOutput = true; ··· 79341 79431 pname = "dhall-docs"; 79342 79432 version = "1.0.10"; 79343 79433 sha256 = "1rh6nxmjin8kvbscbhbcjsgxnlkw1r19plzpps6wkx86zfjd2ms2"; 79344 - revision = "1"; 79345 - editedCabalFile = "06778mcqzqspy60jciy4vn2b8cbvv8dr5y0hcd560jr1yhjn0n8p"; 79434 + revision = "2"; 79435 + editedCabalFile = "1zm07bnaf6j0h5x2rlyvi4fs5d42w2v5z11qxc7gysqp1k2p99m1"; 79346 79436 isLibrary = true; 79347 79437 isExecutable = true; 79348 79438 enableSeparateDataOutput = true; ··· 83151 83241 }: 83152 83242 mkDerivation { 83153 83243 pname = "distribution-nixpkgs"; 83154 - version = "1.7.0"; 83155 - sha256 = "007riyq6irmzzmf3gynaa5hpz8a4khg8wl4blyz78c59bqblpw69"; 83156 - revision = "1"; 83157 - editedCabalFile = "0xzrh7kfla9c43jjjnd2r13xsp994gdkxkwgav2kl50qxzdb88nx"; 83244 + version = "1.7.0.1"; 83245 + sha256 = "0yaha7arm9cn9sxacqwmr2qcnw2cxn53xww11im00mx7gk127rh2"; 83158 83246 enableSeparateDataOutput = true; 83159 83247 libraryHaskellDepends = [ 83160 83248 aeson base bytestring Cabal containers deepseq language-nix lens ··· 83573 83661 }) {}; 83574 83662 83575 83663 "dnf-repo" = callPackage 83576 - ({ mkDerivation, base, directory, extra, filepath, simple-cmd 83664 + ({ mkDerivation, base, directory, extra, filepath, Glob, simple-cmd 83577 83665 , simple-cmd-args 83578 83666 }: 83579 83667 mkDerivation { 83580 83668 pname = "dnf-repo"; 83581 - version = "0.3"; 83582 - sha256 = "0x2x6sapghvm4006iplk750ihign5akl1mlrga79k8f81krb3i3s"; 83669 + version = "0.5"; 83670 + sha256 = "1adpbm76kra59jgbrx2b1lzi06lq3znwqy8wapx0p5qsf630kilw"; 83583 83671 isLibrary = false; 83584 83672 isExecutable = true; 83585 83673 enableSeparateDataOutput = true; 83586 83674 executableHaskellDepends = [ 83587 - base directory extra filepath simple-cmd simple-cmd-args 83675 + base directory extra filepath Glob simple-cmd simple-cmd-args 83588 83676 ]; 83677 + testHaskellDepends = [ base simple-cmd ]; 83589 83678 description = "DNF wrapper tool to control repos"; 83590 83679 license = lib.licenses.bsd3; 83680 + hydraPlatforms = lib.platforms.none; 83591 83681 mainProgram = "dnf-repo"; 83682 + broken = true; 83592 83683 }) {}; 83593 83684 83594 83685 "dns" = callPackage ··· 84328 84419 mainProgram = "doctest"; 84329 84420 }) {}; 84330 84421 84331 - "doctest_0_20_0" = callPackage 84422 + "doctest_0_20_1" = callPackage 84332 84423 ({ mkDerivation, base, base-compat, code-page, deepseq, directory 84333 84424 , exceptions, filepath, ghc, ghc-paths, hspec, hspec-core 84334 84425 , hspec-discover, HUnit, mockery, process, QuickCheck, setenv ··· 84336 84427 }: 84337 84428 mkDerivation { 84338 84429 pname = "doctest"; 84339 - version = "0.20.0"; 84340 - sha256 = "0sk50b8zxq4hvc8qphlmfha1lsv3xha7q7ka081jgswf1qpg34y4"; 84341 - revision = "5"; 84342 - editedCabalFile = "0d7xgi71zdfbg3an6v2ss4lj6lvlmvq36hy788nd94ja2bgfsmpx"; 84430 + version = "0.20.1"; 84431 + sha256 = "00jbpqvcqxx1nmf41li947d9d3ifwchzzp37mlag68hgnza6z9a4"; 84343 84432 isLibrary = true; 84344 84433 isExecutable = true; 84345 84434 libraryHaskellDepends = [ ··· 86508 86597 maintainers = [ lib.maintainers.turion ]; 86509 86598 }) {}; 86510 86599 86511 - "dunai_0_9_0" = callPackage 86600 + "dunai_0_9_1" = callPackage 86512 86601 ({ mkDerivation, base, MonadRandom, simple-affine-space, tasty 86513 86602 , tasty-hunit, transformers, transformers-base 86514 86603 }: 86515 86604 mkDerivation { 86516 86605 pname = "dunai"; 86517 - version = "0.9.0"; 86518 - sha256 = "0p93c1h5bggvabx4vvd95khmjrq4qh46rvxkm4cqcdfd0601lyy5"; 86606 + version = "0.9.1"; 86607 + sha256 = "0krgbs9xqar78815xrgqbj63678jm0mjbsvnqdayh0c2awf9i8bj"; 86519 86608 libraryHaskellDepends = [ 86520 86609 base MonadRandom simple-affine-space transformers transformers-base 86521 86610 ]; ··· 86546 86635 ({ mkDerivation, base, dunai, normaldistribution, QuickCheck }: 86547 86636 mkDerivation { 86548 86637 pname = "dunai-test"; 86549 - version = "0.9.0"; 86550 - sha256 = "0j007pd475fmxhnvvwh6z8awrxfcfgwmph1z412k332lrj46nhv7"; 86638 + version = "0.9.1"; 86639 + sha256 = "0p78yvn98vp3qjd6dx23nwwzq6v6sks2gp9cycmcnjk3yn8470j9"; 86551 86640 libraryHaskellDepends = [ 86552 86641 base dunai normaldistribution QuickCheck 86553 86642 ]; ··· 87874 87963 pname = "ed25519"; 87875 87964 version = "0.0.5.0"; 87876 87965 sha256 = "0v8msqvgzimhs7p5ri25hrb1ni2wvisl5rmdxy89fc59py79b9fq"; 87877 - revision = "5"; 87878 - editedCabalFile = "1ckyssya3vw8nf4w324zhbyyf92zlzr2kcv20bvw58wz7mgppb14"; 87966 + revision = "6"; 87967 + editedCabalFile = "0qyx6cl52fnll8lp6v9133wfvv3zhvq7v2crn441mng520j9wp48"; 87879 87968 libraryHaskellDepends = [ base bytestring ghc-prim ]; 87880 87969 testHaskellDepends = [ 87881 87970 base bytestring directory doctest filepath hlint QuickCheck ··· 88313 88402 88314 88403 "effectful" = callPackage 88315 88404 ({ mkDerivation, async, base, bytestring, containers, directory 88316 - , effectful-core, exceptions, lifted-base, process, stm, tasty 88317 - , tasty-bench, tasty-hunit, text, time, unix, unliftio 88405 + , effectful-core, exceptions, lifted-base, primitive, process, stm 88406 + , tasty, tasty-bench, tasty-hunit, text, time, unix, unliftio 88318 88407 }: 88319 88408 mkDerivation { 88320 88409 pname = "effectful"; 88321 - version = "2.1.0.0"; 88322 - sha256 = "16vkxjmlwmyrvp3gdjma73jqlbmvbj9cawazg9h6fchxfr6ps53n"; 88410 + version = "2.2.0.0"; 88411 + sha256 = "0zymvpg7bbvgwpziqj3bfpxbb77d45kph0qcrdilfi9w1bbjg63r"; 88323 88412 libraryHaskellDepends = [ 88324 88413 async base bytestring directory effectful-core process stm time 88325 88414 unliftio 88326 88415 ]; 88327 88416 testHaskellDepends = [ 88328 - base containers effectful-core exceptions lifted-base tasty 88329 - tasty-hunit unliftio 88417 + base containers effectful-core exceptions lifted-base primitive 88418 + tasty tasty-hunit unliftio 88330 88419 ]; 88331 88420 benchmarkHaskellDepends = [ 88332 88421 async base tasty-bench text unix unliftio ··· 88341 88430 }: 88342 88431 mkDerivation { 88343 88432 pname = "effectful-core"; 88344 - version = "2.1.0.0"; 88345 - sha256 = "1lgg8f66jrs206b4zvkplq7w8d8sd91mxj9333sr4v4dnnshp4lk"; 88433 + version = "2.2.0.0"; 88434 + sha256 = "0i4ybsqkamsg91vp4pkr7pxpscfk5n44far9c53cbnh49nx14jqg"; 88346 88435 libraryHaskellDepends = [ 88347 88436 base containers exceptions monad-control primitive 88348 88437 transformers-base unliftio-core ··· 88379 88468 libraryHaskellDepends = [ base effectful-core primitive ]; 88380 88469 description = "`ST`-style mutation for `effectful`"; 88381 88470 license = lib.licenses.cc0; 88471 + hydraPlatforms = lib.platforms.none; 88472 + broken = true; 88382 88473 }) {}; 88383 88474 88384 88475 "effectful-th" = callPackage ··· 91123 91214 license = lib.licenses.bsd3; 91124 91215 }) {}; 91125 91216 91126 - "enummapset_0_7_0_0" = callPackage 91217 + "enummapset_0_7_1_0" = callPackage 91127 91218 ({ mkDerivation, aeson, array, base, containers, deepseq, ghc-prim 91128 - , HUnit, QuickCheck, semigroups, test-framework 91129 - , test-framework-hunit, test-framework-quickcheck2 91219 + , HUnit, QuickCheck, test-framework, test-framework-hunit 91220 + , test-framework-quickcheck2 91130 91221 }: 91131 91222 mkDerivation { 91132 91223 pname = "enummapset"; 91133 - version = "0.7.0.0"; 91134 - sha256 = "194x78axmihq9r83w8dj4z0299aa63zkkbq82f7ybgr2ckgvqcd5"; 91135 - libraryHaskellDepends = [ 91136 - aeson base containers deepseq semigroups 91137 - ]; 91224 + version = "0.7.1.0"; 91225 + sha256 = "1zhfl1qrm7r124v0xphh50lnll7cgmlacdmxwwlwhmzyrp1bwf69"; 91226 + libraryHaskellDepends = [ aeson base containers deepseq ]; 91138 91227 testHaskellDepends = [ 91139 91228 aeson array base containers deepseq ghc-prim HUnit QuickCheck 91140 - semigroups test-framework test-framework-hunit 91141 - test-framework-quickcheck2 91229 + test-framework test-framework-hunit test-framework-quickcheck2 91142 91230 ]; 91143 91231 description = "IntMap and IntSet with Enum keys/elements"; 91144 91232 license = lib.licenses.bsd3; ··· 93587 93675 }) {}; 93588 93676 93589 93677 "eventuo11y" = callPackage 93590 - ({ mkDerivation, aeson, base, bytestring, exceptions, primitive 93591 - , resourcet, text, time, unliftio-core, uuid 93678 + ({ mkDerivation, base, exceptions, primitive, resourcet 93679 + , safe-exceptions, transformers, unliftio-core 93592 93680 }: 93593 93681 mkDerivation { 93594 93682 pname = "eventuo11y"; 93595 - version = "0.3.2.0"; 93596 - sha256 = "1dx6q09bymvr7f4l7bnmb8c9gn46yp95qfhf9dml5i33x4scr2s8"; 93683 + version = "0.5.0.0"; 93684 + sha256 = "19rsw7xs8hy1yl145fgsfd3rddvpxjgxv05kd557hgv35ipkklmz"; 93597 93685 libraryHaskellDepends = [ 93598 - aeson base bytestring exceptions primitive resourcet text time 93599 - unliftio-core uuid 93686 + base exceptions primitive resourcet safe-exceptions transformers 93687 + unliftio-core 93600 93688 ]; 93601 93689 description = "An event-oriented observability library"; 93602 93690 license = lib.licenses.asl20; 93691 + hydraPlatforms = lib.platforms.none; 93692 + broken = true; 93603 93693 }) {}; 93604 93694 93605 93695 "eventuo11y-batteries" = callPackage 93606 93696 ({ mkDerivation, aeson, base, binary, bytestring, case-insensitive 93607 - , containers, eventuo11y, exceptions, http-media, http-types 93608 - , monad-control, mtl, network, semigroupoids, servant-client 93609 - , servant-client-core, text, transformers-base, wai, warp 93697 + , containers, eventuo11y, eventuo11y-json, http-media, http-types 93698 + , monad-control, mtl, network, safe-exceptions, semigroupoids 93699 + , servant-client, servant-client-core, text, transformers-base, wai 93700 + , warp 93610 93701 }: 93611 93702 mkDerivation { 93612 93703 pname = "eventuo11y-batteries"; 93613 - version = "0.2.1.0"; 93614 - sha256 = "0hdhryk7srb0dcjbqfk6ah2l7x3bbl3rqhncwx0wc3nfcx97dr0v"; 93704 + version = "0.2.1.1"; 93705 + sha256 = "1s3mwr9cnfsn1kh63dq6djwvvj4sx256w47r9s6wsii9ibgqig8v"; 93615 93706 libraryHaskellDepends = [ 93616 93707 aeson base binary bytestring case-insensitive containers eventuo11y 93617 - exceptions http-media http-types monad-control mtl network 93618 - semigroupoids servant-client servant-client-core text 93619 - transformers-base wai warp 93708 + eventuo11y-json http-media http-types monad-control mtl network 93709 + safe-exceptions semigroupoids servant-client servant-client-core 93710 + text transformers-base wai warp 93620 93711 ]; 93621 93712 description = "Grab bag of eventuo11y-enriched functionality"; 93622 93713 license = lib.licenses.asl20; 93714 + hydraPlatforms = lib.platforms.none; 93715 + }) {}; 93716 + 93717 + "eventuo11y-dsl" = callPackage 93718 + ({ mkDerivation, base, template-haskell, th-compat }: 93719 + mkDerivation { 93720 + pname = "eventuo11y-dsl"; 93721 + version = "0.1.0.0"; 93722 + sha256 = "0nm0q8p5qbnx56gvpsbzz5vwkx08sn8wcdyb6hli4ihq407ml8qz"; 93723 + libraryHaskellDepends = [ base template-haskell th-compat ]; 93724 + description = "DSL for defining eventuo11y fields and selectors"; 93725 + license = lib.licenses.asl20; 93726 + hydraPlatforms = lib.platforms.none; 93727 + broken = true; 93728 + }) {}; 93729 + 93730 + "eventuo11y-json" = callPackage 93731 + ({ mkDerivation, aeson, base, bytestring, eventuo11y 93732 + , eventuo11y-dsl, template-haskell, text, th-compat, time, uuid 93733 + }: 93734 + mkDerivation { 93735 + pname = "eventuo11y-json"; 93736 + version = "0.1.0.0"; 93737 + sha256 = "1bl4lqxq38nvwnm6s9w27ja4x571y6lvjvx7amc2i498i3mr5jzq"; 93738 + libraryHaskellDepends = [ 93739 + aeson base bytestring eventuo11y eventuo11y-dsl template-haskell 93740 + text th-compat time uuid 93741 + ]; 93742 + description = "aeson-based rendering for eventuo11y"; 93743 + license = lib.licenses.asl20; 93744 + hydraPlatforms = lib.platforms.none; 93623 93745 }) {}; 93624 93746 93625 93747 "every" = callPackage ··· 94628 94750 }: 94629 94751 mkDerivation { 94630 94752 pname = "experimenter"; 94631 - version = "0.1.0.12"; 94632 - sha256 = "0sam7wl4gha9midkgj15h0q68g121pihxxvv8dlx3wgd9as1h5d6"; 94633 - libraryHaskellDepends = [ 94634 - aeson base bytestring cereal cereal-vector conduit containers 94635 - deepseq directory esqueleto filepath HaTeX hostname lens matrix 94636 - monad-logger mtl mwc-random parallel persistent 94637 - persistent-postgresql persistent-template process resource-pool 94638 - resourcet stm text time transformers unix unliftio-core vector 94639 - ]; 94640 - testHaskellDepends = [ 94641 - aeson base bytestring cereal cereal-vector conduit containers 94642 - deepseq directory esqueleto filepath foundation HaTeX hostname 94643 - hspec lens matrix monad-logger mtl mwc-random parallel persistent 94644 - persistent-postgresql persistent-template process QuickCheck 94645 - resource-pool resourcet stm text time transformers unix 94646 - unliftio-core vector 94647 - ]; 94648 - description = "Perform scientific experiments stored in a DB, and generate reports"; 94649 - license = lib.licenses.bsd3; 94650 - }) {}; 94651 - 94652 - "experimenter_0_1_0_14" = callPackage 94653 - ({ mkDerivation, aeson, base, bytestring, cereal, cereal-vector 94654 - , conduit, containers, deepseq, directory, esqueleto, filepath 94655 - , foundation, HaTeX, hostname, hspec, lens, matrix, monad-logger 94656 - , mtl, mwc-random, parallel, persistent, persistent-postgresql 94657 - , persistent-template, process, QuickCheck, resource-pool 94658 - , resourcet, stm, text, time, transformers, unix, unliftio-core 94659 - , vector 94660 - }: 94661 - mkDerivation { 94662 - pname = "experimenter"; 94663 94753 version = "0.1.0.14"; 94664 94754 sha256 = "11m832x42xgd679zwnsykggp9afk7kwkis1s04iq4hdxbcylh7kc"; 94665 94755 libraryHaskellDepends = [ ··· 94679 94769 ]; 94680 94770 description = "Perform scientific experiments stored in a DB, and generate reports"; 94681 94771 license = lib.licenses.bsd3; 94682 - hydraPlatforms = lib.platforms.none; 94683 94772 }) {}; 94684 94773 94685 94774 "expiring-cache-map" = callPackage ··· 95300 95389 }: 95301 95390 mkDerivation { 95302 95391 pname = "extensions"; 95303 - version = "0.0.0.1"; 95304 - sha256 = "0wxkkdvsq8pqirw5w8ss20iyblw9197q420cpwnqzbl2xb0cjk6n"; 95392 + version = "0.1.0.0"; 95393 + sha256 = "1b4wiw228hlk0ywjzpgw7rg9nwfmav82c976ipn0ql0gyh7v27xc"; 95305 95394 isLibrary = true; 95306 95395 isExecutable = true; 95307 95396 libraryHaskellDepends = [ ··· 95318 95407 ]; 95319 95408 description = "Parse Haskell Language Extensions"; 95320 95409 license = lib.licenses.mpl20; 95321 - hydraPlatforms = lib.platforms.none; 95322 95410 mainProgram = "extensions"; 95323 - broken = true; 95324 95411 }) {}; 95325 95412 95326 95413 "external-sort" = callPackage ··· 95909 95996 }: 95910 95997 mkDerivation { 95911 95998 pname = "faktory"; 95912 - version = "1.1.2.3"; 95913 - sha256 = "1mihcmz3wzw2f6vfwv7xkvzhiql1fbb5v2llpkx5y455z939xl37"; 95999 + version = "1.1.2.4"; 96000 + sha256 = "0mn888cjk8ag94il7zcbk6q5cq2vf2dxf1b8ba8ki2rypxld5m7a"; 95914 96001 isLibrary = true; 95915 96002 isExecutable = true; 95916 96003 libraryHaskellDepends = [ ··· 96381 96468 license = lib.licenses.bsd3; 96382 96469 }) {}; 96383 96470 96471 + "fastmemo_0_1_1" = callPackage 96472 + ({ mkDerivation, base, bytestring, containers, QuickCheck 96473 + , utf8-string, vector 96474 + }: 96475 + mkDerivation { 96476 + pname = "fastmemo"; 96477 + version = "0.1.1"; 96478 + sha256 = "0jjsfdadf1dz516dhqd42bvbd230dymzpav7kzzvkn2yr81p456s"; 96479 + libraryHaskellDepends = [ 96480 + base bytestring containers utf8-string vector 96481 + ]; 96482 + testHaskellDepends = [ 96483 + base bytestring containers QuickCheck utf8-string vector 96484 + ]; 96485 + description = "Memoize functions on Generic types"; 96486 + license = lib.licenses.bsd3; 96487 + hydraPlatforms = lib.platforms.none; 96488 + }) {}; 96489 + 96384 96490 "fastparser" = callPackage 96385 96491 ({ mkDerivation, base, bytestring, bytestring-lexing, containers 96386 96492 , criterion, kan-extensions, microlens, thyme, transformers ··· 96432 96538 pname = "fastsum"; 96433 96539 version = "0.2.0.0"; 96434 96540 sha256 = "1yjsmk8ws6y5rbv23d3jqyqz4pvkzn44dmx1gflldgdfm9xi31ac"; 96541 + revision = "1"; 96542 + editedCabalFile = "14xrvz46f5ngj1jzdlcabg342ixczcfc3rx1hryil8rv976bdidr"; 96435 96543 isLibrary = true; 96436 96544 isExecutable = true; 96437 96545 libraryHaskellDepends = [ ··· 98456 98564 license = lib.licenses.bsd3; 98457 98565 }) {}; 98458 98566 98459 - "filepath-bytestring_1_4_2_1_11" = callPackage 98567 + "filepath-bytestring_1_4_2_1_12" = callPackage 98460 98568 ({ mkDerivation, base, bytestring, criterion, filepath, QuickCheck 98461 98569 , unix 98462 98570 }: 98463 98571 mkDerivation { 98464 98572 pname = "filepath-bytestring"; 98465 - version = "1.4.2.1.11"; 98466 - sha256 = "1y906vb9p51awzgd5s1bq718kw03gpw7z8i8bdznlw7i9r40shbk"; 98573 + version = "1.4.2.1.12"; 98574 + sha256 = "0i8j724fz8h1bcqvlvp3sxmgyrvx2sim74cvzkpc9m05yn9p27sq"; 98467 98575 libraryHaskellDepends = [ base bytestring unix ]; 98468 98576 testHaskellDepends = [ base bytestring filepath QuickCheck ]; 98469 98577 benchmarkHaskellDepends = [ base criterion filepath ]; ··· 98852 98960 }) {}; 98853 98961 98854 98962 "findhttp" = callPackage 98855 - ({ mkDerivation, base, basic-prelude, bytestring, directory 98856 - , filepath, Glob, http-directory, simple-cmd-args, text 98963 + ({ mkDerivation, base, bytestring, directory, filepath, Glob 98964 + , http-directory, simple-cmd-args, text 98857 98965 }: 98858 98966 mkDerivation { 98859 98967 pname = "findhttp"; 98860 - version = "0.1"; 98861 - sha256 = "1hw7cbmy0b01kfpfxavq3gc17vnq4vr2fy3bcvh4jnz9rizfmr9w"; 98968 + version = "0.1.1"; 98969 + sha256 = "1rsgdj3fm5zcvby8wms4lslr5bzj5n8rkdxckva7px4sks02fg2n"; 98862 98970 isLibrary = false; 98863 98971 isExecutable = true; 98864 98972 executableHaskellDepends = [ 98865 - base basic-prelude bytestring directory filepath Glob 98866 - http-directory simple-cmd-args text 98973 + base bytestring directory filepath Glob http-directory 98974 + simple-cmd-args text 98867 98975 ]; 98868 98976 description = "List http/html files"; 98869 98977 license = lib.licenses.gpl3Only; ··· 100040 100148 maintainers = [ lib.maintainers.sternenseemann ]; 100041 100149 }) {}; 100042 100150 100043 - "flat_0_5" = callPackage 100151 + "flat_0_5_2" = callPackage 100044 100152 ({ mkDerivation, array, base, bytestring, containers, deepseq 100045 100153 , dlist, filepath, ghc-prim, hashable, list-t, mono-traversable 100046 100154 , pretty, primitive, QuickCheck, quickcheck-text, tasty ··· 100049 100157 }: 100050 100158 mkDerivation { 100051 100159 pname = "flat"; 100052 - version = "0.5"; 100053 - sha256 = "1338h8w2s1vpjl019rv1qmc5s0xlpn3jdi4jzycc805l9cxdqa7w"; 100160 + version = "0.5.2"; 100161 + sha256 = "189jgx5zd1m3wgn2mal93ak1p6qp9mkaz38gkfzvgv6nwgywxxix"; 100054 100162 libraryHaskellDepends = [ 100055 100163 array base bytestring containers deepseq dlist ghc-prim hashable 100056 100164 list-t mono-traversable pretty primitive text unordered-containers ··· 102165 102273 mainProgram = "fortran-src"; 102166 102274 }) {}; 102167 102275 102168 - "fortran-src_0_11_0" = callPackage 102276 + "fortran-src_0_12_0" = callPackage 102169 102277 ({ mkDerivation, alex, array, base, binary, bytestring, containers 102170 102278 , deepseq, directory, either, fgl, filepath, GenericPretty, happy 102171 102279 , hspec, hspec-discover, mtl, pretty, QuickCheck, singletons ··· 102174 102282 }: 102175 102283 mkDerivation { 102176 102284 pname = "fortran-src"; 102177 - version = "0.11.0"; 102178 - sha256 = "0rh7zpnykm30y5jlr6077jdzpbf6qsccdmbs083wb1lv5gijza7k"; 102285 + version = "0.12.0"; 102286 + sha256 = "02n9s5an0z39gx8ks9pr3vrj6h683yra2djwi2m62rl76yw9nsmw"; 102179 102287 isLibrary = true; 102180 102288 isExecutable = true; 102181 102289 libraryHaskellDepends = [ ··· 102202 102310 }) {}; 102203 102311 102204 102312 "fortran-src-extras" = callPackage 102205 - ({ mkDerivation, aeson, base, binary, bytestring, containers 102206 - , directory, either, filepath, fortran-src, GenericPretty, hspec 102207 - , hspec-discover, optparse-applicative, silently, text, uniplate 102208 - , yaml 102313 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 102314 + , filepath, fortran-src, GenericPretty, hspec, hspec-discover 102315 + , optparse-applicative, silently, text, uniplate, yaml 102209 102316 }: 102210 102317 mkDerivation { 102211 102318 pname = "fortran-src-extras"; 102212 - version = "0.3.2"; 102213 - sha256 = "1b8vcg86pq92r1012s6fpnnkr489zs9x202rdjkjnyrmzm9v8rrx"; 102319 + version = "0.4.0"; 102320 + sha256 = "064cszvqn1p3r4fjldi7yibm7dd7iahanfld02z7if4l5w8l6dyc"; 102214 102321 isLibrary = true; 102215 102322 isExecutable = true; 102216 102323 libraryHaskellDepends = [ 102217 - aeson base binary bytestring containers directory either filepath 102218 - fortran-src GenericPretty optparse-applicative text uniplate 102324 + aeson base bytestring containers either filepath fortran-src 102325 + GenericPretty optparse-applicative text uniplate 102219 102326 ]; 102220 102327 executableHaskellDepends = [ 102221 102328 aeson base bytestring containers fortran-src GenericPretty ··· 104060 104167 license = lib.licenses.bsd3; 104061 104168 }) {}; 104062 104169 104063 - "fsnotify_0_4_0_1" = callPackage 104170 + "fsnotify_0_4_1_0" = callPackage 104064 104171 ({ mkDerivation, async, base, bytestring, containers, directory 104065 104172 , exceptions, filepath, hinotify, monad-control, random, retry 104066 104173 , safe-exceptions, sandwich, temporary, text, time, unix ··· 104068 104175 }: 104069 104176 mkDerivation { 104070 104177 pname = "fsnotify"; 104071 - version = "0.4.0.1"; 104072 - sha256 = "02gnbwxgs5b4rnqpgprvqxw9d2vw2yi276dn6ync3czrxyqliz78"; 104073 - revision = "1"; 104074 - editedCabalFile = "00yspy6jwriwgr0zi806z31q082kx1gfihfspf3izlxcm5qinyjh"; 104075 - isLibrary = true; 104076 - isExecutable = true; 104178 + version = "0.4.1.0"; 104179 + sha256 = "1vzpx91n2qml0628zq1c0bwnz7d4bal4vwl52hyil60shx5gnc6i"; 104077 104180 libraryHaskellDepends = [ 104078 104181 async base bytestring containers directory filepath hinotify 104079 104182 monad-control safe-exceptions text time unix unix-compat 104080 104183 ]; 104081 - executableHaskellDepends = [ 104184 + testHaskellDepends = [ 104082 104185 async base directory exceptions filepath random retry 104083 104186 safe-exceptions sandwich temporary unix-compat unliftio 104084 104187 ]; 104085 104188 description = "Cross platform library for file change notification"; 104086 104189 license = lib.licenses.bsd3; 104087 104190 hydraPlatforms = lib.platforms.none; 104088 - mainProgram = "tests"; 104089 104191 }) {}; 104090 104192 104091 104193 "fsnotify-conduit" = callPackage ··· 107161 107263 license = lib.licenses.mit; 107162 107264 }) {}; 107163 107265 107164 - "generic-functor_1_0_0_0" = callPackage 107266 + "generic-functor_1_1_0_0" = callPackage 107165 107267 ({ mkDerivation, ap-normalize, base, transformers }: 107166 107268 mkDerivation { 107167 107269 pname = "generic-functor"; 107168 - version = "1.0.0.0"; 107169 - sha256 = "0cnwzz7303z55nr64bi56w2bqxh7wxmv8wxzmh5xb37k674qjgz6"; 107270 + version = "1.1.0.0"; 107271 + sha256 = "1hh5p7bk4pkq7095wiwiw5v53abh6csc4g0q47f3kgpavkf83d8c"; 107170 107272 libraryHaskellDepends = [ ap-normalize base ]; 107171 107273 testHaskellDepends = [ base transformers ]; 107172 107274 description = "Deriving generalized functors with GHC.Generics"; ··· 107496 107598 ({ mkDerivation, base, containers, transformers }: 107497 107599 mkDerivation { 107498 107600 pname = "generic-trie"; 107499 - version = "0.3.1"; 107500 - sha256 = "1x7f5bp7d13g737198l43y2mf9mzngg9vmhyh1yaxg8xfpzc3anh"; 107501 - revision = "2"; 107502 - editedCabalFile = "1dxf7c66vncw8zn0848g0bk2i2msbrb4njzvkzwvlaiphq0gqg10"; 107601 + version = "0.3.2"; 107602 + sha256 = "19027g8xqy99x0gg5a8cnvyf6n1jnk7qvpgn4d0b3ha168fa2k0l"; 107603 + isLibrary = true; 107604 + isExecutable = true; 107503 107605 libraryHaskellDepends = [ base containers transformers ]; 107606 + executableHaskellDepends = [ base ]; 107504 107607 description = "A map, where the keys may be complex structured data"; 107505 107608 license = lib.licenses.bsd3; 107506 107609 hydraPlatforms = lib.platforms.none; 107610 + mainProgram = "bogus"; 107507 107611 broken = true; 107508 107612 }) {}; 107509 107613 ··· 110824 110928 }: 110825 110929 mkDerivation { 110826 110930 pname = "ghc-typelits-extra"; 110827 - version = "0.4.3"; 110828 - sha256 = "06g40q0n2d10c2zksx5rrjkvm5ywi3rh41hbiwy4zs28x9idsv18"; 110829 - revision = "1"; 110830 - editedCabalFile = "0m6z24zmi169zifz1jg4zri0izr5z37qx33c9mphy74vd6ds3zzz"; 110931 + version = "0.4.4"; 110932 + sha256 = "1pjai171y374569xzqnp6amf7dvj57pcfykh3g48m5jij2b8jbc6"; 110831 110933 libraryHaskellDepends = [ 110832 110934 base containers ghc ghc-bignum ghc-prim ghc-tcplugins-extra 110833 110935 ghc-typelits-knownnat ghc-typelits-natnormalise transformers ··· 110847 110949 }: 110848 110950 mkDerivation { 110849 110951 pname = "ghc-typelits-knownnat"; 110850 - version = "0.7.6"; 110851 - sha256 = "10m4y0hf25w2i40464pz85lqs5dr8cznl191icnibc5fjynyzd9v"; 110852 - libraryHaskellDepends = [ 110853 - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-natnormalise 110854 - template-haskell transformers 110855 - ]; 110856 - testHaskellDepends = [ 110857 - base ghc-typelits-natnormalise tasty tasty-hunit tasty-quickcheck 110858 - ]; 110859 - description = "Derive KnownNat constraints from other KnownNat constraints"; 110860 - license = lib.licenses.bsd2; 110861 - }) {}; 110862 - 110863 - "ghc-typelits-knownnat_0_7_7" = callPackage 110864 - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra 110865 - , ghc-typelits-natnormalise, tasty, tasty-hunit, tasty-quickcheck 110866 - , template-haskell, transformers 110867 - }: 110868 - mkDerivation { 110869 - pname = "ghc-typelits-knownnat"; 110870 110952 version = "0.7.7"; 110871 110953 sha256 = "0b7rhnij3i74baqm7ban92sfdiscbjvrypfi6wwipkc8graii467"; 110872 110954 libraryHaskellDepends = [ ··· 110878 110960 ]; 110879 110961 description = "Derive KnownNat constraints from other KnownNat constraints"; 110880 110962 license = lib.licenses.bsd2; 110881 - hydraPlatforms = lib.platforms.none; 110882 110963 }) {}; 110883 110964 110884 110965 "ghc-typelits-natnormalise" = callPackage ··· 110888 110969 }: 110889 110970 mkDerivation { 110890 110971 pname = "ghc-typelits-natnormalise"; 110891 - version = "0.7.6"; 110892 - sha256 = "09d70iw58m5g6yi8k2b52f1g0pfdqm5fzhs8rd7fgrgmi70np9bx"; 110893 - revision = "1"; 110894 - editedCabalFile = "1b587pryjkbvgayqwm8cn7ljmcyd4jikrxxkgm6zq1v9qhi7xy22"; 110895 - libraryHaskellDepends = [ 110896 - base containers ghc ghc-bignum ghc-tcplugins-extra transformers 110897 - ]; 110898 - testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; 110899 - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; 110900 - license = lib.licenses.bsd2; 110901 - }) {}; 110902 - 110903 - "ghc-typelits-natnormalise_0_7_7" = callPackage 110904 - ({ mkDerivation, base, containers, ghc, ghc-bignum 110905 - , ghc-tcplugins-extra, tasty, tasty-hunit, template-haskell 110906 - , transformers 110907 - }: 110908 - mkDerivation { 110909 - pname = "ghc-typelits-natnormalise"; 110910 110972 version = "0.7.7"; 110911 110973 sha256 = "0pqpsy3j4brpg2hrq9qrnjzr1bishycny5gvsdncvhaq3m53gslh"; 110912 110974 libraryHaskellDepends = [ ··· 110915 110977 testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; 110916 110978 description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; 110917 110979 license = lib.licenses.bsd2; 110918 - hydraPlatforms = lib.platforms.none; 110919 110980 }) {}; 110920 110981 110921 110982 "ghc-typelits-presburger" = callPackage ··· 111019 111080 }: 111020 111081 mkDerivation { 111021 111082 pname = "ghci-dap"; 111022 - version = "0.0.18.0"; 111023 - sha256 = "1mkw7h7zzjd7kx9345rnkvh70qwkg8q6h5am2lgaybxmxkig8wlc"; 111083 + version = "0.0.19.0"; 111084 + sha256 = "07f0q83pcma3c0v7sdkkb1nzx40f55v47v44gaa2pg6clkl7p1gx"; 111024 111085 isLibrary = true; 111025 111086 isExecutable = true; 111026 111087 libraryHaskellDepends = [ ··· 111728 111789 111729 111790 "gi-adwaita" = callPackage 111730 111791 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdk 111731 - , gi-gio, gi-gobject, gi-gtk, haskell-gi, haskell-gi-base 111792 + , gi-gio, gi-gobject, gi-gtk, gi-pango, haskell-gi, haskell-gi-base 111732 111793 , haskell-gi-overloading, libadwaita, text, transformers 111733 111794 }: 111734 111795 mkDerivation { 111735 111796 pname = "gi-adwaita"; 111736 - version = "1.0.1"; 111737 - sha256 = "0l0n19ap2hvvl6kpwhqqr4n01xjc8rj9fl49ya2pbvxpjy97yqha"; 111797 + version = "1.0.3"; 111798 + sha256 = "1j5gccj480h2ms2spg7an0mdhb1mlm5hz7kkyga5smkfkc8pbj8h"; 111738 111799 setupHaskellDepends = [ 111739 - base Cabal gi-gdk gi-gio gi-gobject gi-gtk haskell-gi 111800 + base Cabal gi-gdk gi-gio gi-gobject gi-gtk gi-pango haskell-gi 111740 111801 ]; 111741 111802 libraryHaskellDepends = [ 111742 - base bytestring containers gi-gdk gi-gio gi-gobject gi-gtk 111803 + base bytestring containers gi-gdk gi-gio gi-gobject gi-gtk gi-pango 111743 111804 haskell-gi haskell-gi-base haskell-gi-overloading text transformers 111744 111805 ]; 111745 111806 libraryPkgconfigDepends = [ libadwaita ]; ··· 111757 111818 }: 111758 111819 mkDerivation { 111759 111820 pname = "gi-atk"; 111760 - version = "2.0.24"; 111761 - sha256 = "1xhjzjcdbnfk7b6r035ch3plpgk9yk2qawq7iffc47y67dxhcd6b"; 111821 + version = "2.0.25"; 111822 + sha256 = "0x3qwz8576c1m2y6sxjjzxi0q5x47lbaawipsiaiimk51x4p4div"; 111762 111823 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 111763 111824 libraryHaskellDepends = [ 111764 111825 base bytestring containers gi-glib gi-gobject haskell-gi ··· 111776 111837 }: 111777 111838 mkDerivation { 111778 111839 pname = "gi-cairo"; 111779 - version = "1.0.26"; 111780 - sha256 = "1f3gfhqg03b64n4ipg3q96wkwsisrs79bbg7335nwg92frkv1j79"; 111840 + version = "1.0.27"; 111841 + sha256 = "1f074s37fw1wjd2ycmji8vhvl1lzaclqh7n2pippdfvhfidrkbxf"; 111781 111842 setupHaskellDepends = [ base Cabal haskell-gi ]; 111782 111843 libraryHaskellDepends = [ 111783 111844 base bytestring containers haskell-gi haskell-gi-base ··· 111829 111890 }: 111830 111891 mkDerivation { 111831 111892 pname = "gi-cairo-render"; 111832 - version = "0.1.1"; 111833 - sha256 = "09gxykx633xvwcqx1cjl9kj2748jdq49ayy6z5p3hz7bxqlna952"; 111893 + version = "0.1.2"; 111894 + sha256 = "07h3k8bzb6qhk7x2v68dg5gsxxpjpr7k3vvh2fyqb9zj9rq8lyfc"; 111834 111895 libraryHaskellDepends = [ 111835 111896 array base bytestring haskell-gi-base mtl text utf8-string 111836 111897 ]; ··· 111848 111909 }: 111849 111910 mkDerivation { 111850 111911 pname = "gi-clutter"; 111851 - version = "1.0.2"; 111852 - sha256 = "1fyqpgj2q7mnlvqp60203mnl797vvsrfmgildp3zdi4dmqsv4vws"; 111912 + version = "1.0.3"; 111913 + sha256 = "1mbpk0s37sifpydww4qh6m7nyz8p323i2r2zr4h4cnvb6vpfvaqy"; 111853 111914 setupHaskellDepends = [ 111854 111915 base Cabal gi-atk gi-cairo gi-cogl gi-gio gi-glib gi-gobject 111855 111916 gi-json gi-pango haskell-gi ··· 111872 111933 }: 111873 111934 mkDerivation { 111874 111935 pname = "gi-cogl"; 111875 - version = "1.0.2"; 111876 - sha256 = "0y7inkzp3vxck4para77dzd4qczl3r61nv5y5hcyycmlpzlwfjzj"; 111936 + version = "1.0.3"; 111937 + sha256 = "1kzf9sqa9glhiaka6qajx0mdm8qfp30j6612l8v98vc312bly6dp"; 111877 111938 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 111878 111939 libraryHaskellDepends = [ 111879 111940 base bytestring containers gi-glib gi-gobject haskell-gi ··· 111893 111954 }: 111894 111955 mkDerivation { 111895 111956 pname = "gi-coglpango"; 111896 - version = "1.0.2"; 111897 - sha256 = "0yx0nqnpkkx0wcbljx02ivwf9749d02xqpwpp2zck2cpc9ll7xca"; 111957 + version = "1.0.3"; 111958 + sha256 = "193nblss2d4xlj4kiaz8745797lfpqxm65knzr6al1rdqikc6gdc"; 111898 111959 setupHaskellDepends = [ 111899 111960 base Cabal gi-cogl gi-glib gi-gobject gi-pango gi-pangocairo 111900 111961 haskell-gi ··· 111917 111978 }: 111918 111979 mkDerivation { 111919 111980 pname = "gi-dbusmenu"; 111920 - version = "0.4.10"; 111921 - sha256 = "05q3sijfsma2rinyw1rb7z4fphdqakbg18zlpf8jpv89c1329d3q"; 111981 + version = "0.4.11"; 111982 + sha256 = "06mzjyn1l97n171c92kvsnhhz2fs1pz48n1bwk1b58wnjdrhhscd"; 111922 111983 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 111923 111984 libraryHaskellDepends = [ 111924 111985 base bytestring containers gi-glib gi-gobject haskell-gi ··· 111938 111999 }: 111939 112000 mkDerivation { 111940 112001 pname = "gi-dbusmenugtk3"; 111941 - version = "0.4.11"; 111942 - sha256 = "1ipq8irzqswpak6zip9ghpkvk29mwnym8d70md3an0idlq0gcnw6"; 112002 + version = "0.4.12"; 112003 + sha256 = "1ky4x665p5f7zlfckz7fykgnl9n839vz5pv4l0lprhp0l04f32hz"; 111943 112004 setupHaskellDepends = [ 111944 112005 base Cabal gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf gi-glib 111945 112006 gi-gobject gi-gtk haskell-gi ··· 111962 112023 }: 111963 112024 mkDerivation { 111964 112025 pname = "gi-freetype2"; 111965 - version = "2.0.1"; 111966 - sha256 = "00sgy9ppwf7im98vrcjp0ihb3zgaxcsm8klqv4h3z8n8ypv44ir2"; 112026 + version = "2.0.2"; 112027 + sha256 = "066xpysbzzfjd0gpjxvhfbgy1zwhqd14gibs4daycszk09d9kspp"; 111967 112028 setupHaskellDepends = [ base Cabal haskell-gi ]; 111968 112029 libraryHaskellDepends = [ 111969 112030 base bytestring containers haskell-gi haskell-gi-base ··· 111982 112043 }: 111983 112044 mkDerivation { 111984 112045 pname = "gi-gdk"; 111985 - version = "3.0.25"; 111986 - sha256 = "1flgsm7sqsfp53pqbc8fv9pnsc84qnjmhircsqnx8jvkg5iyvxnx"; 112046 + version = "3.0.26"; 112047 + sha256 = "14271bbi1dy0r1krxg0ry3hqmqv10v55ja55a912qknsq1ya8nka"; 111987 112048 setupHaskellDepends = [ 111988 112049 base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango 111989 112050 haskell-gi ··· 111998 112059 license = lib.licenses.lgpl21Only; 111999 112060 }) {inherit (pkgs) gtk3;}; 112000 112061 112001 - "gi-gdk_4_0_4" = callPackage 112062 + "gi-gdk_4_0_5" = callPackage 112002 112063 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 112003 112064 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 112004 112065 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 112006 112067 }: 112007 112068 mkDerivation { 112008 112069 pname = "gi-gdk"; 112009 - version = "4.0.4"; 112010 - sha256 = "1ah515cakq6w9bbwq393xbpx326v9xincvhgihqsc67gjcqpbva4"; 112070 + version = "4.0.5"; 112071 + sha256 = "1pa8vbm931xq3rb9xr441sccga9h1y03lzf6hp2rwkhyhs006hax"; 112011 112072 setupHaskellDepends = [ 112012 112073 base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango 112013 112074 haskell-gi ··· 112030 112091 }: 112031 112092 mkDerivation { 112032 112093 pname = "gi-gdkpixbuf"; 112033 - version = "2.0.28"; 112034 - sha256 = "01fjx8nwy27mlhhh3p8qi1z8xcbzi7cs07x01hk8kxrmvd71a2pf"; 112094 + version = "2.0.29"; 112095 + sha256 = "16j3pilr5ffcgxp598svdsbjsgh3ds9a24frkp4ph2g2sjmzdcrk"; 112035 112096 setupHaskellDepends = [ 112036 112097 base Cabal gi-gio gi-glib gi-gmodule gi-gobject haskell-gi 112037 112098 ]; ··· 112051 112112 }: 112052 112113 mkDerivation { 112053 112114 pname = "gi-gdkx11"; 112054 - version = "3.0.12"; 112055 - sha256 = "0lx5c13i4g4jy47zpkhd3nn714d7n2ljqib4p4ylgs9cyj145hd4"; 112115 + version = "3.0.13"; 112116 + sha256 = "0qakqwx59r389nnp2zxcknsri8lm9bzgm9nk7vx4mpsrff65138i"; 112056 112117 setupHaskellDepends = [ 112057 112118 base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi 112058 112119 ]; ··· 112066 112127 license = lib.licenses.lgpl21Only; 112067 112128 }) {inherit (pkgs) gtk3;}; 112068 112129 112069 - "gi-gdkx11_4_0_4" = callPackage 112130 + "gi-gdkx11_4_0_5" = callPackage 112070 112131 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 112071 112132 , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk4-x11, haskell-gi 112072 112133 , haskell-gi-base, haskell-gi-overloading, text, transformers 112073 112134 }: 112074 112135 mkDerivation { 112075 112136 pname = "gi-gdkx11"; 112076 - version = "4.0.4"; 112077 - sha256 = "1bbwy8sqn642y0yv10l65p2f7zc3nb14mcdwfd2k3cqpmyyhq0ns"; 112137 + version = "4.0.5"; 112138 + sha256 = "0pzsacizbxljl7fm0939fr9vpi6zgl6by89glvklv8imln59pl78"; 112078 112139 setupHaskellDepends = [ 112079 112140 base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi 112080 112141 ]; ··· 112097 112158 }: 112098 112159 mkDerivation { 112099 112160 pname = "gi-ges"; 112100 - version = "1.0.1"; 112101 - sha256 = "1xx6n88bdfxp8xjgvwwrgam8ky7gaswg3kdpz817g7x2l2j2d14n"; 112161 + version = "1.0.2"; 112162 + sha256 = "1qmf1f2a9lmhzbif638r1npbjzv6bpm2r7j51nb4bpbv5vmggl6j"; 112102 112163 setupHaskellDepends = [ 112103 112164 base Cabal gi-gio gi-glib gi-gobject gi-gst gi-gstpbutils 112104 112165 gi-gstvideo haskell-gi ··· 112121 112182 }: 112122 112183 mkDerivation { 112123 112184 pname = "gi-ggit"; 112124 - version = "1.0.11"; 112125 - sha256 = "06hkq87q8a69ini8drwld4pd8z26mlysk9vkigpkigwlbsizjjm7"; 112185 + version = "1.0.12"; 112186 + sha256 = "13n717b5f0p156yvwp9hnp3ma31blgdc3b378cx0b97h0533msyl"; 112126 112187 setupHaskellDepends = [ 112127 112188 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112128 112189 ]; ··· 112143 112204 }: 112144 112205 mkDerivation { 112145 112206 pname = "gi-gio"; 112146 - version = "2.0.29"; 112147 - sha256 = "14kh1qdayi55flf2108ivq7sc1k9qd8dish19jbdij198hsjgria"; 112207 + version = "2.0.30"; 112208 + sha256 = "186a8bk2s94awnq4w50w2msdjs08a1mknxb2417qpwzc5yy1f9q3"; 112148 112209 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112149 112210 libraryHaskellDepends = [ 112150 112211 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112179 112240 }: 112180 112241 mkDerivation { 112181 112242 pname = "gi-girepository"; 112182 - version = "1.0.25"; 112183 - sha256 = "0xpydz66vmb8f46ql2h8rq486i4pf5nbjm98839iyhsv653plxp0"; 112243 + version = "1.0.26"; 112244 + sha256 = "0nlxzs5i1wjli5bczlvab6ch4d2lwai1zab2yiz1l9bw3qkzkbiz"; 112184 112245 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112185 112246 libraryHaskellDepends = [ 112186 112247 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112198 112259 }: 112199 112260 mkDerivation { 112200 112261 pname = "gi-glib"; 112201 - version = "2.0.26"; 112202 - sha256 = "0i38ch8giqs92kkfzyw4wlz8y0r5kn2h94b6y33nj4ja3ggrg1qm"; 112262 + version = "2.0.27"; 112263 + sha256 = "0cd0kbl7lsk5jjilhcs8969xaa7ncm81ilpdsqpxvdm2hgrg06y2"; 112203 112264 setupHaskellDepends = [ base Cabal haskell-gi ]; 112204 112265 libraryHaskellDepends = [ 112205 112266 base bytestring containers haskell-gi haskell-gi-base ··· 112217 112278 }: 112218 112279 mkDerivation { 112219 112280 pname = "gi-gmodule"; 112220 - version = "2.0.2"; 112221 - sha256 = "1jbplvicc6jsjcz8gqkiq71b8cx57m010wbq2ilirv4rif90ggnx"; 112281 + version = "2.0.3"; 112282 + sha256 = "043n3nyxy29chzc7xzhinp40yxazlikqcjdbm3pvh344jv7m5xjx"; 112222 112283 setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; 112223 112284 libraryHaskellDepends = [ 112224 112285 base bytestring containers gi-glib haskell-gi haskell-gi-base ··· 112236 112297 }: 112237 112298 mkDerivation { 112238 112299 pname = "gi-gobject"; 112239 - version = "2.0.27"; 112240 - sha256 = "1xfw8jg81pbhgb20kw2jvhbxcs8d0sl4zf3dsar9sy7gl4lgwh0g"; 112300 + version = "2.0.28"; 112301 + sha256 = "0av574yvvbky1pm187fmjkmy52lssvv74zad30818qbkzpkwfdx8"; 112241 112302 setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; 112242 112303 libraryHaskellDepends = [ 112243 112304 base bytestring containers gi-glib haskell-gi haskell-gi-base ··· 112255 112316 }: 112256 112317 mkDerivation { 112257 112318 pname = "gi-graphene"; 112258 - version = "1.0.4"; 112259 - sha256 = "0c1dh5jzmqm5ysv296c37ma8miscpba1z1kq7b4l9sfmnhi4blsa"; 112319 + version = "1.0.5"; 112320 + sha256 = "0633cf1n4lzrh0v5ksip4y4qizahyi3cv2njsg0bix802c4pd8rs"; 112260 112321 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112261 112322 libraryHaskellDepends = [ 112262 112323 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112277 112338 }: 112278 112339 mkDerivation { 112279 112340 pname = "gi-gsk"; 112280 - version = "4.0.4"; 112281 - sha256 = "0y2gpxy4bl3k1br3d6lm7javzw1q5r499lqhas028gawbfba6s4x"; 112341 + version = "4.0.5"; 112342 + sha256 = "02zmzywk0yyrg1rffwsiq6whxwk8f4mpg3vmybrr91iih9pv36g3"; 112282 112343 setupHaskellDepends = [ 112283 112344 base Cabal gi-cairo gi-gdk gi-gdkpixbuf gi-glib gi-gobject 112284 112345 gi-graphene gi-pango haskell-gi ··· 112301 112362 }: 112302 112363 mkDerivation { 112303 112364 pname = "gi-gst"; 112304 - version = "1.0.25"; 112305 - sha256 = "1rx7arlghfvkh4ccl5dd40a108d4kmr2fmwrrgl22z7k2xgl0wqp"; 112365 + version = "1.0.26"; 112366 + sha256 = "1d1sidmhszdpcka3bf4xiph2896z1ipvjfvlyjy50lahz9igr2lq"; 112306 112367 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112307 112368 libraryHaskellDepends = [ 112308 112369 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112320 112381 }: 112321 112382 mkDerivation { 112322 112383 pname = "gi-gstaudio"; 112323 - version = "1.0.24"; 112324 - sha256 = "09xfss2q4bywnidfqyq57zdma3qwhx7sl40qg7qdqhma36axxryk"; 112384 + version = "1.0.25"; 112385 + sha256 = "1brrhplrahbhyk4yn1bmxlz6pf9ynwbrr1yvblz35x8lrinw9086"; 112325 112386 setupHaskellDepends = [ 112326 112387 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 112327 112388 ]; ··· 112341 112402 }: 112342 112403 mkDerivation { 112343 112404 pname = "gi-gstbase"; 112344 - version = "1.0.25"; 112345 - sha256 = "179qi645giqkfdrig07l54wn2dj5wicjfhyy7m9132imxh8czcg9"; 112405 + version = "1.0.26"; 112406 + sha256 = "0n4szf0mf1hnylh30k16x7af7kzvsqbk9niyanqa73i7bh972j3m"; 112346 112407 setupHaskellDepends = [ 112347 112408 base Cabal gi-glib gi-gobject gi-gst haskell-gi 112348 112409 ]; ··· 112363 112424 }: 112364 112425 mkDerivation { 112365 112426 pname = "gi-gstpbutils"; 112366 - version = "1.0.24"; 112367 - sha256 = "18sxnrx5wbr1fbmvrjk6v09nc5q2xxm36vmlbd331314fpr0ic7m"; 112427 + version = "1.0.25"; 112428 + sha256 = "1ymm8qi4w72qqdwlb6ynmbhfdh47biijjp361vkax0d66rjjlz8l"; 112368 112429 setupHaskellDepends = [ 112369 112430 base Cabal gi-glib gi-gobject gi-gst gi-gstaudio gi-gsttag 112370 112431 gi-gstvideo haskell-gi ··· 112387 112448 }: 112388 112449 mkDerivation { 112389 112450 pname = "gi-gsttag"; 112390 - version = "1.0.24"; 112391 - sha256 = "0l7h2r2q3sn8li1qq7bidplh1vic9w4054qnrimxhpndkcd8gxsk"; 112451 + version = "1.0.25"; 112452 + sha256 = "1k6fwddap8y2iy32aihf1771kwjb2xmqxs0jgvl4pqh7z1gk1xhf"; 112392 112453 setupHaskellDepends = [ 112393 112454 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 112394 112455 ]; ··· 112410 112471 }: 112411 112472 mkDerivation { 112412 112473 pname = "gi-gstvideo"; 112413 - version = "1.0.25"; 112414 - sha256 = "1zkzs7qkzfp8ixkagbqkmgylla7msdjg83sdf2qwmgcmzfk480c7"; 112474 + version = "1.0.26"; 112475 + sha256 = "1bwfqxq4h2c2n7bl3hxrv7ykd97kxnhdck5w9wvd6abm2p18r4w0"; 112415 112476 setupHaskellDepends = [ 112416 112477 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 112417 112478 ]; ··· 112432 112493 }: 112433 112494 mkDerivation { 112434 112495 pname = "gi-gtk"; 112435 - version = "3.0.38"; 112436 - sha256 = "0xnz5969v9nz6llg7856zdn3pcn1llvr1p0jl8vxk4n5wrwgqjms"; 112496 + version = "3.0.39"; 112497 + sha256 = "0ib53hq6wds44z636frbph2pmzy1bjpkc1kyxx9y09yj5bg3mm6k"; 112437 112498 setupHaskellDepends = [ 112438 112499 base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 112439 112500 gi-gobject gi-pango haskell-gi ··· 112448 112509 license = lib.licenses.lgpl21Only; 112449 112510 }) {inherit (pkgs) gtk3;}; 112450 112511 112451 - "gi-gtk_4_0_5" = callPackage 112512 + "gi-gtk_4_0_6" = callPackage 112452 112513 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 112453 112514 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject 112454 112515 , gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base ··· 112456 112517 }: 112457 112518 mkDerivation { 112458 112519 pname = "gi-gtk"; 112459 - version = "4.0.5"; 112460 - sha256 = "04ph4adisr51j5dy2lpp0kxp06m332dfxmq92rnq3w0l810z2hi8"; 112520 + version = "4.0.6"; 112521 + sha256 = "146x3xp12jl416gl75mdx6jgnh0ayh9s64f7nl5ccw5r7dw8fz6f"; 112461 112522 setupHaskellDepends = [ 112462 112523 base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 112463 112524 gi-gobject gi-graphene gi-gsk gi-pango haskell-gi ··· 112525 112586 }: 112526 112587 mkDerivation { 112527 112588 pname = "gi-gtk-hs"; 112528 - version = "0.3.12"; 112529 - sha256 = "1ph9fq2lwa16pq68vkmp2843n0hjx89zfjmxs80lsv41bkvza8qy"; 112589 + version = "0.3.13"; 112590 + sha256 = "0w9bjhny6l2ll83ffcdmdzgnza0gfgyqv8v161pj080lsq00fdli"; 112530 112591 libraryHaskellDepends = [ 112531 112592 base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject 112532 112593 gi-gtk haskell-gi-base mtl text transformers ··· 112542 112603 }: 112543 112604 mkDerivation { 112544 112605 pname = "gi-gtk-layer-shell"; 112545 - version = "0.1.2"; 112546 - sha256 = "0sdf71nqk3yxpyh7qdk65glg97nwc2almk852rqjlgjnlmjnyyx0"; 112606 + version = "0.1.3"; 112607 + sha256 = "0ywv7qy50hi1a1dc83zj2zwvilsvz69v8dld1cvs9njp3y83wai6"; 112547 112608 setupHaskellDepends = [ base Cabal gi-gdk gi-gtk haskell-gi ]; 112548 112609 libraryHaskellDepends = [ 112549 112610 base bytestring containers gi-gdk gi-gtk haskell-gi haskell-gi-base ··· 112612 112673 }: 112613 112674 mkDerivation { 112614 112675 pname = "gi-gtksource"; 112615 - version = "3.0.25"; 112616 - sha256 = "0fxfl1gc75ffp7h1dmqwig681zw578rplhpb87bhhb811sw11ibd"; 112676 + version = "3.0.26"; 112677 + sha256 = "0xax0w5zxiqw2nhz3ndl6kyxfa61n1ldwq3r6s1i0khz0xx79k5q"; 112617 112678 setupHaskellDepends = [ 112618 112679 base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 112619 112680 gi-gobject gi-gtk gi-pango haskell-gi ··· 112636 112697 }: 112637 112698 mkDerivation { 112638 112699 pname = "gi-handy"; 112639 - version = "1.0.1"; 112640 - sha256 = "0i8lvwb4kzfnqnlj7bdy4pvif4hhaxpdkn2rga3i8l78cmm8y4kh"; 112700 + version = "1.0.2"; 112701 + sha256 = "1kr135nnyxik670arjm0h8d9mrwm1a002grmiivayzggcxx22625"; 112641 112702 setupHaskellDepends = [ 112642 112703 base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject 112643 112704 gi-gtk gi-pango haskell-gi ··· 112661 112722 }: 112662 112723 mkDerivation { 112663 112724 pname = "gi-harfbuzz"; 112664 - version = "0.0.6"; 112665 - sha256 = "05jmh8mhx17jys9620shbkz1nc9jvfjr7snmpq2lxpvq2fw813ss"; 112725 + version = "0.0.7"; 112726 + sha256 = "05w123b1w3bjbaj0wq82b51bx4vnfbb6qcsd94svbhxgi705sjfx"; 112666 112727 setupHaskellDepends = [ 112667 112728 base Cabal gi-freetype2 gi-glib gi-gobject haskell-gi 112668 112729 ]; ··· 112682 112743 }: 112683 112744 mkDerivation { 112684 112745 pname = "gi-ibus"; 112685 - version = "1.5.4"; 112686 - sha256 = "0lrczkck1w0pydzsrjlf25m6pxri1kjd9hw7rz1wis36ahqvhbvr"; 112746 + version = "1.5.5"; 112747 + sha256 = "0chppwjmz2bqjwga62q6sbdkhjahyw4cmp6w9p8kyra40dwr97mv"; 112687 112748 setupHaskellDepends = [ 112688 112749 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112689 112750 ]; ··· 112704 112765 }: 112705 112766 mkDerivation { 112706 112767 pname = "gi-javascriptcore"; 112707 - version = "4.0.24"; 112708 - sha256 = "1jr7yp6hxcp2vqaa0s320hqhdfaflyby6rvgb2pfm9qs1dqzafsn"; 112768 + version = "4.0.25"; 112769 + sha256 = "1dcg3c9df2gg6vqrv7ai18lnxw6zlwn6qyn2k10p4d4h0dpq9ck8"; 112709 112770 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112710 112771 libraryHaskellDepends = [ 112711 112772 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112724 112785 }: 112725 112786 mkDerivation { 112726 112787 pname = "gi-json"; 112727 - version = "1.0.2"; 112728 - sha256 = "00qxmkdr9rl77aimfqk2s8m56anpy4fcn0b6m2k5dr4f9xf1i4nq"; 112788 + version = "1.0.3"; 112789 + sha256 = "1vmrliim4czlb35y44nxc3rxsrb3cp02c0v8niaps6kmiyv93hg9"; 112729 112790 setupHaskellDepends = [ 112730 112791 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112731 112792 ]; ··· 112745 112806 }: 112746 112807 mkDerivation { 112747 112808 pname = "gi-notify"; 112748 - version = "0.7.24"; 112749 - sha256 = "1dgjj1nqy2b37si8y5g5m12nrbqkfx8z6hir0gsvymfkbzfcx7j1"; 112809 + version = "0.7.25"; 112810 + sha256 = "034kya0mmzr9djnhrpwqpp02x4bmv681w1bcl2bga3napp4ayirv"; 112750 112811 setupHaskellDepends = [ 112751 112812 base Cabal gi-gdkpixbuf gi-glib gi-gobject haskell-gi 112752 112813 ]; ··· 112766 112827 }: 112767 112828 mkDerivation { 112768 112829 pname = "gi-ostree"; 112769 - version = "1.0.15"; 112770 - sha256 = "1lrblmsn91an1mqv4iml235bbwx1yz0llhyzf62jr65krs11jhwd"; 112830 + version = "1.0.16"; 112831 + sha256 = "0sq9nphsap5q9fryk2vpd6r67y791gcrzcap3w2b4n6i34ziv7rm"; 112771 112832 setupHaskellDepends = [ 112772 112833 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112773 112834 ]; ··· 112788 112849 }: 112789 112850 mkDerivation { 112790 112851 pname = "gi-pango"; 112791 - version = "1.0.26"; 112792 - sha256 = "1x1d4v5g6sxw12pcq7qrv4kyr7wkv755wqzdal2z9l2qzr1bqssz"; 112852 + version = "1.0.27"; 112853 + sha256 = "00v6kn1k9rzlncl867xwbis1jqy5vc12gkmbsij4hxfjr9h0h1cq"; 112793 112854 setupHaskellDepends = [ 112794 112855 base Cabal gi-gio gi-glib gi-gobject gi-harfbuzz haskell-gi 112795 112856 ]; ··· 112808 112869 112809 112870 "gi-pangocairo" = callPackage 112810 112871 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 112811 - , gi-cairo, gi-glib, gi-gobject, gi-pango, haskell-gi 112872 + , gi-cairo, gi-gio, gi-glib, gi-gobject, gi-pango, haskell-gi 112812 112873 , haskell-gi-base, haskell-gi-overloading, pango, text 112813 112874 , transformers 112814 112875 }: 112815 112876 mkDerivation { 112816 112877 pname = "gi-pangocairo"; 112817 - version = "1.0.26"; 112818 - sha256 = "0alm4v7dl44pv3ydw5fg4x6w6yzghjscnzd1qi6jbv1pqrv0f3xm"; 112878 + version = "1.0.28"; 112879 + sha256 = "06jld35ncq6yharggvdbcsy2g13gh5mq4j26w88yik0x4jiqz2j1"; 112819 112880 setupHaskellDepends = [ 112820 - base Cabal gi-cairo gi-glib gi-gobject gi-pango haskell-gi 112881 + base Cabal gi-cairo gi-gio gi-glib gi-gobject gi-pango haskell-gi 112821 112882 ]; 112822 112883 libraryHaskellDepends = [ 112823 - base bytestring containers gi-cairo gi-glib gi-gobject gi-pango 112824 - haskell-gi haskell-gi-base haskell-gi-overloading text transformers 112884 + base bytestring containers gi-cairo gi-gio gi-glib gi-gobject 112885 + gi-pango haskell-gi haskell-gi-base haskell-gi-overloading text 112886 + transformers 112825 112887 ]; 112826 112888 libraryPkgconfigDepends = [ cairo pango ]; 112827 112889 preCompileBuildDriver = '' ··· 112841 112903 }: 112842 112904 mkDerivation { 112843 112905 pname = "gi-poppler"; 112844 - version = "0.18.26"; 112845 - sha256 = "1wxm7fx1xjj2a332mh2sr1pz994aici888x69a197ccnn8p3g75k"; 112906 + version = "0.18.27"; 112907 + sha256 = "1qg81j5b40hics97diafqjxk7sw32fvlqv277awnym24m6f96lj3"; 112846 112908 setupHaskellDepends = [ 112847 112909 base Cabal gi-cairo gi-gio gi-glib gi-gobject haskell-gi 112848 112910 ]; ··· 112863 112925 }: 112864 112926 mkDerivation { 112865 112927 pname = "gi-rsvg"; 112866 - version = "2.0.2"; 112867 - sha256 = "1c9rmawsz12i6rlq8s3mhsj8q5a7q3809y8bf1yq6nzvzkm8gsrj"; 112928 + version = "2.0.3"; 112929 + sha256 = "1j7mqfl6f0zs1yhw6z0sai6ckc9hgmqqwbqifr08yfshzfsp951v"; 112868 112930 setupHaskellDepends = [ 112869 112931 base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject 112870 112932 haskell-gi ··· 112886 112948 }: 112887 112949 mkDerivation { 112888 112950 pname = "gi-secret"; 112889 - version = "0.0.14"; 112890 - sha256 = "1n03lk4x7inkq68z9krv3jgkpjsya8jjyim09qzb83cj77wb67m8"; 112951 + version = "0.0.15"; 112952 + sha256 = "11lg3lj731d0xajr5dhw5dpgws894q78nvvlj3g5i6w3y2dn9x05"; 112891 112953 setupHaskellDepends = [ 112892 112954 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112893 112955 ]; ··· 112907 112969 }: 112908 112970 mkDerivation { 112909 112971 pname = "gi-soup"; 112910 - version = "2.4.25"; 112911 - sha256 = "1rpl5q9xwfbbhzg7220855mb15qpdpx668gs7lxj7w26arp8xzcs"; 112972 + version = "2.4.26"; 112973 + sha256 = "1kxkbhllc04klg570ziwwgybsp97a7xq6gb8ggzf9hyr1ys77rq4"; 112912 112974 setupHaskellDepends = [ 112913 112975 base Cabal gi-gio gi-glib gi-gobject haskell-gi 112914 112976 ]; ··· 112928 112990 }: 112929 112991 mkDerivation { 112930 112992 pname = "gi-vips"; 112931 - version = "8.0.2"; 112932 - sha256 = "055vlgxnvvdsq86d09jcv7d7fp0msw0gg95fm2vkpx3n1zx00z6j"; 112993 + version = "8.0.3"; 112994 + sha256 = "1vzrnmifisyxakvkp6mgwgn0gqr8gwfa06cwyzhslma0snlnrk3v"; 112933 112995 setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 112934 112996 libraryHaskellDepends = [ 112935 112997 base bytestring containers gi-glib gi-gobject haskell-gi ··· 112948 113010 }: 112949 113011 mkDerivation { 112950 113012 pname = "gi-vte"; 112951 - version = "2.91.29"; 112952 - sha256 = "15c1vmkk4h723qjvmq30rcqfk5b5kihcjdqmncmgshi2qv80aa2q"; 113013 + version = "2.91.30"; 113014 + sha256 = "1n787xacng9279y7vi2g4lmxvx8xgb967v55fxvmxhjyds35fy4w"; 112953 113015 setupHaskellDepends = [ 112954 113016 base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango 112955 113017 haskell-gi ··· 112996 113058 }: 112997 113059 mkDerivation { 112998 113060 pname = "gi-webkit2"; 112999 - version = "4.0.28"; 113000 - sha256 = "0k6y33vg6641a4qis2ypnj8xms40a203y0as299rsj0l5rk9ykaw"; 113061 + version = "4.0.29"; 113062 + sha256 = "1ccpa6dvl68drpbpi372arjx3rw5ypgbdifvl5cd4c822hvjbq4h"; 113001 113063 setupHaskellDepends = [ 113002 113064 base Cabal gi-atk gi-cairo gi-gdk gi-gio gi-glib gi-gobject gi-gtk 113003 113065 gi-javascriptcore gi-soup haskell-gi ··· 113021 113083 }: 113022 113084 mkDerivation { 113023 113085 pname = "gi-webkit2webextension"; 113024 - version = "4.0.27"; 113025 - sha256 = "1m00h1yrnq6b5h635rpwhcdhvls3rg6lcp5gq3n22rqr131fsrr9"; 113086 + version = "4.0.28"; 113087 + sha256 = "0zrpma7vxg5x375w1avw8s7cw9s9psh79z846czjpkidxh66995f"; 113026 113088 setupHaskellDepends = [ 113027 113089 base Cabal gi-gio gi-gobject gi-gtk gi-javascriptcore gi-soup 113028 113090 haskell-gi ··· 113040 113102 113041 113103 "gi-wnck" = callPackage 113042 113104 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 113043 - , gi-gdk, gi-gdkpixbuf, gi-gobject, gi-gtk, haskell-gi 113044 - , haskell-gi-base, haskell-gi-overloading, libwnck, text 113045 - , transformers 113105 + , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk 113106 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, libwnck 113107 + , text, transformers 113046 113108 }: 113047 113109 mkDerivation { 113048 113110 pname = "gi-wnck"; 113049 - version = "3.0.11"; 113050 - sha256 = "0jhsr7skjn7i3klnfm9z2fg2gfl5mqsp7hd8ajlkjv7z8xk25j1w"; 113111 + version = "3.0.13"; 113112 + sha256 = "19m259gnh7haq9kaa60z3wnd3x0s2ir49g6jjc499l4rmmvga5gp"; 113051 113113 setupHaskellDepends = [ 113052 - base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gobject gi-gtk haskell-gi 113114 + base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-glib gi-gobject 113115 + gi-gtk haskell-gi 113053 113116 ]; 113054 113117 libraryHaskellDepends = [ 113055 - base bytestring containers gi-atk gi-gdk gi-gdkpixbuf gi-gobject 113056 - gi-gtk haskell-gi haskell-gi-base haskell-gi-overloading text 113057 - transformers 113118 + base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf 113119 + gi-glib gi-gobject gi-gtk haskell-gi haskell-gi-base 113120 + haskell-gi-overloading text transformers 113058 113121 ]; 113059 113122 libraryPkgconfigDepends = [ libwnck ]; 113060 113123 description = "Wnck bindings"; ··· 113069 113132 }: 113070 113133 mkDerivation { 113071 113134 pname = "gi-xlib"; 113072 - version = "2.0.11"; 113073 - sha256 = "0l6xr26asmy3rvzi5lazkfpik1n41v9a7bg2pypssc26130amp1f"; 113135 + version = "2.0.12"; 113136 + sha256 = "0dy1xfzbhkyh7nj270mmz1acnwdf0f7c3rzz31lw9zrjyf9670gj"; 113074 113137 setupHaskellDepends = [ base Cabal haskell-gi ]; 113075 113138 libraryHaskellDepends = [ 113076 113139 base bytestring containers haskell-gi haskell-gi-base ··· 113905 113968 license = lib.licenses.bsd3; 113906 113969 }) {}; 113907 113970 113971 + "githash_0_1_6_3" = callPackage 113972 + ({ mkDerivation, base, bytestring, directory, filepath, hspec 113973 + , process, template-haskell, temporary, th-compat, unliftio 113974 + }: 113975 + mkDerivation { 113976 + pname = "githash"; 113977 + version = "0.1.6.3"; 113978 + sha256 = "06zg1rif1rcxni1vacmr2bh1nbm6i62rjbikfr4xsyzq1sv7kfpw"; 113979 + libraryHaskellDepends = [ 113980 + base bytestring directory filepath process template-haskell 113981 + th-compat 113982 + ]; 113983 + testHaskellDepends = [ 113984 + base bytestring directory filepath hspec process template-haskell 113985 + temporary th-compat unliftio 113986 + ]; 113987 + description = "Compile git revision info into Haskell projects"; 113988 + license = lib.licenses.bsd3; 113989 + hydraPlatforms = lib.platforms.none; 113990 + }) {}; 113991 + 113908 113992 "github" = callPackage 113909 113993 ({ mkDerivation, aeson, base, base-compat, base16-bytestring 113910 113994 , binary, binary-instances, bytestring, containers, cryptohash-sha1 ··· 114226 114310 }: 114227 114311 mkDerivation { 114228 114312 pname = "githud"; 114229 - version = "3.2.2"; 114230 - sha256 = "19z21w6qxfndh381gcyi1ap14map886pkkc3nax8s417mv744ag3"; 114313 + version = "3.3.0"; 114314 + sha256 = "0pwjh87kk3kvlan16mk0ki4pvz5iyb3r4dnb51z0y8xzdccwisaz"; 114231 114315 isLibrary = true; 114232 114316 isExecutable = true; 114233 114317 libraryHaskellDepends = [ ··· 114547 114631 pname = "gitson"; 114548 114632 version = "0.5.2"; 114549 114633 sha256 = "15i1xj3z0gxvxqgwh5902cna6ig5pixxkcrdgsvhpsk4mbkxc7b7"; 114634 + revision = "1"; 114635 + editedCabalFile = "1ddjx87n53r6nawgidig3xfv9a13gpxj915fjbglk9ps2pp4dckm"; 114550 114636 libraryHaskellDepends = [ 114551 114637 aeson aeson-pretty base base-compat bytestring conduit-combinators 114552 114638 conduit-extra directory errors filepath flock lifted-base ··· 114679 114765 }: 114680 114766 mkDerivation { 114681 114767 pname = "glabrous"; 114682 - version = "2.0.5"; 114683 - sha256 = "1yxyyjjhfi30ymd0v80xrn4m81m2hs3v5slbdd2hc856k91lmghg"; 114684 - libraryHaskellDepends = [ 114685 - aeson aeson-pretty attoparsec base bytestring cereal cereal-text 114686 - either text unordered-containers 114687 - ]; 114688 - testHaskellDepends = [ 114689 - base directory either hspec text unordered-containers 114690 - ]; 114691 - description = "A template DSL library"; 114692 - license = lib.licenses.bsd3; 114693 - }) {}; 114694 - 114695 - "glabrous_2_0_6" = callPackage 114696 - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 114697 - , cereal, cereal-text, directory, either, hspec, text 114698 - , unordered-containers 114699 - }: 114700 - mkDerivation { 114701 - pname = "glabrous"; 114702 114768 version = "2.0.6"; 114703 114769 sha256 = "1yz2h8x8hhy8nqy2pppax0mbb3k2ydcspbyngy19afphxxd5bbkz"; 114704 114770 libraryHaskellDepends = [ ··· 114710 114776 ]; 114711 114777 description = "A template DSL library"; 114712 114778 license = lib.licenses.bsd3; 114713 - hydraPlatforms = lib.platforms.none; 114714 114779 }) {}; 114715 114780 114716 114781 "glade" = callPackage ··· 119393 119458 }: 119394 119459 mkDerivation { 119395 119460 pname = "grammatical-parsers"; 119396 - version = "0.6"; 119397 - sha256 = "1ck7zv110yrwz04q10j38wx6ipap88np9px6l94rxbha1m1k7nhi"; 119461 + version = "0.7"; 119462 + sha256 = "0582mr13z5bq71s76ngvm01dfrg68mw968mad0m4nbfx147za0ih"; 119398 119463 isLibrary = true; 119399 119464 isExecutable = true; 119400 119465 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 120244 120309 testToolDepends = [ markdown-unlit ]; 120245 120310 description = "A simple interface for generating persistent data and linking its dependencies"; 120246 120311 license = lib.licenses.mit; 120312 + }) {}; 120313 + 120314 + "graphula_2_0_2_2" = callPackage 120315 + ({ mkDerivation, base, containers, directory, generic-arbitrary 120316 + , generics-eot, hspec, HUnit, markdown-unlit, monad-logger, mtl 120317 + , persistent, persistent-sqlite, QuickCheck, random, resourcet 120318 + , semigroups, temporary, text, transformers, unliftio 120319 + , unliftio-core 120320 + }: 120321 + mkDerivation { 120322 + pname = "graphula"; 120323 + version = "2.0.2.2"; 120324 + sha256 = "066lcn262x4l826sglybrz4mp58ishcj0h1r5h41aiy09mcf4g3v"; 120325 + libraryHaskellDepends = [ 120326 + base containers directory generics-eot HUnit mtl persistent 120327 + QuickCheck random semigroups temporary text unliftio unliftio-core 120328 + ]; 120329 + testHaskellDepends = [ 120330 + base generic-arbitrary hspec markdown-unlit monad-logger persistent 120331 + persistent-sqlite QuickCheck resourcet transformers unliftio-core 120332 + ]; 120333 + testToolDepends = [ markdown-unlit ]; 120334 + description = "A simple interface for generating persistent data and linking its dependencies"; 120335 + license = lib.licenses.mit; 120336 + hydraPlatforms = lib.platforms.none; 120247 120337 }) {}; 120248 120338 120249 120339 "graphula-core" = callPackage ··· 122207 122297 broken = true; 122208 122298 }) {}; 122209 122299 122300 + "h-raylib" = callPackage 122301 + ({ mkDerivation, base, c, libGL, libX11 }: 122302 + mkDerivation { 122303 + pname = "h-raylib"; 122304 + version = "4.5.0.1"; 122305 + sha256 = "1bb0g8gn08pp2s763d0ic7hj46whpb6xdq0hvpar26srxlkxnzjl"; 122306 + libraryHaskellDepends = [ base ]; 122307 + librarySystemDepends = [ c libGL libX11 ]; 122308 + description = "Raylib bindings for Haskell"; 122309 + license = lib.licenses.asl20; 122310 + hydraPlatforms = lib.platforms.none; 122311 + broken = true; 122312 + }) {c = null; inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;}; 122313 + 122210 122314 "h-reversi" = callPackage 122211 122315 ({ mkDerivation, base, blank-canvas, containers, hspec, QuickCheck 122212 122316 , split, stm, text ··· 125555 125659 }) {}; 125556 125660 125557 125661 "hanabi-dealer" = callPackage 125558 - ({ mkDerivation, base, containers, random }: 125662 + ({ mkDerivation, array, base, containers, random, tf-random }: 125559 125663 mkDerivation { 125560 125664 pname = "hanabi-dealer"; 125561 - version = "0.11.0.2"; 125562 - sha256 = "1ndg8zmcc5a9z9qcc5z5nwssywxighnqxa4pzc5iy7kw4x9bm3kn"; 125665 + version = "0.15.1.1"; 125666 + sha256 = "1ldyr5jqlr97kjk4pgqrc15rh11cx5wy3fydmzk6laknpqyshvr3"; 125563 125667 isLibrary = true; 125564 125668 isExecutable = true; 125565 - libraryHaskellDepends = [ base containers random ]; 125669 + libraryHaskellDepends = [ array base containers random tf-random ]; 125566 125670 description = "Hanabi card game"; 125567 125671 license = lib.licenses.bsd3; 125568 125672 hydraPlatforms = lib.platforms.none; ··· 128437 128541 }: 128438 128542 mkDerivation { 128439 128543 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128440 - sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128441 - sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128544 + version = "0.0.37.0"; 128545 + sha256 = "1srinycpz3zb86r6b1kyn0ikc8hd62vzgig9ki0lddrxjxc637gg"; 128442 128546 isLibrary = true; 128443 128547 isExecutable = true; 128444 128548 libraryHaskellDepends = [ ··· 128664 128768 license = lib.licenses.lgpl21Only; 128665 128769 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128666 128770 128771 + "haskell-gi_0_26_2" = callPackage 128772 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128773 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128774 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128775 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128776 + }: 128777 + mkDerivation { 128778 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128779 + version = "0.26.2"; 128780 + sha256 = "05r84czb05n69g7p7jazljh95yzdh2lpzgjjypgpg75mh83igr2w"; 128781 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 128782 + libraryHaskellDepends = [ 128783 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128784 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128785 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128786 + ]; 128787 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128788 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128789 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128790 + license = lib.licenses.lgpl21Only; 128791 + hydraPlatforms = lib.platforms.none; 128792 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128793 + 128667 128794 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128668 128795 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128669 128796 mkDerivation { 128670 128797 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128671 - sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128672 - sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128798 + version = "0.26.2"; 128799 + sha256 = "1jlc8hwpg2mbhmv6ra8b2dsf1wqsfn0hrphikrbgvbcls2wd6xw0"; 128673 128800 libraryHaskellDepends = [ base bytestring containers text ]; 128674 128801 libraryPkgconfigDepends = [ glib ]; 128675 128802 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128676 128803 license = lib.licenses.lgpl21Only; 128804 + }) {inherit (pkgs) glib;}; 128805 + 128806 + "haskell-gi-base_0_26_3" = callPackage 128807 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128808 + mkDerivation { 128809 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128810 + version = "0.26.3"; 128811 + sha256 = "1n0pgyd5gm4lic3c48cvl10chk15jdd1d381f3fcizp61rhslvfs"; 128812 + libraryHaskellDepends = [ base bytestring containers text ]; 128813 + libraryPkgconfigDepends = [ glib ]; 128814 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 128815 + license = lib.licenses.lgpl21Only; 128816 + hydraPlatforms = lib.platforms.none; 128677 128817 }) {inherit (pkgs) glib;}; 128678 128818 128679 128819 sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; ··· 132067 132207 license = lib.licenses.mit; 132068 132208 }) {}; 132069 132209 132070 - "hasql_1_6_1_4" = callPackage 132210 + "hasql_1_6_2" = callPackage 132071 132211 ({ mkDerivation, aeson, attoparsec, base, bytestring 132072 132212 , bytestring-strict-builder, contravariant, contravariant-extras 132073 132213 , dlist, gauge, hashable, hashtables, mtl, network-ip ··· 132078 132218 }: 132079 132219 mkDerivation { 132080 132220 pname = "hasql"; 132081 - version = "1.6.1.4"; 132082 - sha256 = "1x3frmckky3yxi5p2p76v4cx9gv0hd2iyvd2mgd359cgdcvnlvzp"; 132221 + version = "1.6.2"; 132222 + sha256 = "1ph1di36lhhi2y542cc5mm0pprq1j6yb2i69bwms59173amh8gcx"; 132083 132223 libraryHaskellDepends = [ 132084 132224 aeson attoparsec base bytestring bytestring-strict-builder 132085 132225 contravariant dlist hashable hashtables mtl network-ip ··· 132395 132535 license = lib.licenses.mit; 132396 132536 }) {}; 132397 132537 132398 - "hasql-pool_0_8_0_4" = callPackage 132399 - ({ mkDerivation, async, base, hasql, hspec, rerebase, stm, time 132538 + "hasql-pool_0_8_0_6" = callPackage 132539 + ({ mkDerivation, async, base, hasql, hspec, rerebase, stm 132400 132540 , transformers 132401 132541 }: 132402 132542 mkDerivation { 132403 132543 pname = "hasql-pool"; 132404 - version = "0.8.0.4"; 132405 - sha256 = "1zpc79k63pysc5zj7lcj81qm48gs0f6zqv455dpwgyipj7g0ba65"; 132406 - libraryHaskellDepends = [ base hasql stm time transformers ]; 132544 + version = "0.8.0.6"; 132545 + sha256 = "0scpgynr20j8qkhi5gjl0mh7iq713vz7r1zr4xa0jv0s2nd14j2v"; 132546 + libraryHaskellDepends = [ base hasql stm transformers ]; 132407 132547 testHaskellDepends = [ async hasql hspec rerebase stm ]; 132408 132548 description = "Pool of connections for Hasql"; 132409 132549 license = lib.licenses.mit; ··· 141166 141306 pname = "hlrdb-core"; 141167 141307 version = "0.2.0.0"; 141168 141308 sha256 = "0hkjll4v4kxc133b19kk9k4dkrbag6qdw24gwrhikrxlk666jsbl"; 141309 + revision = "1"; 141310 + editedCabalFile = "15pcz7f2alsyccz5id162ka4win9j6l98ygpgaycl6n57vcd3nsv"; 141169 141311 libraryHaskellDepends = [ 141170 141312 base bytestring hashable hedis lens mtl profunctors random time 141171 141313 unordered-containers ··· 145171 145313 license = lib.licenses.bsd3; 145172 145314 }) {}; 145173 145315 145174 - "hpc_0_6_0_3" = callPackage 145175 - ({ mkDerivation, base, containers, directory, filepath, time }: 145316 + "hpc_0_6_2_0" = callPackage 145317 + ({ mkDerivation, base, containers, deepseq, directory, filepath 145318 + , time 145319 + }: 145176 145320 mkDerivation { 145177 145321 pname = "hpc"; 145178 - version = "0.6.0.3"; 145179 - sha256 = "1am2fcxg7d3j3kpyhz48wzbpg83dk2jmzhqm4yiib649alzcgnhn"; 145180 - revision = "3"; 145181 - editedCabalFile = "06dbiaf0sangq3zdyr3x9wkvs2fgyas3ipqkfwfmycax6j17jgyy"; 145322 + version = "0.6.2.0"; 145323 + sha256 = "0igq0x3hsdfh4sw40ac8ld5xmsdqxykfz1jmzmwf142za6q7k964"; 145182 145324 libraryHaskellDepends = [ 145183 - base containers directory filepath time 145325 + base containers deepseq directory filepath time 145184 145326 ]; 145185 145327 description = "Code Coverage Library for Haskell"; 145186 145328 license = lib.licenses.bsd3; ··· 145496 145638 broken = true; 145497 145639 }) {inherit (pkgs) postgresql;}; 145498 145640 145499 - "hpqtypes_1_10_0_1" = callPackage 145500 - ({ mkDerivation, aeson, async, base, bytestring, Cabal, containers 145501 - , directory, exceptions, filepath, HUnit, lifted-base 145502 - , monad-control, mtl, postgresql, QuickCheck, random, resource-pool 145503 - , scientific, semigroups, test-framework, test-framework-hunit 145504 - , text, text-show, time, transformers, transformers-base 145505 - , unordered-containers, uuid-types, vector 145641 + "hpqtypes_1_10_0_2" = callPackage 145642 + ({ mkDerivation, aeson, async, base, bytestring, containers 145643 + , exceptions, HUnit, libpq, lifted-base, monad-control, mtl 145644 + , QuickCheck, random, resource-pool, scientific, semigroups 145645 + , test-framework, test-framework-hunit, text, text-show, time 145646 + , transformers, transformers-base, unordered-containers, uuid-types 145647 + , vector 145506 145648 }: 145507 145649 mkDerivation { 145508 145650 pname = "hpqtypes"; 145509 - version = "1.10.0.1"; 145510 - sha256 = "19lakc0m4fgv36kiw9ziyr3abq6jrb6rij443s7a2n3xfrjwy0b8"; 145511 - setupHaskellDepends = [ base Cabal directory filepath ]; 145651 + version = "1.10.0.2"; 145652 + sha256 = "0rrsd16cxh8p0ssayxla99svapkbbl2sn5n9hi8vcf9hazfh8nlw"; 145512 145653 libraryHaskellDepends = [ 145513 145654 aeson async base bytestring containers exceptions lifted-base 145514 145655 monad-control mtl resource-pool semigroups text text-show time 145515 145656 transformers transformers-base uuid-types vector 145516 145657 ]; 145517 - librarySystemDepends = [ postgresql ]; 145658 + libraryPkgconfigDepends = [ libpq ]; 145518 145659 testHaskellDepends = [ 145519 145660 aeson base bytestring exceptions HUnit lifted-base monad-control 145520 145661 mtl QuickCheck random scientific test-framework ··· 145525 145666 license = lib.licenses.bsd3; 145526 145667 hydraPlatforms = lib.platforms.none; 145527 145668 broken = true; 145528 - }) {inherit (pkgs) postgresql;}; 145669 + }) {libpq = null;}; 145670 + 145671 + "hpqtypes-effectful" = callPackage 145672 + ({ mkDerivation, base, effectful-core, exceptions, hpqtypes, tasty 145673 + , tasty-hunit, text 145674 + }: 145675 + mkDerivation { 145676 + pname = "hpqtypes-effectful"; 145677 + version = "1.0.0.0"; 145678 + sha256 = "0jfg20n5cai2rrx2g2rl2ndamylg31bjf0i66jc7qcwqwp1l1r5j"; 145679 + libraryHaskellDepends = [ 145680 + base effectful-core exceptions hpqtypes 145681 + ]; 145682 + testHaskellDepends = [ 145683 + base effectful-core exceptions hpqtypes tasty tasty-hunit text 145684 + ]; 145685 + description = "Adaptation of the hpqtypes library for the effectful ecosystem"; 145686 + license = lib.licenses.bsd3; 145687 + hydraPlatforms = lib.platforms.none; 145688 + }) {}; 145529 145689 145530 145690 "hpqtypes-extras" = callPackage 145531 145691 ({ mkDerivation, base, base16-bytestring, bytestring, containers ··· 145534 145694 }: 145535 145695 mkDerivation { 145536 145696 pname = "hpqtypes-extras"; 145537 - version = "1.16.1.0"; 145538 - sha256 = "1kl9miwarrr69h2b3mmx65ypbfflhhw117k42d9k6jrxbibj7fqq"; 145697 + version = "1.16.2.0"; 145698 + sha256 = "0vb96dm8w089j8zc0i5k8abr7dx5nbrmlpjwhpi2vshhmmihkja3"; 145539 145699 libraryHaskellDepends = [ 145540 145700 base base16-bytestring bytestring containers cryptohash exceptions 145541 145701 extra hpqtypes log-base mtl text text-show ··· 146311 146471 pname = "hs-duktape"; 146312 146472 version = "1.0.0"; 146313 146473 sha256 = "1bbxp7285vw39jbqpl80jqg46vwycva5fzn4prk3a2fs419xdxzm"; 146474 + revision = "1"; 146475 + editedCabalFile = "09lmnx2i5gq601sj9byzbcq5idppj3gg44ns522xd25rcxn40d8a"; 146314 146476 setupHaskellDepends = [ base Cabal directory process ]; 146315 146477 libraryHaskellDepends = [ 146316 146478 aeson base bytestring text transformers unordered-containers vector ··· 149426 149588 }) {}; 149427 149589 149428 149590 "hslua-list" = callPackage 149429 - ({ mkDerivation, base, bytestring, hslua-core, hslua-marshalling 149430 - , tasty, tasty-lua 149431 - }: 149591 + ({ mkDerivation, base, bytestring, hslua-core, tasty, tasty-lua }: 149432 149592 mkDerivation { 149433 149593 pname = "hslua-list"; 149434 - version = "1.0.0"; 149435 - sha256 = "05fkxplc8ayvzidv8z5fv8cns19p96vmzh7v794qh5wksllkb08q"; 149436 - libraryHaskellDepends = [ 149437 - base bytestring hslua-core hslua-marshalling 149438 - ]; 149594 + version = "1.1.0"; 149595 + sha256 = "1437ff2vqhaymiabp31qhr5ixb99h93cp6qz6z82c4d9c5wvl0q6"; 149596 + libraryHaskellDepends = [ base bytestring hslua-core ]; 149439 149597 testHaskellDepends = [ base hslua-core tasty tasty-lua ]; 149440 149598 description = "Opinionated, but extensible Lua list type"; 149441 149599 license = lib.licenses.mit; ··· 149578 149736 license = lib.licenses.mit; 149579 149737 }) {}; 149580 149738 149739 + "hslua-module-zip" = callPackage 149740 + ({ mkDerivation, base, bytestring, filepath, hslua-core, hslua-list 149741 + , hslua-marshalling, hslua-module-system, hslua-packaging, tasty 149742 + , tasty-hunit, tasty-lua, text, time, zip-archive 149743 + }: 149744 + mkDerivation { 149745 + pname = "hslua-module-zip"; 149746 + version = "1.0.0"; 149747 + sha256 = "0fxqrzfh9iq801pj965pws3cj8gm3wl642ilmy30kriczdvjsny6"; 149748 + libraryHaskellDepends = [ 149749 + base bytestring filepath hslua-core hslua-list hslua-marshalling 149750 + hslua-packaging text time zip-archive 149751 + ]; 149752 + testHaskellDepends = [ 149753 + base bytestring filepath hslua-core hslua-list hslua-marshalling 149754 + hslua-module-system hslua-packaging tasty tasty-hunit tasty-lua 149755 + text time zip-archive 149756 + ]; 149757 + description = "Lua module to work with file zips"; 149758 + license = lib.licenses.mit; 149759 + hydraPlatforms = lib.platforms.none; 149760 + }) {}; 149761 + 149581 149762 "hslua-objectorientation" = callPackage 149582 149763 ({ mkDerivation, base, bytestring, containers, exceptions 149583 149764 , hslua-core, hslua-marshalling, lua-arbitrary, mtl, QuickCheck ··· 149821 150002 ({ mkDerivation, base, vector }: 149822 150003 mkDerivation { 149823 150004 pname = "hsnoise"; 149824 - version = "0.0.2"; 149825 - sha256 = "0f8xpmzmg71l7qn1vjvzncsx8r7vfpzvlnlq0029ixf64gshbmzl"; 150005 + version = "0.0.3"; 150006 + sha256 = "0wdkq9c39x0ma90bdi5m85sx4crfkv4k0zg8l3371q4sik931ixr"; 149826 150007 libraryHaskellDepends = [ base vector ]; 149827 150008 description = "A coherent 3d noise library"; 149828 150009 license = lib.licenses.bsd3; ··· 153054 153235 pname = "http-client-rustls"; 153055 153236 version = "0.0.0.0"; 153056 153237 sha256 = "1rwiclqc1hpxgaqz6y8pxl96g68bg8d8m1clapg60fgmyj0zjnha"; 153238 + revision = "1"; 153239 + editedCabalFile = "0qhs7zbkw0zp1rv96da484kxizlx9vkc8n7zr8rz9w55gszb2bcf"; 153057 153240 libraryHaskellDepends = [ 153058 153241 base bytestring http-client network resourcet rustls text 153059 153242 ]; ··· 153445 153628 pname = "http-link-header"; 153446 153629 version = "1.2.1"; 153447 153630 sha256 = "15pcav5k7j4pvqwkyyrqgcm7yxqippx4yiprsg9fpml4kywcr2ca"; 153448 - revision = "1"; 153449 - editedCabalFile = "13r2gkvn0v1077xhpinlqfbq8hdpgasm5p895mxi72mqlwnqcrc6"; 153631 + revision = "3"; 153632 + editedCabalFile = "16xbv4cz8b9gh42za6bhz73qcqrd5ix330cs4prj2jn124hb9xwx"; 153450 153633 libraryHaskellDepends = [ 153451 153634 attoparsec base bytestring errors http-api-data network-uri text 153452 153635 ]; ··· 155655 155838 testHaskellDepends = [ base hedgehog hspec hw-hspec-hedgehog ]; 155656 155839 description = "Avro support for Kafka infrastructure"; 155657 155840 license = lib.licenses.bsd3; 155841 + hydraPlatforms = lib.platforms.none; 155658 155842 }) {}; 155659 155843 155660 155844 "hw-kafka-client" = callPackage ··· 159454 159638 }) {}; 159455 159639 159456 159640 "implicit-hie" = callPackage 159457 - ({ mkDerivation, attoparsec, base, directory, filepath, filepattern 159458 - , hspec, hspec-attoparsec, text, transformers, yaml 159641 + ({ mkDerivation, attoparsec, base, bytestring, Cabal-syntax 159642 + , directory, filepath, filepattern, hspec, hspec-attoparsec, text 159643 + , transformers, yaml 159459 159644 }: 159460 159645 mkDerivation { 159461 159646 pname = "implicit-hie"; 159462 - version = "0.1.2.7"; 159463 - sha256 = "0yb457n26455kbq6kv8g48q66pmmaxcpikmpg9gm00sd6adgq6gl"; 159647 + version = "0.1.3.0"; 159648 + sha256 = "0s2h09gp1z81fxc9j5vcxvzyvf5nvqyhkw7mwq4sg8jjpm0r4gn3"; 159464 159649 isLibrary = true; 159465 159650 isExecutable = true; 159466 159651 libraryHaskellDepends = [ 159467 - attoparsec base directory filepath filepattern text transformers 159468 - yaml 159652 + attoparsec base bytestring Cabal-syntax directory filepath 159653 + filepattern text transformers yaml 159469 159654 ]; 159470 159655 executableHaskellDepends = [ 159471 159656 attoparsec base directory filepath filepattern text transformers ··· 159792 159977 }: 159793 159978 mkDerivation { 159794 159979 pname = "incipit"; 159795 - version = "0.3.1.0"; 159796 - sha256 = "00x6g4ngcyak0dh7ms2wx0kh1ckm8laanfp823yskkg9gc71blqy"; 159980 + version = "0.4.0.0"; 159981 + sha256 = "0w4wipaq0iscfnv68x5insjbcqcrnfx6r75lkq6v7nxj1y124yqa"; 159797 159982 libraryHaskellDepends = [ 159798 159983 base incipit-core polysemy-conc polysemy-log polysemy-resume 159799 159984 polysemy-time ··· 160288 160473 160289 160474 "indieweb-algorithms" = callPackage 160290 160475 ({ mkDerivation, aeson, aeson-qq, base, bytestring, containers 160291 - , data-default, either, hspec, hspec-expectations-pretty-diff 160292 - , http-link-header, lens, lens-aeson, microformats2-parser, mtl 160293 - , network-uri, raw-strings-qq, safe, template-haskell, text, time 160294 - , transformers, unordered-containers, vector 160476 + , data-default, either, errors, hspec 160477 + , hspec-expectations-pretty-diff, http-link-header, lens 160478 + , lens-aeson, microformats2-parser, mtl, network-uri 160479 + , raw-strings-qq, safe, template-haskell, text, time, transformers 160480 + , unordered-containers, vector, xml-conduit, xml-conduit-writer 160481 + , xml-lens 160295 160482 }: 160296 160483 mkDerivation { 160297 160484 pname = "indieweb-algorithms"; 160298 - version = "0.1.0"; 160299 - sha256 = "1cl0rjfhgb6fn8nlm09qs1jg9xd01507x7ii65vrp98c4zfc85rl"; 160485 + version = "0.1.1"; 160486 + sha256 = "15hh4xkkqycv74grjfssma2h3prvax00y8fpgqh8wyb3laq5n75g"; 160300 160487 libraryHaskellDepends = [ 160301 - aeson base bytestring containers data-default either 160488 + aeson base bytestring containers data-default either errors 160302 160489 http-link-header lens lens-aeson microformats2-parser network-uri 160303 - safe text time transformers unordered-containers vector 160490 + safe text time transformers unordered-containers vector xml-conduit 160491 + xml-conduit-writer xml-lens 160304 160492 ]; 160305 160493 testHaskellDepends = [ 160306 160494 aeson aeson-qq base bytestring data-default hspec 160307 - hspec-expectations-pretty-diff microformats2-parser mtl network-uri 160308 - raw-strings-qq template-haskell text time 160495 + hspec-expectations-pretty-diff http-link-header lens lens-aeson 160496 + microformats2-parser mtl network-uri raw-strings-qq 160497 + template-haskell text time xml-conduit 160309 160498 ]; 160310 160499 description = "A collection of implementations of IndieWeb algorithms"; 160311 160500 license = lib.licenses.publicDomain; 160312 - hydraPlatforms = lib.platforms.none; 160313 160501 }) {}; 160314 160502 160315 160503 "indigo" = callPackage ··· 160409 160597 }: 160410 160598 mkDerivation { 160411 160599 pname = "infernal"; 160412 - version = "0.6.0"; 160413 - sha256 = "1qk0d5k7kjkhqxpkm1fnah1syd0la1z88l5mwv3z6ly5njvj78fl"; 160600 + version = "0.7.0"; 160601 + sha256 = "0jbmcwdpnqxvfcbcd2xqybmz69mycwbzxrj9hlgas365y4m2rlka"; 160414 160602 libraryHaskellDepends = [ 160415 160603 aeson base binary bytestring case-insensitive exceptions hashable 160416 160604 http-client http-types little-logger little-rio microlens ··· 172331 172519 }: 172332 172520 mkDerivation { 172333 172521 pname = "language-Modula2"; 172334 - version = "0.1.2"; 172335 - sha256 = "0sag6wayg9c6rzdb2n3wbvqq0ncs6pk0pdbpvgx1pr84gfxlg1i6"; 172522 + version = "0.1.3"; 172523 + sha256 = "0izh9scx1hky2f47qq0gbfwwcvn984h3icpbw475z5qbid0j3856"; 172336 172524 isLibrary = true; 172337 172525 isExecutable = true; 172338 172526 libraryHaskellDepends = [ ··· 172436 172624 ]; 172437 172625 description = "Language definition and parser for AVRO files"; 172438 172626 license = lib.licenses.asl20; 172627 + hydraPlatforms = lib.platforms.none; 172439 172628 }) {}; 172440 172629 172441 172630 "language-bash" = callPackage ··· 173282 173471 }: 173283 173472 mkDerivation { 173284 173473 pname = "language-oberon"; 173285 - version = "0.3.1"; 173286 - sha256 = "0x54bbdaxmz8z09hipvf5f30d0h3cvnppm47ra7xn4iycf2vbrkd"; 173474 + version = "0.3.2"; 173475 + sha256 = "0k4r2h02znhs4l5nm88pwva0d7d3p9bga1rrdjga6rjd1ihhbfx1"; 173287 173476 isLibrary = true; 173288 173477 isExecutable = true; 173289 173478 libraryHaskellDepends = [ ··· 175020 175209 }: 175021 175210 mkDerivation { 175022 175211 pname = "leancheck-instances"; 175023 - version = "0.0.4"; 175024 - sha256 = "1l1hwkhxgmy7ssqhrbi8xngb99zhdfnchzq4668gi35a932a1id7"; 175025 - libraryHaskellDepends = [ 175026 - array base bytestring containers leancheck nats text time 175027 - ]; 175028 - testHaskellDepends = [ 175029 - base bytestring containers leancheck nats text 175030 - ]; 175031 - description = "Common LeanCheck instances"; 175032 - license = lib.licenses.bsd3; 175033 - }) {}; 175034 - 175035 - "leancheck-instances_0_0_5" = callPackage 175036 - ({ mkDerivation, array, base, bytestring, containers, leancheck 175037 - , nats, text, time 175038 - }: 175039 - mkDerivation { 175040 - pname = "leancheck-instances"; 175041 175212 version = "0.0.5"; 175042 175213 sha256 = "111dgr7ivd36v5fqcvnx2jq7iyn9akz5css6mzb5h72rc0sxwq6q"; 175043 175214 libraryHaskellDepends = [ ··· 175048 175219 ]; 175049 175220 description = "Common LeanCheck instances"; 175050 175221 license = lib.licenses.bsd3; 175051 - hydraPlatforms = lib.platforms.none; 175052 175222 }) {}; 175053 175223 175054 175224 "leankit-api" = callPackage ··· 176647 176817 pname = "libfuse3"; 176648 176818 version = "0.2.0.0"; 176649 176819 sha256 = "10i92xy8bl36ymmdq3yp9lh7rbzwbk7gff6cqnijchddllj7maca"; 176820 + revision = "1"; 176821 + editedCabalFile = "10nv0lgd9494dp9ipmjlqsgwc91hv4mhcqmxglwmalf0lhmbw9cw"; 176650 176822 isLibrary = true; 176651 176823 isExecutable = true; 176652 176824 libraryHaskellDepends = [ ··· 177594 177766 pname = "libyaml"; 177595 177767 version = "0.1.2"; 177596 177768 sha256 = "1dcpbsjg6n305l07isxmavgp01lbv1qggy16acjyxjlz35pxchlg"; 177769 + revision = "1"; 177770 + editedCabalFile = "00f1rag6sd7c8kza2agw9089p9vf21iiga2aq41nbf6d3yqn7dkz"; 177597 177771 libraryHaskellDepends = [ base bytestring conduit resourcet ]; 177598 177772 description = "Low-level, streaming YAML interface"; 177599 177773 license = lib.licenses.bsd3; ··· 177930 178104 }: 177931 178105 mkDerivation { 177932 178106 pname = "lifx-lan"; 177933 - version = "0.7"; 177934 - sha256 = "00lci0mj75pyrimzcbyq088pg7k6xx1p9pps09l7m3y4dhbnsyyf"; 178107 + version = "0.7.1"; 178108 + sha256 = "1apzp7pkd2vl7nxmdcmdnpa89wrs1fmaii8gd01bjcmjkk7qxgli"; 177935 178109 libraryHaskellDepends = [ 177936 178110 ansi-terminal base binary bytestring colour composition containers 177937 178111 extra monad-loops mtl network random safe text time transformers ··· 178396 178570 license = lib.licenses.mit; 178397 178571 }) {}; 178398 178572 178399 - "linear-base_0_2_0" = callPackage 178573 + "linear-base_0_3_0" = callPackage 178400 178574 ({ mkDerivation, base, containers, deepseq, gauge, ghc-prim 178401 178575 , hashable, hashtables, hedgehog, inspection-testing 178402 178576 , linear-generics, mmorph, MonadRandom, primitive, random ··· 178406 178580 }: 178407 178581 mkDerivation { 178408 178582 pname = "linear-base"; 178409 - version = "0.2.0"; 178410 - sha256 = "0s6z21b71pbqjmbz1r2d6xk90a9wbpa4f1dhlia209avhr1wsv26"; 178583 + version = "0.3.0"; 178584 + sha256 = "0b1hs26a9av8vml10kw1jjsliwwhj3h2cmfnkiqbrqpm47yxmr35"; 178411 178585 libraryHaskellDepends = [ 178412 178586 base containers ghc-prim hashable linear-generics primitive 178413 178587 storable-tuple text transformers vector ··· 179385 179559 pname = "liquid-fixpoint"; 179386 179560 version = "8.10.7"; 179387 179561 sha256 = "02zih8q3kv94s1l4m9d8f3d60idm1an23kxx0ahjfg8cdqgi3gym"; 179562 + revision = "1"; 179563 + editedCabalFile = "0ddqrx1ffihwmfw1jy9cycj253zq0f9f7n7xvwl6k07q58nadaf4"; 179388 179564 configureFlags = [ "-fbuild-external" ]; 179389 179565 isLibrary = true; 179390 179566 isExecutable = true; ··· 183346 183522 }: 183347 183523 mkDerivation { 183348 183524 pname = "lucid2"; 183349 - version = "0.0.20220526"; 183350 - sha256 = "004bmzwzxfq2pmp7wn1mrdwkw9fnyfnmvzymnwn8fczkq17w4csd"; 183351 - revision = "1"; 183352 - editedCabalFile = "1b4vh46z3imkxmw6mg5mh12zhckrjlkbw7m5ix75l5ryl26lqlsc"; 183525 + version = "0.0.20221012"; 183526 + sha256 = "00r3qmxrs3jh3v4gl5m38j86ihh78q4vmsk4bz2pbcc8gh2yficj"; 183353 183527 libraryHaskellDepends = [ 183354 183528 base blaze-builder bytestring containers mtl text transformers 183355 183529 ]; ··· 184591 184765 pname = "magicbane"; 184592 184766 version = "0.5.1"; 184593 184767 sha256 = "18kxixk0cj32pjpwp96mpnppy21xn4gy4xksb97m31j30kmlas91"; 184768 + revision = "1"; 184769 + editedCabalFile = "0hay0nfaxlvm5l7jywd08779j9vcpjjrflx4cy62krsqmw9vnybm"; 184594 184770 libraryHaskellDepends = [ 184595 184771 aeson aeson-qq attoparsec base bytestring conduit 184596 184772 conduit-combinators data-has ekg-core ekg-wai envy errors ··· 187992 188168 mainProgram = "mega-sdist"; 187993 188169 }) {}; 187994 188170 188171 + "mega-sdist_0_4_3_0" = callPackage 188172 + ({ mkDerivation, aeson, base, bytestring, optparse-simple, pantry 188173 + , path, path-io, rio, rio-orphans, yaml 188174 + }: 188175 + mkDerivation { 188176 + pname = "mega-sdist"; 188177 + version = "0.4.3.0"; 188178 + sha256 = "0bv490zs2a25r0kwb7kqmami3xfxmjg9fqb1j4azn7jyf14jg367"; 188179 + isLibrary = false; 188180 + isExecutable = true; 188181 + executableHaskellDepends = [ 188182 + aeson base bytestring optparse-simple pantry path path-io rio 188183 + rio-orphans yaml 188184 + ]; 188185 + description = "Handles uploading to Hackage from mega repos"; 188186 + license = lib.licenses.mit; 188187 + hydraPlatforms = lib.platforms.none; 188188 + mainProgram = "mega-sdist"; 188189 + }) {}; 188190 + 187995 188191 "megalisp" = callPackage 187996 188192 ({ mkDerivation, base, megaparsec, mtl, text }: 187997 188193 mkDerivation { ··· 189509 189705 }) {}; 189510 189706 189511 189707 "microformats2-parser" = callPackage 189512 - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec 189513 - , aws-lambda-haskell-runtime, aws-lambda-haskell-runtime-wai, base 189514 - , base-compat, blaze-html, blaze-markup, bytestring 189515 - , case-insensitive, containers, data-default, either, errors 189516 - , githash, hspec, hspec-expectations-pretty-diff, html-conduit 189517 - , lens, lens-aeson, mtl, network, network-uri, options, pcre-heavy 189518 - , raw-strings-qq, safe, scotty, tagsoup, template-haskell, text 189519 - , time, transformers, unordered-containers, vector, wai, wai-cli 189520 - , wai-extra, xml-lens, xss-sanitize 189708 + ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat 189709 + , blaze-markup, bytestring, case-insensitive, containers 189710 + , data-default, either, errors, hspec 189711 + , hspec-expectations-pretty-diff, html-conduit, lens, lens-aeson 189712 + , mtl, network-uri, pcre-heavy, raw-strings-qq, safe, tagsoup 189713 + , template-haskell, text, time, transformers, unordered-containers 189714 + , vector, xml-lens, xss-sanitize 189521 189715 }: 189522 189716 mkDerivation { 189523 189717 pname = "microformats2-parser"; 189524 - version = "1.0.2.0"; 189525 - sha256 = "1vrw60az8jb3m9kk2vsn1v5l68jmwxsfw3p7lfwl9a8d4gk5m1gp"; 189718 + version = "1.0.2.2"; 189719 + sha256 = "0r1j0ky2kqc1qkvdhmcxxjwc7gplmsr0pdra2fc0xb0k7ccb2hvc"; 189526 189720 isLibrary = true; 189527 189721 isExecutable = true; 189528 189722 libraryHaskellDepends = [ ··· 189531 189725 lens lens-aeson network-uri pcre-heavy safe tagsoup text time 189532 189726 transformers unordered-containers vector xml-lens xss-sanitize 189533 189727 ]; 189534 - executableHaskellDepends = [ 189535 - aeson aeson-pretty aws-lambda-haskell-runtime 189536 - aws-lambda-haskell-runtime-wai base base-compat blaze-html 189537 - blaze-markup data-default githash network network-uri options 189538 - scotty text wai wai-cli wai-extra 189539 - ]; 189540 189728 testHaskellDepends = [ 189541 189729 aeson-qq base base-compat bytestring data-default hspec 189542 189730 hspec-expectations-pretty-diff html-conduit mtl network-uri ··· 189544 189732 ]; 189545 189733 description = "A Microformats 2 parser"; 189546 189734 license = lib.licenses.publicDomain; 189547 - hydraPlatforms = lib.platforms.none; 189548 189735 }) {}; 189549 189736 189550 189737 "microformats2-types" = callPackage ··· 189555 189742 pname = "microformats2-types"; 189556 189743 version = "0.4.1"; 189557 189744 sha256 = "1p2s2g78bnqbcf0www0x11pz5nyxjfac7q7sbd2qfn1v777ylv7b"; 189745 + revision = "1"; 189746 + editedCabalFile = "0z6gx7zv3xc88n1x9z4ihrc8yb8x1j3klyan2xplfq6c6khhqa6f"; 189558 189747 libraryHaskellDepends = [ 189559 189748 aeson base data-default-class pandoc-types setters text time 189560 189749 ]; ··· 191229 191418 }: 191230 191419 mkDerivation { 191231 191420 pname = "mit-3qvpPyAi6mH"; 191232 - version = "10"; 191233 - sha256 = "1kwwklq8bd2ckq2djlw21hiv2sr723s3nh873hs8f7rapjsrnv23"; 191421 + version = "11"; 191422 + sha256 = "0p5v2spwd8rz5h5zclbr7wq5m4qvsihvp91p52d2vd3jdd6xaszx"; 191234 191423 isLibrary = true; 191235 191424 isExecutable = true; 191236 191425 libraryHaskellDepends = [ ··· 192090 192279 192091 192280 "modern-uri" = callPackage 192092 192281 ({ mkDerivation, base, bytestring, containers, contravariant 192093 - , criterion, deepseq, exceptions, hspec, hspec-discover 192282 + , criterion, deepseq, exceptions, hashable, hspec, hspec-discover 192094 192283 , hspec-megaparsec, megaparsec, mtl, profunctors, QuickCheck 192095 192284 , reflection, tagged, template-haskell, text, weigh 192096 192285 }: 192097 192286 mkDerivation { 192098 192287 pname = "modern-uri"; 192099 - version = "0.3.4.4"; 192100 - sha256 = "19fffy7kb7ibajagdryjy872x56045zi6c1div8wvr8aisd55qsz"; 192101 - revision = "2"; 192102 - editedCabalFile = "0izxigj0rvzz25gg3k1y09hcx7rx1xvq6dc5awi4kzdw323nvmv4"; 192288 + version = "0.3.5.0"; 192289 + sha256 = "09pxr1im78fg8024my34qhcj25w3hjq585l3k5qxl81dcypkjhdb"; 192103 192290 libraryHaskellDepends = [ 192104 192291 base bytestring containers contravariant deepseq exceptions 192105 - megaparsec mtl profunctors QuickCheck reflection tagged 192292 + hashable megaparsec mtl profunctors QuickCheck reflection tagged 192106 192293 template-haskell text 192107 192294 ]; 192108 192295 testHaskellDepends = [ ··· 192486 192673 }) {}; 192487 192674 192488 192675 "monad-bayes" = callPackage 192489 - ({ mkDerivation, abstract-par, base, containers, criterion, free 192490 - , hspec, ieee754, log-domain, math-functions, monad-coroutine, mtl 192491 - , mwc-random, optparse-applicative, process, QuickCheck, safe 192492 - , statistics, time, transformers, vector 192676 + ({ mkDerivation, abstract-par, base, brick, containers, criterion 192677 + , foldl, free, histogram-fill, hspec, ieee754, integration, lens 192678 + , linear, log-domain, math-functions, matrix, monad-coroutine 192679 + , monad-extras, mtl, mwc-random, optparse-applicative, pipes 192680 + , pretty-simple, primitive, process, profunctors, QuickCheck 192681 + , random, safe, scientific, statistics, text, time, transformers 192682 + , typed-process, vector, vty 192493 192683 }: 192494 192684 mkDerivation { 192495 192685 pname = "monad-bayes"; 192496 - version = "0.1.1.0"; 192497 - sha256 = "1pmhj377h8jwaxh6pv3s8fq2sm82lrilyxys2m84a2ln6g0aw664"; 192686 + version = "1.0.0"; 192687 + sha256 = "1s5niiss16a5lgw2jhda3c34r1ylcjb5k14bk0n7p7l117xpxsza"; 192498 192688 isLibrary = true; 192499 192689 isExecutable = true; 192500 192690 libraryHaskellDepends = [ 192501 - base containers free ieee754 log-domain math-functions 192502 - monad-coroutine mtl mwc-random safe statistics transformers vector 192691 + base brick containers foldl free histogram-fill ieee754 integration 192692 + lens linear log-domain math-functions matrix monad-coroutine 192693 + monad-extras mtl mwc-random pipes pretty-simple primitive random 192694 + safe scientific statistics text vector vty 192503 192695 ]; 192504 192696 executableHaskellDepends = [ 192505 - base containers log-domain mwc-random optparse-applicative time 192506 - vector 192697 + base containers log-domain math-functions mwc-random 192698 + optparse-applicative pipes pretty-simple random text time vector 192507 192699 ]; 192508 192700 testHaskellDepends = [ 192509 - base hspec ieee754 log-domain math-functions mtl QuickCheck 192510 - transformers vector 192701 + base containers foldl hspec ieee754 lens linear log-domain 192702 + math-functions matrix mtl mwc-random pipes pretty-simple 192703 + profunctors QuickCheck random statistics text transformers vector 192511 192704 ]; 192512 192705 benchmarkHaskellDepends = [ 192513 - abstract-par base containers criterion log-domain mwc-random 192514 - process vector 192706 + abstract-par base containers criterion log-domain mwc-random pipes 192707 + pretty-simple process random text typed-process vector 192515 192708 ]; 192516 192709 description = "A library for probabilistic programming"; 192517 192710 license = lib.licenses.mit; ··· 192962 193155 pname = "monad-logger"; 192963 193156 version = "0.3.37"; 192964 193157 sha256 = "1z275a428zcj73zz0cpfha2adwiwqqqp7klx3kbd3i9rl20xa106"; 192965 - revision = "1"; 192966 - editedCabalFile = "1w6awsn2fw0fca17lv92gcp3sk25yv9gkg68ll39iznkq6xblcdf"; 193158 + revision = "2"; 193159 + editedCabalFile = "1kkw07kk8gv7d9iarradqcqzjpdfh5shjlhfbf2v25mmcpchp6hd"; 192967 193160 libraryHaskellDepends = [ 192968 193161 base bytestring conduit conduit-extra exceptions fast-logger 192969 193162 lifted-base monad-control monad-loops mtl resourcet stm stm-chans ··· 193057 193250 pname = "monad-logger-prefix"; 193058 193251 version = "0.1.12"; 193059 193252 sha256 = "00gsp7mhvqvfbdh75lgr73j5adw3hd4cp969h241gaw892z3qvws"; 193253 + revision = "1"; 193254 + editedCabalFile = "0vrksfi4l7djn8z0kbknidp8g1kcahy938f9dmp27fkydwrjv14i"; 193060 193255 libraryHaskellDepends = [ 193061 193256 base exceptions monad-control monad-logger mtl resourcet text 193062 193257 transformers transformers-base unliftio-core ··· 194214 194409 license = lib.licenses.asl20; 194215 194410 }) {}; 194216 194411 194412 + "mongoDB_2_7_1_2" = callPackage 194413 + ({ mkDerivation, array, base, base16-bytestring, base64-bytestring 194414 + , binary, bson, bytestring, conduit, conduit-extra, containers 194415 + , criterion, cryptohash, data-default-class, dns, fail, hashtables 194416 + , hspec, http-types, lifted-base, monad-control, mtl, network 194417 + , nonce, old-locale, parsec, pureMD5, random, random-shuffle 194418 + , resourcet, stm, tagged, text, time, tls, transformers 194419 + , transformers-base 194420 + }: 194421 + mkDerivation { 194422 + pname = "mongoDB"; 194423 + version = "2.7.1.2"; 194424 + sha256 = "0csjhvsvy534lq7lvqx96dw6ia3737rg7q96174067k7mhkxwf9m"; 194425 + libraryHaskellDepends = [ 194426 + array base base16-bytestring base64-bytestring binary bson 194427 + bytestring conduit conduit-extra containers cryptohash 194428 + data-default-class dns fail hashtables http-types lifted-base 194429 + monad-control mtl network nonce parsec pureMD5 random 194430 + random-shuffle resourcet stm tagged text time tls transformers 194431 + transformers-base 194432 + ]; 194433 + testHaskellDepends = [ base hspec mtl old-locale text time ]; 194434 + benchmarkHaskellDepends = [ 194435 + array base base16-bytestring base64-bytestring binary bson 194436 + bytestring containers criterion cryptohash data-default-class dns 194437 + fail hashtables http-types lifted-base monad-control mtl network 194438 + nonce parsec random random-shuffle stm text tls transformers-base 194439 + ]; 194440 + description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; 194441 + license = lib.licenses.asl20; 194442 + hydraPlatforms = lib.platforms.none; 194443 + }) {}; 194444 + 194217 194445 "mongodb-queue" = callPackage 194218 194446 ({ mkDerivation, base, data-default, hspec, lifted-base 194219 194447 , monad-control, mongoDB, network, text, transformers ··· 194538 194766 }: 194539 194767 mkDerivation { 194540 194768 pname = "monoidal-containers"; 194541 - version = "0.6.2.0"; 194542 - sha256 = "0rnhlm77zrql42z3zsn3ag279q0vrz2idygc0x4p50q3780670p3"; 194543 - revision = "1"; 194544 - editedCabalFile = "07l42gkixdpamqqzdwqfcd62yga5cvhbxz5l0jpgs8kgf6prna4p"; 194545 - libraryHaskellDepends = [ 194546 - aeson base containers deepseq hashable lens newtype semialign these 194547 - unordered-containers witherable 194548 - ]; 194549 - description = "Containers with monoidal accumulation"; 194550 - license = lib.licenses.bsd3; 194551 - }) {}; 194552 - 194553 - "monoidal-containers_0_6_3_0" = callPackage 194554 - ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens 194555 - , newtype, semialign, these, unordered-containers, witherable 194556 - }: 194557 - mkDerivation { 194558 - pname = "monoidal-containers"; 194559 194769 version = "0.6.3.0"; 194560 194770 sha256 = "0m41z50r3jvr8vvfry99kamb2h3knm0g7bqfwspchmhwsgqqczh4"; 194561 194771 libraryHaskellDepends = [ ··· 194564 194774 ]; 194565 194775 description = "Containers with monoidal accumulation"; 194566 194776 license = lib.licenses.bsd3; 194567 - hydraPlatforms = lib.platforms.none; 194568 194777 }) {}; 194569 194778 194570 194779 "monoidal-functors" = callPackage ··· 194669 194878 pname = "monomer"; 194670 194879 version = "1.5.0.0"; 194671 194880 sha256 = "0asp7j9xmysspyv2l8fcr36flcayqyhp41139kzg00b7jglpbpyg"; 194881 + revision = "1"; 194882 + editedCabalFile = "1ig93calrshb8q4jp8iw0y2yqkxmd5n7xg1nabc9bp0ypacba13m"; 194672 194883 isLibrary = true; 194673 194884 isExecutable = true; 194674 194885 libraryHaskellDepends = [ ··· 194695 194906 license = lib.licenses.bsd3; 194696 194907 hydraPlatforms = lib.platforms.none; 194697 194908 }) {inherit (pkgs) glew;}; 194909 + 194910 + "monomer-hagrid" = callPackage 194911 + ({ mkDerivation, base, bytestring, containers, data-default 194912 + , data-default-class, hspec, hspec-discover, ilist, lens, monomer 194913 + , mtl, stm, text, time 194914 + }: 194915 + mkDerivation { 194916 + pname = "monomer-hagrid"; 194917 + version = "0.1.0.0"; 194918 + sha256 = "0mr4fnzlrci1qnyl7rdiklzz3l5sqzgax5lqx66n209221a7pnki"; 194919 + isLibrary = true; 194920 + isExecutable = true; 194921 + libraryHaskellDepends = [ 194922 + base containers data-default-class ilist lens monomer text 194923 + ]; 194924 + executableHaskellDepends = [ 194925 + base containers data-default-class ilist lens monomer text time 194926 + ]; 194927 + testHaskellDepends = [ 194928 + base bytestring containers data-default data-default-class hspec 194929 + ilist lens monomer mtl stm text 194930 + ]; 194931 + testToolDepends = [ hspec-discover ]; 194932 + description = "A datagrid widget for the Monomer library"; 194933 + license = lib.licenses.mit; 194934 + hydraPlatforms = lib.platforms.none; 194935 + mainProgram = "examples"; 194936 + broken = true; 194937 + }) {}; 194698 194938 194699 194939 "monomorphic" = callPackage 194700 194940 ({ mkDerivation, base }: ··· 195189 195429 }) {}; 195190 195430 195191 195431 "morpheus-graphql" = callPackage 195192 - ({ mkDerivation, aeson, base, bytestring, containers, file-embed 195432 + ({ mkDerivation, aeson, base, bytestring, containers 195193 195433 , morpheus-graphql-app, morpheus-graphql-code-gen 195194 - , morpheus-graphql-core, morpheus-graphql-subscriptions 195195 - , morpheus-graphql-tests, mtl, relude, tasty, tasty-hunit 195196 - , template-haskell, text, transformers, unordered-containers 195197 - , vector 195434 + , morpheus-graphql-core, morpheus-graphql-server 195435 + , morpheus-graphql-subscriptions, morpheus-graphql-tests, mtl 195436 + , relude, tasty, tasty-hunit, template-haskell, text, transformers 195437 + , unordered-containers, vector 195198 195438 }: 195199 195439 mkDerivation { 195200 195440 pname = "morpheus-graphql"; 195201 - version = "0.21.0"; 195202 - sha256 = "1xvhrgjdfxqn8ck75b3hpgj12i4y94fkcp0gr7bvyh3cbhrbycnk"; 195441 + version = "0.24.3"; 195442 + sha256 = "0z1kxwkflwzn6xqv8a046biv16a4fq8sxma7n4hbby7zqmzbwpj5"; 195203 195443 enableSeparateDataOutput = true; 195204 195444 libraryHaskellDepends = [ 195205 195445 aeson base bytestring containers morpheus-graphql-app 195206 - morpheus-graphql-code-gen morpheus-graphql-core mtl relude 195207 - template-haskell text transformers unordered-containers vector 195446 + morpheus-graphql-code-gen morpheus-graphql-core 195447 + morpheus-graphql-server mtl relude template-haskell text 195448 + transformers unordered-containers vector 195208 195449 ]; 195209 195450 testHaskellDepends = [ 195210 - aeson base bytestring containers file-embed morpheus-graphql-app 195451 + aeson base bytestring containers morpheus-graphql-app 195211 195452 morpheus-graphql-code-gen morpheus-graphql-core 195212 - morpheus-graphql-subscriptions morpheus-graphql-tests mtl relude 195213 - tasty tasty-hunit template-haskell text transformers 195214 - unordered-containers vector 195453 + morpheus-graphql-server morpheus-graphql-subscriptions 195454 + morpheus-graphql-tests mtl relude tasty tasty-hunit 195455 + template-haskell text transformers unordered-containers vector 195215 195456 ]; 195216 195457 description = "Morpheus GraphQL"; 195217 195458 license = lib.licenses.mit; ··· 195227 195468 }: 195228 195469 mkDerivation { 195229 195470 pname = "morpheus-graphql-app"; 195230 - version = "0.21.0"; 195231 - sha256 = "041a6rdbvs9g5ia384qgyppdkyq71xrlcqwz8szyyw2ra97sy0pg"; 195471 + version = "0.24.3"; 195472 + sha256 = "1hm4v3x6p718zjgk4svfslvqm6nca5kg30rhh2ax63gkfvp1i2xr"; 195232 195473 enableSeparateDataOutput = true; 195233 195474 libraryHaskellDepends = [ 195234 195475 aeson base bytestring containers hashable megaparsec ··· 195270 195511 195271 195512 "morpheus-graphql-client" = callPackage 195272 195513 ({ mkDerivation, aeson, base, bytestring, containers, directory 195273 - , file-embed, modern-uri, morpheus-graphql-code-gen 195514 + , file-embed, modern-uri, morpheus-graphql-code-gen-utils 195274 195515 , morpheus-graphql-core, morpheus-graphql-subscriptions, mtl 195275 - , relude, req, tasty, tasty-hunit, template-haskell, text 195276 - , transformers, unliftio-core, unordered-containers, websockets 195277 - , wuss 195516 + , prettyprinter, relude, req, tasty, tasty-hunit, template-haskell 195517 + , text, transformers, unliftio-core, unordered-containers 195518 + , websockets, wuss 195278 195519 }: 195279 195520 mkDerivation { 195280 195521 pname = "morpheus-graphql-client"; 195281 - version = "0.21.0"; 195282 - sha256 = "1mn520aj62i9spby3ik0ynmjbj6baw6hmc3lcv4zp2v1ywypycci"; 195522 + version = "0.24.3"; 195523 + sha256 = "1xfwah79w0akg0fhz7xkhwmik5bfz4c9kwbscxf08w99669k1lwd"; 195283 195524 enableSeparateDataOutput = true; 195284 195525 libraryHaskellDepends = [ 195285 195526 aeson base bytestring containers file-embed modern-uri 195286 - morpheus-graphql-code-gen morpheus-graphql-core 195287 - morpheus-graphql-subscriptions mtl relude req template-haskell text 195288 - transformers unliftio-core unordered-containers websockets wuss 195527 + morpheus-graphql-code-gen-utils morpheus-graphql-core 195528 + morpheus-graphql-subscriptions mtl prettyprinter relude req 195529 + template-haskell text transformers unliftio-core 195530 + unordered-containers websockets wuss 195289 195531 ]; 195290 195532 testHaskellDepends = [ 195291 195533 aeson base bytestring containers directory file-embed modern-uri 195292 - morpheus-graphql-code-gen morpheus-graphql-core 195293 - morpheus-graphql-subscriptions mtl relude req tasty tasty-hunit 195294 - template-haskell text transformers unliftio-core 195534 + morpheus-graphql-code-gen-utils morpheus-graphql-core 195535 + morpheus-graphql-subscriptions mtl prettyprinter relude req tasty 195536 + tasty-hunit template-haskell text transformers unliftio-core 195295 195537 unordered-containers websockets wuss 195296 195538 ]; 195297 195539 description = "Morpheus GraphQL Client"; ··· 195300 195542 }) {}; 195301 195543 195302 195544 "morpheus-graphql-code-gen" = callPackage 195303 - ({ mkDerivation, base, bytestring, containers, filepath 195304 - , morpheus-graphql-core, optparse-applicative, prettyprinter 195305 - , relude, template-haskell, text, unordered-containers 195545 + ({ mkDerivation, base, bytestring, containers, file-embed, filepath 195546 + , Glob, morpheus-graphql-client, morpheus-graphql-code-gen-utils 195547 + , morpheus-graphql-core, morpheus-graphql-server 195548 + , optparse-applicative, prettyprinter, relude, template-haskell 195549 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 195306 195550 }: 195307 195551 mkDerivation { 195308 195552 pname = "morpheus-graphql-code-gen"; 195309 - version = "0.21.0"; 195310 - sha256 = "17z3zyk47pfs94i9lxjylxmx5c2m38nkhs4g3pf9qn129czjb48y"; 195553 + version = "0.24.3"; 195554 + sha256 = "040grsj1q9b2jy5y7pxy2islfaa6jd0winkg2dvzg1dwwh74rayc"; 195311 195555 isLibrary = true; 195312 195556 isExecutable = true; 195313 195557 libraryHaskellDepends = [ 195314 - base bytestring containers morpheus-graphql-core prettyprinter 195315 - relude template-haskell text unordered-containers 195558 + base bytestring containers file-embed 195559 + morpheus-graphql-code-gen-utils morpheus-graphql-core 195560 + morpheus-graphql-server prettyprinter relude template-haskell text 195561 + unordered-containers 195316 195562 ]; 195317 195563 executableHaskellDepends = [ 195318 - base bytestring containers filepath morpheus-graphql-core 195319 - optparse-applicative prettyprinter relude template-haskell text 195320 - unordered-containers 195564 + base bytestring containers file-embed filepath Glob 195565 + morpheus-graphql-client morpheus-graphql-code-gen-utils 195566 + morpheus-graphql-core morpheus-graphql-server optparse-applicative 195567 + prettyprinter relude template-haskell text unordered-containers 195568 + yaml 195321 195569 ]; 195322 195570 description = "Morpheus GraphQL CLI"; 195323 195571 license = lib.licenses.bsd3; ··· 195325 195573 mainProgram = "morpheus"; 195326 195574 }) {}; 195327 195575 195576 + "morpheus-graphql-code-gen-utils" = callPackage 195577 + ({ mkDerivation, base, bytestring, containers 195578 + , morpheus-graphql-core, prettyprinter, relude, template-haskell 195579 + , text, unordered-containers 195580 + }: 195581 + mkDerivation { 195582 + pname = "morpheus-graphql-code-gen-utils"; 195583 + version = "0.24.3"; 195584 + sha256 = "1ss36qkf47zgwwivi70bjq5l5mkqin5181yc7dxg865sgdm9jc5z"; 195585 + libraryHaskellDepends = [ 195586 + base bytestring containers morpheus-graphql-core prettyprinter 195587 + relude template-haskell text unordered-containers 195588 + ]; 195589 + description = "Morpheus GraphQL CLI"; 195590 + license = lib.licenses.bsd3; 195591 + hydraPlatforms = lib.platforms.none; 195592 + }) {}; 195593 + 195328 195594 "morpheus-graphql-core" = callPackage 195329 195595 ({ mkDerivation, aeson, base, bytestring, containers, directory 195330 195596 , hashable, megaparsec, morpheus-graphql-tests, mtl, relude ··· 195333 195599 }: 195334 195600 mkDerivation { 195335 195601 pname = "morpheus-graphql-core"; 195336 - version = "0.21.0"; 195337 - sha256 = "1p5cirgqiv73ka0k4rb7dwky57dwj7nr0vpr6frfgvjsnmpbqq0s"; 195602 + version = "0.24.3"; 195603 + sha256 = "0nh7nvdgqj95g1fafisjg9dxfk2hd9x0mb7da6lwcrsyb005iald"; 195338 195604 enableSeparateDataOutput = true; 195339 195605 libraryHaskellDepends = [ 195340 195606 aeson base bytestring containers hashable megaparsec mtl relude ··· 195353 195619 broken = true; 195354 195620 }) {}; 195355 195621 195622 + "morpheus-graphql-server" = callPackage 195623 + ({ mkDerivation, aeson, base, bytestring, containers, file-embed 195624 + , morpheus-graphql-app, morpheus-graphql-core 195625 + , morpheus-graphql-subscriptions, morpheus-graphql-tests, mtl 195626 + , relude, tasty, tasty-hunit, template-haskell, text, transformers 195627 + , unordered-containers, vector 195628 + }: 195629 + mkDerivation { 195630 + pname = "morpheus-graphql-server"; 195631 + version = "0.24.3"; 195632 + sha256 = "1xiy43pxmgh5kh2c1vk6g7ay0kinh7rx5xb1lrjw5wkl9sw2l7dg"; 195633 + enableSeparateDataOutput = true; 195634 + libraryHaskellDepends = [ 195635 + aeson base bytestring containers morpheus-graphql-app 195636 + morpheus-graphql-core mtl relude template-haskell text transformers 195637 + unordered-containers vector 195638 + ]; 195639 + testHaskellDepends = [ 195640 + aeson base bytestring containers file-embed morpheus-graphql-app 195641 + morpheus-graphql-core morpheus-graphql-subscriptions 195642 + morpheus-graphql-tests mtl relude tasty tasty-hunit 195643 + template-haskell text transformers unordered-containers vector 195644 + ]; 195645 + description = "Morpheus GraphQL"; 195646 + license = lib.licenses.mit; 195647 + hydraPlatforms = lib.platforms.none; 195648 + }) {}; 195649 + 195356 195650 "morpheus-graphql-subscriptions" = callPackage 195357 - ({ mkDerivation, aeson, base, bytestring, directory 195358 - , morpheus-graphql-app, morpheus-graphql-core, mtl, relude, tasty 195359 - , tasty-hunit, text, transformers, unliftio-core 195360 - , unordered-containers, uuid, websockets 195651 + ({ mkDerivation, aeson, base, bytestring, morpheus-graphql-app 195652 + , morpheus-graphql-core, mtl, relude, text, transformers 195653 + , unliftio-core, unordered-containers, uuid, websockets 195361 195654 }: 195362 195655 mkDerivation { 195363 195656 pname = "morpheus-graphql-subscriptions"; 195364 - version = "0.21.0"; 195365 - sha256 = "0qf1jw8lgjph0is7irbj07f4dina9aqznzr18wp9gwywxn0mzvgi"; 195657 + version = "0.24.3"; 195658 + sha256 = "1cky0br7nkpnjgk0j0qxfz4gd7z14badhpll51yakysxz8y5clsf"; 195366 195659 libraryHaskellDepends = [ 195367 195660 aeson base bytestring morpheus-graphql-app morpheus-graphql-core 195368 195661 mtl relude text transformers unliftio-core unordered-containers 195369 195662 uuid websockets 195370 - ]; 195371 - testHaskellDepends = [ 195372 - aeson base bytestring directory morpheus-graphql-app 195373 - morpheus-graphql-core mtl relude tasty tasty-hunit text 195374 - transformers unliftio-core unordered-containers uuid websockets 195375 195663 ]; 195376 195664 description = "Morpheus GraphQL Subscriptions"; 195377 195665 license = lib.licenses.mit; ··· 195394 195682 license = lib.licenses.mit; 195395 195683 }) {}; 195396 195684 195397 - "morpheus-graphql-tests_0_21_0" = callPackage 195685 + "morpheus-graphql-tests_0_24_3" = callPackage 195398 195686 ({ mkDerivation, aeson, base, bytestring, directory, relude, tasty 195399 195687 , tasty-hunit, text, unordered-containers 195400 195688 }: 195401 195689 mkDerivation { 195402 195690 pname = "morpheus-graphql-tests"; 195403 - version = "0.21.0"; 195404 - sha256 = "13xf8q7p32c549bih2133lcsikspnv4ay6c7bcm433dwvxf13rcm"; 195691 + version = "0.24.3"; 195692 + sha256 = "0kgzwjg0jr44rfa2pz9k80pvj22spj2qmp6l31fyy54bi89z98vh"; 195405 195693 libraryHaskellDepends = [ 195406 195694 aeson base bytestring directory relude tasty tasty-hunit text 195407 195695 unordered-containers ··· 199257 199545 }: 199258 199546 mkDerivation { 199259 199547 pname = "mywork"; 199260 - version = "1.0.0.0"; 199261 - sha256 = "0xmisv0680g7840a1hwiw9fw5fzkqss6qxaw4wck6qix98aaqm0a"; 199262 - isLibrary = false; 199548 + version = "1.0.1.0"; 199549 + sha256 = "0mcgc2f8d3v29l940n5pmw2l4na7nz9098w6krc37yl8rddgfjn6"; 199550 + isLibrary = true; 199263 199551 isExecutable = true; 199264 - executableHaskellDepends = [ 199552 + libraryHaskellDepends = [ 199265 199553 aeson base brick brick-panes bytestring containers ini lens mtl 199266 199554 path path-io template-haskell text text-zipper time 199267 199555 unordered-containers vector vty 199268 199556 ]; 199557 + executableHaskellDepends = [ 199558 + base brick brick-panes lens mtl text vty 199559 + ]; 199269 199560 description = "Tool to keep track of what you have been working on and where"; 199270 199561 license = lib.licenses.isc; 199271 199562 hydraPlatforms = lib.platforms.none; ··· 202449 202740 }: 202450 202741 mkDerivation { 202451 202742 pname = "network-transport-tcp"; 202452 - version = "0.8.0"; 202453 - sha256 = "09zjk3ydnm7v8ryjy60p0jnd18sgf3z2yklyxp6ga5llnyzsv53a"; 202743 + version = "0.8.1"; 202744 + sha256 = "1ia7985pngbmg6cvgw9xkqdyrgbsg98hzzcjzg5ksfsh6jddrvgx"; 202454 202745 libraryHaskellDepends = [ 202455 202746 async base bytestring containers data-accessor network 202456 202747 network-transport uuid ··· 202468 202759 }: 202469 202760 mkDerivation { 202470 202761 pname = "network-transport-tests"; 202471 - version = "0.3.0"; 202472 - sha256 = "1552mgccfyyvvnplhflkfxgg3246jgx9iiv71a0gwblllbsh5y8p"; 202473 - revision = "1"; 202474 - editedCabalFile = "0kk8kib742s3iiah6d9g94ma776m4nyh14syvibsssfj1immf3jd"; 202762 + version = "0.3.1"; 202763 + sha256 = "0md91zi8g4vfbj53w1ghbgw50mlgvpnd1pya9y98i8ab8flhk923"; 202475 202764 libraryHaskellDepends = [ 202476 202765 ansi-terminal base bytestring containers mtl network-transport 202477 202766 random ··· 203229 203518 }: 203230 203519 mkDerivation { 203231 203520 pname = "ngx-export-log"; 203232 - version = "1.5"; 203233 - sha256 = "0jixskgyv4f31qhxqlhdbg93ib7lj9vwgrbqh4ha1z74gsyx4axv"; 203521 + version = "1.5.1"; 203522 + sha256 = "03wr3v7x26c0cm01rclc5fkj2a66pamcjikx8wgariljdzfzr7qs"; 203234 203523 libraryHaskellDepends = [ 203235 203524 base bytestring ngx-export ngx-export-tools template-haskell 203236 203525 ]; ··· 203829 204118 }: 203830 204119 mkDerivation { 203831 204120 pname = "nix-tree"; 203832 - version = "0.2.0"; 203833 - sha256 = "1m8ahqdm9ivgc1l1mk3s9q8gviklpq6kckn7jhdzx2mbzx7gf2vj"; 204121 + version = "0.2.1"; 204122 + sha256 = "1ca4a6mmbb8kvja3ipiifj7kfxayq9ik3ip10m6nkf99a56060jw"; 203834 204123 isLibrary = false; 203835 204124 isExecutable = true; 203836 204125 executableHaskellDepends = [ ··· 204622 204911 pname = "nonempty-vector"; 204623 204912 version = "0.2.1.0"; 204624 204913 sha256 = "0w6fn8dinf8lcbhr5797i5kyixpasylpwn97ljmkjc6n3ad1b21y"; 204914 + revision = "1"; 204915 + editedCabalFile = "18w57f8sdix71a27gwbifw7hmg34lms22c99gp7i7j7g154f3cn3"; 204625 204916 setupHaskellDepends = [ base Cabal cabal-doctest ]; 204626 204917 libraryHaskellDepends = [ base deepseq primitive vector ]; 204627 204918 testHaskellDepends = [ base doctest ]; ··· 206492 206783 pname = "o-clock"; 206493 206784 version = "1.3.0"; 206494 206785 sha256 = "1swayrdhz10b67m6ipa75qz9ycz6r7xbk9fdq3ajlhp9bry31l7i"; 206786 + revision = "1"; 206787 + editedCabalFile = "1fis58d0r7yvznmgijc2878gjv0261apb748d5pcphmgk9i5kzf3"; 206495 206788 isLibrary = true; 206496 206789 isExecutable = true; 206497 206790 libraryHaskellDepends = [ base ]; ··· 207432 207725 }: 207433 207726 mkDerivation { 207434 207727 pname = "om-fork"; 207435 - version = "0.7.1.6"; 207436 - sha256 = "0lj26k234vqn9q536v0lbgzrdag83yjdczjp48v9jhwjj02y8m24"; 207728 + version = "0.7.1.7"; 207729 + sha256 = "1fpgyh44had11yxarhdavscf12693kgal0js9j3mdj8115dv53nz"; 207437 207730 libraryHaskellDepends = [ 207438 207731 aeson base exceptions ki monad-logger om-show text unliftio 207439 207732 ]; ··· 207442 207735 ]; 207443 207736 description = "Concurrency utilities"; 207444 207737 license = lib.licenses.mit; 207738 + hydraPlatforms = lib.platforms.none; 207739 + broken = true; 207445 207740 }) {}; 207446 207741 207447 207742 "om-http" = callPackage ··· 208439 208734 pname = "openapi3"; 208440 208735 version = "3.2.2"; 208441 208736 sha256 = "0d31ilv2ivwswzbpfibqwnld8697vk63wyr6yl80brjx60g4jp9j"; 208442 - revision = "1"; 208443 - editedCabalFile = "01cqwjmv4y4d4d3v7rn2jm7l0vmqha2xfph9c6jq2ia0xl90z7a1"; 208737 + revision = "2"; 208738 + editedCabalFile = "1yc3wlc8j84glav3hzx1l4yq33k05bll252a8yl6ld275jjswn8p"; 208444 208739 isLibrary = true; 208445 208740 isExecutable = true; 208446 208741 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 211384 211679 }: 211385 211680 mkDerivation { 211386 211681 pname = "package-version"; 211387 - version = "0.2"; 211388 - sha256 = "0381k1s0gc5wqxx21fg3nk7cgg821qlszdnwp1gl9jrykbfqak44"; 211682 + version = "0.3"; 211683 + sha256 = "01d0345qs5c02gmh3ccsl0xbmiqwcbdpzlqgx2pwj6iv9vvjrf5l"; 211389 211684 libraryHaskellDepends = [ 211390 211685 base bytestring deepseq prettyprinter safe-exceptions 211391 211686 template-haskell text ··· 211660 211955 }: 211661 211956 mkDerivation { 211662 211957 pname = "pact-time"; 211663 - version = "0.2.0.0"; 211664 - sha256 = "04d8hd4hnbsjvzjjvnyabc68srhyp8k9459pp0y1sdc7z6c0qq1m"; 211958 + version = "0.2.0.1"; 211959 + sha256 = "1k55bwf7crkr16szyjyzwc5f4h2r0x3yxaajvvffnqkbjpq3zwy0"; 211665 211960 libraryHaskellDepends = [ 211666 211961 aeson attoparsec base bytestring cereal clock Decimal deepseq 211667 211962 microlens mtl text vector vector-space ··· 213070 213365 license = lib.licenses.bsd3; 213071 213366 }) {}; 213072 213367 213368 + "pantry_0_7_0" = callPackage 213369 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 213370 + , casa-client, casa-types, conduit, conduit-extra, containers 213371 + , cryptonite, cryptonite-conduit, digest, exceptions, filelock 213372 + , generic-deriving, hackage-security, hedgehog, hpack, hspec 213373 + , http-client, http-client-tls, http-conduit, http-download 213374 + , http-types, memory, mtl, network-uri, path, path-io, persistent 213375 + , persistent-sqlite, persistent-template, primitive, QuickCheck 213376 + , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint 213377 + , tar-conduit, text, text-metrics, time, transformers, unix-compat 213378 + , unliftio, unordered-containers, vector, yaml, zip-archive 213379 + }: 213380 + mkDerivation { 213381 + pname = "pantry"; 213382 + version = "0.7.0"; 213383 + sha256 = "19jb1gmpypdv4mdn3gp6fwgwhrynx5w7dy666yr4k23zdbkcrz1v"; 213384 + libraryHaskellDepends = [ 213385 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 213386 + conduit conduit-extra containers cryptonite cryptonite-conduit 213387 + digest filelock generic-deriving hackage-security hpack http-client 213388 + http-client-tls http-conduit http-download http-types memory mtl 213389 + network-uri path path-io persistent persistent-sqlite 213390 + persistent-template primitive resourcet rio rio-orphans 213391 + rio-prettyprint tar-conduit text text-metrics time transformers 213392 + unix-compat unliftio unordered-containers vector yaml zip-archive 213393 + ]; 213394 + testHaskellDepends = [ 213395 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 213396 + conduit conduit-extra containers cryptonite cryptonite-conduit 213397 + digest exceptions filelock generic-deriving hackage-security 213398 + hedgehog hpack hspec http-client http-client-tls http-conduit 213399 + http-download http-types memory mtl network-uri path path-io 213400 + persistent persistent-sqlite persistent-template primitive 213401 + QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint 213402 + tar-conduit text text-metrics time transformers unix-compat 213403 + unliftio unordered-containers vector yaml zip-archive 213404 + ]; 213405 + description = "Content addressable Haskell package management"; 213406 + license = lib.licenses.bsd3; 213407 + hydraPlatforms = lib.platforms.none; 213408 + }) {}; 213409 + 213073 213410 "pantry-tmp" = callPackage 213074 213411 ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans 213075 213412 , base64-bytestring, bytestring, Cabal, conduit, conduit-extra ··· 214931 215268 }: 214932 215269 mkDerivation { 214933 215270 pname = "password"; 214934 - version = "3.0.1.0"; 214935 - sha256 = "1kdc1lwya9sq3vb5wvvs2bz0z38mqn9cpim4f6awym99c57g01rk"; 214936 - revision = "3"; 214937 - editedCabalFile = "151z62mwqzblddcwj83dhwz2qfj53g0nl6sbdcsf489xbb9z3vk9"; 214938 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 214939 - libraryHaskellDepends = [ 214940 - base base64 bytestring cryptonite memory password-types 214941 - template-haskell text 214942 - ]; 214943 - testHaskellDepends = [ 214944 - base base-compat bytestring cryptonite doctest memory 214945 - password-types QuickCheck quickcheck-instances scrypt tasty 214946 - tasty-hunit tasty-quickcheck template-haskell text 214947 - ]; 214948 - description = "Hashing and checking of passwords"; 214949 - license = lib.licenses.bsd3; 214950 - platforms = lib.platforms.x86; 214951 - maintainers = [ lib.maintainers.cdepillabout ]; 214952 - }) {}; 214953 - 214954 - "password_3_0_2_0" = callPackage 214955 - ({ mkDerivation, base, base-compat, base64, bytestring, Cabal 214956 - , cabal-doctest, cryptonite, doctest, memory, password-types 214957 - , QuickCheck, quickcheck-instances, scrypt, tasty, tasty-hunit 214958 - , tasty-quickcheck, template-haskell, text 214959 - }: 214960 - mkDerivation { 214961 - pname = "password"; 214962 215271 version = "3.0.2.0"; 214963 215272 sha256 = "092cryk5xsmq86l9i7yyjxrq83mi9q61grwdkw2n8c1dxijbdi8l"; 214964 215273 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 214974 215283 description = "Hashing and checking of passwords"; 214975 215284 license = lib.licenses.bsd3; 214976 215285 platforms = lib.platforms.x86; 214977 - hydraPlatforms = lib.platforms.none; 214978 215286 maintainers = [ lib.maintainers.cdepillabout ]; 214979 215287 }) {}; 214980 215288 ··· 215122 215430 }: 215123 215431 mkDerivation { 215124 215432 pname = "patat"; 215125 - version = "0.8.7.0"; 215126 - sha256 = "05bg36lbhqlh80w952hrpy88n99qddv86hiqqbc6p3bc89rlzg1w"; 215433 + version = "0.8.8.0"; 215434 + sha256 = "13y2cj01yl1pq9gdbzjq1mc4qp8ljnmf3hdb13sc5058y0054zy1"; 215127 215435 isLibrary = true; 215128 215436 isExecutable = true; 215129 215437 libraryHaskellDepends = [ ··· 215999 216307 }: 216000 216308 mkDerivation { 216001 216309 pname = "pcre-heavy"; 216002 - version = "1.0.0.2"; 216003 - sha256 = "1lfbjgvl55jh226n307c2w8mrb3l1myzbkjh4j0jfcb8nybzcp4a"; 216310 + version = "1.0.0.3"; 216311 + sha256 = "03wqr7q242j23g910l0qgagqyy8fi3b5gv7xsaym7m41zki1bw9y"; 216004 216312 revision = "1"; 216005 - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; 216313 + editedCabalFile = "0wa517agsib2q658bfsb9fdm12yz3pqzj204v9jf9rz4fm4y8q81"; 216006 216314 libraryHaskellDepends = [ 216007 216315 base base-compat bytestring pcre-light semigroups 216008 216316 string-conversions template-haskell ··· 217461 217769 pname = "persistent"; 217462 217770 version = "2.14.3.0"; 217463 217771 sha256 = "06cs30886s0y50kw4p2x8jw1k173il4mfqdfbkkdnd6kc97j920j"; 217772 + revision = "1"; 217773 + editedCabalFile = "1qbi74kmjk07wgib2y6pscjbr8mazlj490928h5bvahw10jx3611"; 217464 217774 libraryHaskellDepends = [ 217465 217775 aeson attoparsec base base64-bytestring blaze-html bytestring 217466 217776 conduit containers fast-logger http-api-data lift-type monad-logger ··· 217732 218042 pname = "persistent-mongoDB"; 217733 218043 version = "2.13.0.1"; 217734 218044 sha256 = "1ck74kpzkz623c43qb8r1cjq8chi2p721vx95zrpciz8jm496235"; 218045 + revision = "1"; 218046 + editedCabalFile = "1h007vh9cx0y963xacxhf3rn2wjnc22ygil9c0z13mljmqssf5h6"; 217735 218047 libraryHaskellDepends = [ 217736 218048 aeson base bson bytestring cereal conduit http-api-data mongoDB 217737 218049 network path-pieces persistent resource-pool resourcet text time ··· 217978 218290 license = lib.licenses.mit; 217979 218291 }) {}; 217980 218292 217981 - "persistent-qq_2_12_0_3" = callPackage 218293 + "persistent-qq_2_12_0_5" = callPackage 217982 218294 ({ mkDerivation, aeson, base, bytestring, fast-logger 217983 218295 , haskell-src-meta, hspec, HUnit, monad-logger, mtl, persistent 217984 218296 , persistent-sqlite, resourcet, template-haskell, text, unliftio 217985 218297 }: 217986 218298 mkDerivation { 217987 218299 pname = "persistent-qq"; 217988 - version = "2.12.0.3"; 217989 - sha256 = "0iv9x73g846grhb4vdh1xhpbwmk6hg5jh1xl2i7yh986pnqbl23g"; 218300 + version = "2.12.0.5"; 218301 + sha256 = "1mkgrczllayf8mq773rqp11d677fqjxcblmb3l97m0k1qyvpjq1h"; 217990 218302 libraryHaskellDepends = [ 217991 218303 base haskell-src-meta mtl persistent template-haskell text 217992 218304 ]; ··· 220042 220354 }: 220043 220355 mkDerivation { 220044 220356 pname = "pinch"; 220045 - version = "0.4.1.2"; 220046 - sha256 = "0khgx08mpj16lzqkk3xmxf5a6a68fc6x1vfg1r0lgj5lx2dgl89j"; 220047 - revision = "1"; 220048 - editedCabalFile = "1hpcwjgp12kp5hny74xjhrj7dj89pa4gin84b24arqlvmz5w9anq"; 220357 + version = "0.4.2.0"; 220358 + sha256 = "107zxrmhf8bdvjk5yy438xxg7015k1b0zvpkfvh7dif7l3j9c4cm"; 220049 220359 libraryHaskellDepends = [ 220050 220360 array base bytestring cereal containers deepseq ghc-prim hashable 220051 220361 network semigroups text unordered-containers vector ··· 220313 220623 pname = "pipes"; 220314 220624 version = "4.3.16"; 220315 220625 sha256 = "163lx5sf68zx5kik5h1fjsyckwr9shdsn5k2dsjq3mhg077nxqgl"; 220316 - revision = "5"; 220317 - editedCabalFile = "1wjpz0anr4cpf8x5ffw2cpzcz9y4qvxa1qacdc576hyawkshfbj6"; 220626 + revision = "6"; 220627 + editedCabalFile = "16s8a1ijakhsk73ny2vrw6a8r2dszgncd0wk735ii6csg3l2c9pm"; 220318 220628 libraryHaskellDepends = [ 220319 220629 base exceptions mmorph mtl transformers void 220320 220630 ]; ··· 220872 221182 pname = "pipes-group"; 220873 221183 version = "1.0.12"; 220874 221184 sha256 = "1issfj3syi6lfbcdn3bhlbnlh86s92ldsb04c4ac69xipsgyhwqk"; 220875 - revision = "6"; 220876 - editedCabalFile = "19yzgmwv8vnx2jqsybs5h2cwfxnfc6xi2wzl96hi4jbf3cnkayyj"; 221185 + revision = "7"; 221186 + editedCabalFile = "0g6xrp4xi4gzar5l4jhpfi617zvy1hv0i9rg7gg23fcqfyc1kh22"; 220877 221187 libraryHaskellDepends = [ 220878 221188 base free pipes pipes-parse transformers 220879 221189 ]; ··· 221770 222080 mainProgram = "pkgtreediff"; 221771 222081 }) {}; 221772 222082 222083 + "pkgtreediff_0_6_0" = callPackage 222084 + ({ mkDerivation, async, base, bytestring, directory, extra 222085 + , filepath, Glob, http-client, http-client-tls, http-directory 222086 + , http-types, koji, rpm-nvr, simple-cmd, simple-cmd-args, text 222087 + }: 222088 + mkDerivation { 222089 + pname = "pkgtreediff"; 222090 + version = "0.6.0"; 222091 + sha256 = "1n7dvv0c2hx90hv7fm1crhl8wn3krryv602msa7klzdl9syd9s1f"; 222092 + isLibrary = true; 222093 + isExecutable = true; 222094 + libraryHaskellDepends = [ base rpm-nvr ]; 222095 + executableHaskellDepends = [ 222096 + async base bytestring directory extra filepath Glob http-client 222097 + http-client-tls http-directory http-types koji rpm-nvr simple-cmd 222098 + simple-cmd-args text 222099 + ]; 222100 + testHaskellDepends = [ base simple-cmd ]; 222101 + description = "RPM package tree diff tool"; 222102 + license = lib.licenses.gpl3Only; 222103 + hydraPlatforms = lib.platforms.none; 222104 + mainProgram = "pkgtreediff"; 222105 + }) {}; 222106 + 221773 222107 "pktree" = callPackage 221774 222108 ({ mkDerivation, base, containers }: 221775 222109 mkDerivation { ··· 223508 223842 }: 223509 223843 mkDerivation { 223510 223844 pname = "polysemy-conc"; 223511 - version = "0.9.0.0"; 223512 - sha256 = "0nmnc3h4np742yf0c196q3d0bfdvm9k3dp0482712ka1zjk8ck1k"; 223845 + version = "0.10.0.0"; 223846 + sha256 = "17683p4j54kapg279cbdxl7j0gyrshcsxcs0xngyaplgajwq6pnk"; 223513 223847 libraryHaskellDepends = [ 223514 223848 async base containers incipit-core polysemy polysemy-resume 223515 223849 polysemy-time stm stm-chans torsor unagi-chan unix ··· 223571 223905 "polysemy-http" = callPackage 223572 223906 ({ mkDerivation, aeson, base, case-insensitive, exon, hedgehog 223573 223907 , http-client, http-client-tls, http-types, network, polysemy 223574 - , polysemy-plugin, polysemy-time, prelate, servant, servant-client 223575 - , servant-server, tasty, tasty-hedgehog, time, warp 223908 + , polysemy-plugin, prelate, servant-client, servant-server, tasty 223909 + , tasty-hedgehog, time, warp 223576 223910 }: 223577 223911 mkDerivation { 223578 223912 pname = "polysemy-http"; 223579 - version = "0.8.0.0"; 223580 - sha256 = "1ccd45ln80b0pbdpk2wmky3hlz89f8jjlrfbnxd4ycf2crap8wzl"; 223913 + version = "0.9.0.0"; 223914 + sha256 = "13d5ydyaq6jjinq8h8slxj0iw6bfpg7cdv0lj0kl8kpvikr6livg"; 223581 223915 libraryHaskellDepends = [ 223582 223916 aeson base case-insensitive exon http-client http-client-tls 223583 223917 http-types polysemy polysemy-plugin prelate time 223584 223918 ]; 223585 223919 testHaskellDepends = [ 223586 223920 aeson base exon hedgehog http-client network polysemy 223587 - polysemy-plugin polysemy-time prelate servant servant-client 223588 - servant-server tasty tasty-hedgehog warp 223921 + polysemy-plugin prelate servant-client servant-server tasty 223922 + tasty-hedgehog warp 223589 223923 ]; 223590 223924 description = "Polysemy effects for HTTP clients"; 223591 223925 license = "BSD-2-Clause-Patent"; ··· 223878 224212 }: 223879 224213 mkDerivation { 223880 224214 pname = "polysemy-process"; 223881 - version = "0.9.0.0"; 223882 - sha256 = "1jd3iryv3vwy8zv328sfwh1ifrj788fhs63vgppr503wgkqzmwbn"; 224215 + version = "0.10.0.0"; 224216 + sha256 = "1f0bnpzd1k1aj9f3100z240ljvlw9b5ikafif05bwzcpavsy7zli"; 223883 224217 libraryHaskellDepends = [ 223884 224218 base incipit-core path path-io polysemy polysemy-conc 223885 224219 polysemy-resume polysemy-time posix-pty process stm-chans ··· 224041 224375 ({ mkDerivation, base, polysemy, polysemy-methodology }: 224042 224376 mkDerivation { 224043 224377 pname = "polysemy-uncontrolled"; 224044 - version = "0.1.1.0"; 224045 - sha256 = "08q69sn1ac4xhpffiabayw2l5j1jy9iz1y37ww84kx32njas9c2b"; 224046 - revision = "1"; 224047 - editedCabalFile = "09j8fw0m1i0zp33v7pg3g2550blwajksvwbfnqq1slhmbyigd2jr"; 224378 + version = "0.1.1.1"; 224379 + sha256 = "01z19dy9gb78iwanszyipszq05piaa3n4qjmyj0yg22a1xsm02mi"; 224048 224380 libraryHaskellDepends = [ base polysemy polysemy-methodology ]; 224049 224381 description = "Uncontrolled toy effect for polysemy"; 224050 224382 license = lib.licenses.mit; ··· 227172 227504 }: 227173 227505 mkDerivation { 227174 227506 pname = "prelate"; 227175 - version = "0.1.0.0"; 227176 - sha256 = "149x6hmb25dd140kkpmcx60zqi6r4wc8yaj0jk75374b3gfqdvwz"; 227507 + version = "0.2.0.0"; 227508 + sha256 = "03620awa3yh3jfzqzr2i6gbhg4wfq33v7m42rzwnr6j83pkd59im"; 227177 227509 libraryHaskellDepends = [ 227178 227510 aeson base exon extra generic-lens incipit microlens microlens-ghc 227179 227511 polysemy-chronos polysemy-conc polysemy-log polysemy-process ··· 227728 228060 maintainers = [ lib.maintainers.cdepillabout ]; 227729 228061 }) {}; 227730 228062 227731 - "pretty-simple_4_1_1_0" = callPackage 228063 + "pretty-simple_4_1_2_0" = callPackage 227732 228064 ({ mkDerivation, base, Cabal, cabal-doctest, containers, criterion 227733 228065 , doctest, Glob, mtl, optparse-applicative, prettyprinter 227734 228066 , prettyprinter-ansi-terminal, QuickCheck, template-haskell, text ··· 227736 228068 }: 227737 228069 mkDerivation { 227738 228070 pname = "pretty-simple"; 227739 - version = "4.1.1.0"; 227740 - sha256 = "0jjxlb0psj5wj7h8dsmqbx8qwdyzmgsv7r9my51x9qb7m6qpkqfs"; 228071 + version = "4.1.2.0"; 228072 + sha256 = "0di7n3kq2bl0xqj9b1xxf3jznyy6cfyjs6hf6g0bi72rf4wprd1w"; 227741 228073 isLibrary = true; 227742 228074 isExecutable = true; 227743 228075 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 228958 229290 license = lib.licenses.mit; 228959 229291 }) {}; 228960 229292 228961 - "process_1_6_15_0" = callPackage 229293 + "process_1_6_16_0" = callPackage 228962 229294 ({ mkDerivation, base, bytestring, deepseq, directory, filepath 228963 229295 , unix 228964 229296 }: 228965 229297 mkDerivation { 228966 229298 pname = "process"; 228967 - version = "1.6.15.0"; 228968 - sha256 = "1azpl6qhi3ym4s2i1vh6z9kydpb9vgg76x803an9760jsdn1pcs4"; 229299 + version = "1.6.16.0"; 229300 + sha256 = "0a4kr9vndm7wxv9yw9ras5n3y3vr9xx0nkwkazfs06i7s6017hmv"; 228969 229301 libraryHaskellDepends = [ base deepseq directory filepath unix ]; 228970 229302 testHaskellDepends = [ base bytestring directory ]; 228971 229303 description = "Process libraries"; ··· 230172 230504 }: 230173 230505 mkDerivation { 230174 230506 pname = "propellor"; 230175 - version = "5.13"; 230176 - sha256 = "0hr2n5kxc7l6a0h5fs6i5hspni7ymw5dzgxwfdsa8j6mpzrw5yd4"; 230507 + version = "5.14.1"; 230508 + sha256 = "1lbqd4mj8mjk1l2pcqjw214w9znnp9mbs8z7dxi5spd819vw0d2d"; 230177 230509 isLibrary = true; 230178 230510 isExecutable = true; 230179 230511 libraryHaskellDepends = [ ··· 231966 232298 231967 232299 "purescript" = callPackage 231968 232300 ({ mkDerivation, aeson, aeson-better-errors, aeson-pretty 231969 - , ansi-terminal, ansi-wl-pprint, array, base, base-compat 231970 - , blaze-html, bower-json, boxes, bytestring, Cabal, cborg 231971 - , cheapskate, clock, containers, cryptonite, data-ordlist, deepseq 231972 - , directory, dlist, edit-distance, exceptions, file-embed, filepath 231973 - , fsnotify, generic-random, gitrev, Glob, happy, haskeline, hspec 232301 + , ansi-terminal, ansi-wl-pprint, array, base, blaze-html 232302 + , bower-json, boxes, bytestring, Cabal, cborg, cheapskate, clock 232303 + , containers, cryptonite, data-ordlist, deepseq, directory, dlist 232304 + , edit-distance, exceptions, file-embed, filepath, fsnotify 232305 + , generic-random, gitrev, Glob, happy, haskeline, hspec 231974 232306 , hspec-discover, http-types, HUnit, language-javascript, lens 231975 232307 , lifted-async, lifted-base, memory, monad-control, monad-logger 231976 232308 , monoidal-containers, mtl, network, newtype, optparse-applicative ··· 231979 232311 , serialise, sourcemap, split, stm, stringsearch, syb, text, these 231980 232312 , time, transformers, transformers-base, transformers-compat 231981 232313 , typed-process, unordered-containers, utf8-string, vector 232314 + , witherable 231982 232315 }: 231983 232316 mkDerivation { 231984 232317 pname = "purescript"; 231985 - version = "0.15.4"; 231986 - sha256 = "13w604knmazp8bhbdcb7smfpyy4nwsbng10km0gmp367lxwr09yz"; 232318 + version = "0.15.6"; 232319 + sha256 = "19p8jzn76vc5w4g95y36vfhih1s5kq12dvczvfb7zkmn3n6n3g3m"; 231987 232320 isLibrary = true; 231988 232321 isExecutable = true; 231989 232322 libraryHaskellDepends = [ 231990 232323 aeson aeson-better-errors aeson-pretty ansi-terminal array base 231991 - base-compat blaze-html bower-json boxes bytestring Cabal cborg 231992 - cheapskate clock containers cryptonite data-ordlist deepseq 231993 - directory dlist edit-distance file-embed filepath fsnotify Glob 231994 - haskeline language-javascript lens lifted-async lifted-base memory 232324 + blaze-html bower-json boxes bytestring Cabal cborg cheapskate clock 232325 + containers cryptonite data-ordlist deepseq directory dlist 232326 + edit-distance file-embed filepath fsnotify Glob haskeline 232327 + language-javascript lens lifted-async lifted-base memory 231995 232328 monad-control monad-logger monoidal-containers mtl parallel parsec 231996 232329 pattern-arrows process protolude regex-tdfa safe scientific 231997 232330 semialign semigroups serialise sourcemap split stm stringsearch syb 231998 232331 text these time transformers transformers-base transformers-compat 231999 - typed-process unordered-containers utf8-string vector 232332 + typed-process unordered-containers utf8-string vector witherable 232000 232333 ]; 232001 232334 libraryToolDepends = [ happy ]; 232002 232335 executableHaskellDepends = [ 232003 232336 aeson aeson-better-errors aeson-pretty ansi-terminal ansi-wl-pprint 232004 - array base base-compat blaze-html bower-json boxes bytestring Cabal 232005 - cborg cheapskate clock containers cryptonite data-ordlist deepseq 232337 + array base blaze-html bower-json boxes bytestring Cabal cborg 232338 + cheapskate clock containers cryptonite data-ordlist deepseq 232006 232339 directory dlist edit-distance exceptions file-embed filepath 232007 232340 fsnotify gitrev Glob haskeline http-types language-javascript lens 232008 232341 lifted-async lifted-base memory monad-control monad-logger ··· 232010 232343 parsec pattern-arrows process protolude regex-tdfa safe scientific 232011 232344 semialign semigroups serialise sourcemap split stm stringsearch syb 232012 232345 text these time transformers transformers-base transformers-compat 232013 - typed-process unordered-containers utf8-string vector 232346 + typed-process unordered-containers utf8-string vector witherable 232014 232347 ]; 232015 232348 executableToolDepends = [ happy ]; 232016 232349 testHaskellDepends = [ 232017 232350 aeson aeson-better-errors aeson-pretty ansi-terminal array base 232018 - base-compat blaze-html bower-json boxes bytestring Cabal cborg 232019 - cheapskate clock containers cryptonite data-ordlist deepseq 232020 - directory dlist edit-distance file-embed filepath fsnotify 232021 - generic-random Glob haskeline hspec HUnit language-javascript lens 232022 - lifted-async lifted-base memory monad-control monad-logger 232023 - monoidal-containers mtl newtype parallel parsec pattern-arrows 232024 - process protolude QuickCheck regex-base regex-tdfa safe scientific 232025 - semialign semigroups serialise sourcemap split stm stringsearch syb 232026 - text these time transformers transformers-base transformers-compat 232027 - typed-process unordered-containers utf8-string vector 232351 + blaze-html bower-json boxes bytestring Cabal cborg cheapskate clock 232352 + containers cryptonite data-ordlist deepseq directory dlist 232353 + edit-distance file-embed filepath fsnotify generic-random Glob 232354 + haskeline hspec HUnit language-javascript lens lifted-async 232355 + lifted-base memory monad-control monad-logger monoidal-containers 232356 + mtl newtype parallel parsec pattern-arrows process protolude 232357 + QuickCheck regex-base regex-tdfa safe scientific semialign 232358 + semigroups serialise sourcemap split stm stringsearch syb text 232359 + these time transformers transformers-base transformers-compat 232360 + typed-process unordered-containers utf8-string vector witherable 232028 232361 ]; 232029 232362 testToolDepends = [ happy hspec-discover ]; 232030 232363 doCheck = false; 232031 232364 description = "PureScript Programming Language Compiler"; 232032 232365 license = lib.licenses.bsd3; 232366 + hydraPlatforms = lib.platforms.none; 232033 232367 mainProgram = "purs"; 232368 + broken = true; 232034 232369 }) {}; 232035 232370 232036 232371 "purescript-ast" = callPackage ··· 236134 236469 license = lib.licenses.bsd3; 236135 236470 }) {}; 236136 236471 236472 + "rank2classes_1_4_6" = callPackage 236473 + ({ mkDerivation, base, Cabal, cabal-doctest, data-functor-logistic 236474 + , distributive, doctest, markdown-unlit, tasty, tasty-hunit 236475 + , template-haskell, transformers 236476 + }: 236477 + mkDerivation { 236478 + pname = "rank2classes"; 236479 + version = "1.4.6"; 236480 + sha256 = "09wpjan20m6icrw7v41dn85kapy6ijz2mm17iw2pp51c4h9c09ci"; 236481 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 236482 + libraryHaskellDepends = [ 236483 + base data-functor-logistic distributive template-haskell 236484 + transformers 236485 + ]; 236486 + testHaskellDepends = [ 236487 + base data-functor-logistic distributive doctest tasty tasty-hunit 236488 + ]; 236489 + testToolDepends = [ markdown-unlit ]; 236490 + description = "standard type constructor class hierarchy, only with methods of rank 2 types"; 236491 + license = lib.licenses.bsd3; 236492 + hydraPlatforms = lib.platforms.none; 236493 + }) {}; 236494 + 236137 236495 "rapid" = callPackage 236138 236496 ({ mkDerivation, async, base, containers, foreign-store, stm }: 236139 236497 mkDerivation { ··· 236614 236972 broken = true; 236615 236973 }) {}; 236616 236974 236617 - "rattletrap_11_2_12" = callPackage 236975 + "rattletrap_11_2_14" = callPackage 236618 236976 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 236619 236977 , containers, filepath, http-client, http-client-tls, text 236620 236978 }: 236621 236979 mkDerivation { 236622 236980 pname = "rattletrap"; 236623 - version = "11.2.12"; 236624 - sha256 = "1c3mpcjx2yl1w5myrqsdcsgr5x2hiv4pw5qd3ghlxkhl15rxbkzv"; 236981 + version = "11.2.14"; 236982 + sha256 = "0r879vbdhv77l14wzv03s8hlhmmzzfl6igkwnclr9lq8ncbafrxm"; 236625 236983 isLibrary = true; 236626 236984 isExecutable = true; 236627 236985 libraryHaskellDepends = [ ··· 240913 241271 }: 240914 241272 mkDerivation { 240915 241273 pname = "registry"; 240916 - version = "0.3.3.0"; 240917 - sha256 = "12xj9wrqp3wfg1kjql6l6l4avk2mf40n1z7mhhsrc457v7br1lfc"; 241274 + version = "0.3.3.4"; 241275 + sha256 = "1x5ilikd9xxdhkzvvm5mklxrzx8vbyzzji4rqnw8lsgrxpzwca9d"; 240918 241276 libraryHaskellDepends = [ 240919 241277 base containers exceptions hashable mmorph mtl protolude resourcet 240920 241278 semigroupoids semigroups template-haskell text transformers-base ··· 240940 241298 }: 240941 241299 mkDerivation { 240942 241300 pname = "registry-aeson"; 240943 - version = "0.2.2.0"; 240944 - sha256 = "1p5imwr93hx4nid57f2qfad3s2q0b667ns2hl0vs9y54fqvy79ra"; 241301 + version = "0.2.3.3"; 241302 + sha256 = "03wh6sl921hsqk32749y4gklpfjxjbhyw0dwk0zw6ja28jzpny7g"; 240945 241303 libraryHaskellDepends = [ 240946 241304 aeson base bytestring containers protolude registry 240947 241305 template-haskell text transformers unordered-containers vector ··· 240964 241322 }: 240965 241323 mkDerivation { 240966 241324 pname = "registry-hedgehog"; 240967 - version = "0.7.0.5"; 240968 - sha256 = "1mc8m74mx5119b6k7ac4ysilnwm0163a4c57gc15620mw3f0w0dl"; 241325 + version = "0.7.2.0"; 241326 + sha256 = "07lynkbwcjjlhh7v7rxa7s1b3m3vh1lfamdq4iwqy8b54p7fybs5"; 240969 241327 libraryHaskellDepends = [ 240970 241328 base containers hedgehog mmorph multimap protolude registry tasty 240971 241329 tasty-discover tasty-hedgehog tasty-th template-haskell text ··· 242628 242986 pname = "req-conduit"; 242629 242987 version = "1.0.1"; 242630 242988 sha256 = "0zyy9j6iiz8z2jdx25vp77arfbmrck7bjndm3p4s9l9399c5bm62"; 242989 + revision = "1"; 242990 + editedCabalFile = "0gbm1c95ml7binmazn15737a8ls5p21f9d0d6pzc3fla0rz91ic1"; 242631 242991 libraryHaskellDepends = [ 242632 242992 base bytestring conduit http-client req resourcet transformers 242633 242993 ]; ··· 243192 243552 license = lib.licenses.bsd3; 243193 243553 }) {}; 243194 243554 243555 + "resourcet_1_3_0" = callPackage 243556 + ({ mkDerivation, base, containers, exceptions, hspec, mtl 243557 + , primitive, transformers, unliftio-core 243558 + }: 243559 + mkDerivation { 243560 + pname = "resourcet"; 243561 + version = "1.3.0"; 243562 + sha256 = "0swrz7h73m86x3937gdiay3z30y9hn35n86v5brh38j2xs2ifq7c"; 243563 + libraryHaskellDepends = [ 243564 + base containers exceptions mtl primitive transformers unliftio-core 243565 + ]; 243566 + testHaskellDepends = [ base exceptions hspec transformers ]; 243567 + description = "Deterministic allocation and freeing of scarce resources"; 243568 + license = lib.licenses.bsd3; 243569 + hydraPlatforms = lib.platforms.none; 243570 + }) {}; 243571 + 243195 243572 "resourcet-effectful" = callPackage 243196 243573 ({ mkDerivation, base, effectful-core, resourcet }: 243197 243574 mkDerivation { ··· 244621 244998 description = "Test tools for Ribosome"; 244622 244999 license = "BSD-2-Clause-Patent"; 244623 245000 hydraPlatforms = lib.platforms.none; 244624 - broken = true; 244625 - }) {chiasma-test = null;}; 245001 + }) {}; 244626 245002 244627 245003 "richreports" = callPackage 244628 245004 ({ mkDerivation, ascetic, base, MissingH }: ··· 247285 247661 pname = "rustls"; 247286 247662 version = "0.0.0.0"; 247287 247663 sha256 = "1j7qxmapz9znmbd02359qxbsh1pkprzcg2jjpsz80kfyb6bjj766"; 247664 + revision = "1"; 247665 + editedCabalFile = "18jh00sbyixqjm2y6048f83qpqq4jlbzrik5i62is93rmn4pnnc2"; 247288 247666 libraryHaskellDepends = [ 247289 247667 base bytestring derive-storable derive-storable-plugin network 247290 247668 resourcet text transformers ··· 249582 249960 license = lib.licenses.asl20; 249583 249961 }) {}; 249584 249962 249963 + "scalpel_0_6_2_1" = callPackage 249964 + ({ mkDerivation, base, bytestring, case-insensitive, data-default 249965 + , http-client, http-client-tls, scalpel-core, tagsoup, text 249966 + }: 249967 + mkDerivation { 249968 + pname = "scalpel"; 249969 + version = "0.6.2.1"; 249970 + sha256 = "0w3l38czfsgbyd3x6yir7qw9bl8nmhclrbpbwfyhs39728jlscnc"; 249971 + libraryHaskellDepends = [ 249972 + base bytestring case-insensitive data-default http-client 249973 + http-client-tls scalpel-core tagsoup text 249974 + ]; 249975 + description = "A high level web scraping library for Haskell"; 249976 + license = lib.licenses.asl20; 249977 + hydraPlatforms = lib.platforms.none; 249978 + }) {}; 249979 + 249585 249980 "scalpel-core" = callPackage 249586 249981 ({ mkDerivation, base, bytestring, containers, criterion 249587 249982 , data-default, fail, HUnit, mtl, pointedlist, regex-base ··· 249603 249998 license = lib.licenses.asl20; 249604 249999 }) {}; 249605 250000 250001 + "scalpel-core_0_6_2_1" = callPackage 250002 + ({ mkDerivation, base, bytestring, containers, criterion 250003 + , data-default, fail, HUnit, mtl, pointedlist, regex-base 250004 + , regex-tdfa, tagsoup, text, transformers, vector 250005 + }: 250006 + mkDerivation { 250007 + pname = "scalpel-core"; 250008 + version = "0.6.2.1"; 250009 + sha256 = "1yl1lsi5xm3qdlww2sb6vyppjiisj54f4yzvffv3qg8dgkfjfdra"; 250010 + libraryHaskellDepends = [ 250011 + base bytestring containers data-default fail mtl pointedlist 250012 + regex-base regex-tdfa tagsoup text transformers vector 250013 + ]; 250014 + testHaskellDepends = [ base HUnit regex-base regex-tdfa tagsoup ]; 250015 + benchmarkHaskellDepends = [ base criterion tagsoup text ]; 250016 + description = "A high level web scraping library for Haskell"; 250017 + license = lib.licenses.asl20; 250018 + hydraPlatforms = lib.platforms.none; 250019 + }) {}; 250020 + 249606 250021 "scalpel-search" = callPackage 249607 250022 ({ mkDerivation, base, hspec, scalpel, scalpel-core, tagsoup, text 249608 250023 , uri ··· 251154 251569 pname = "sdl2"; 251155 251570 version = "2.5.4.0"; 251156 251571 sha256 = "1g35phifz49kxk48s8jmgglxhxl79cbzc1cg2qlgk0vdpxpin8ym"; 251572 + revision = "1"; 251573 + editedCabalFile = "19kr714da3lp064h1ky1bxwgkcrjy2ks5qby6214fj99dg7rxipr"; 251157 251574 isLibrary = true; 251158 251575 isExecutable = true; 251159 251576 enableSeparateDataOutput = true; ··· 253123 253540 pname = "serialise"; 253124 253541 version = "0.2.6.0"; 253125 253542 sha256 = "05m5h5vfjp4wvh6y7j2f3d4c3l6gxww2n1v38vqrjacpw641izwk"; 253543 + revision = "1"; 253544 + editedCabalFile = "0rlsi4jq2d1dak2fps5flcn27lywjlhvsi0x2k2lvnjqawnfb3f9"; 253126 253545 libraryHaskellDepends = [ 253127 253546 array base bytestring cborg containers ghc-prim half hashable 253128 253547 primitive strict text these time unordered-containers vector ··· 253296 253715 pname = "servant"; 253297 253716 version = "0.19"; 253298 253717 sha256 = "1rahn436vc3xajn563ni25jqkg87fvhqkpswan1xy6qsfr0ikdjb"; 253299 - revision = "4"; 253300 - editedCabalFile = "0g0y6xj9wa8fl62slqfpimx2c6xadqvyqhl661pbbk3f1p11j4cd"; 253718 + revision = "5"; 253719 + editedCabalFile = "0hn8qkvzazjncnawzzx7l0kdhzj35fy1387b00znirz6kx9w5vqp"; 253301 253720 libraryHaskellDepends = [ 253302 253721 aeson attoparsec base base-compat bifunctors bytestring 253303 253722 case-insensitive constraints deepseq http-api-data http-media ··· 253389 253808 pname = "servant-auth-client"; 253390 253809 version = "0.4.1.0"; 253391 253810 sha256 = "16rmwdrx0qyqa821ipayczzl3gv8gvqgx8k9q8qaw19w87hwkh83"; 253392 - revision = "5"; 253393 - editedCabalFile = "19y15pn7h1gv22y4yww33ri27plfwblygh5alfznsjdnmfzij3v4"; 253811 + revision = "6"; 253812 + editedCabalFile = "0d6mi3w3gx9h21awf1gy2wx7dwh5l9ichww21a3p5rfd8a8swypf"; 253394 253813 libraryHaskellDepends = [ 253395 253814 base bytestring containers servant servant-auth servant-client-core 253396 253815 ]; ··· 253445 253864 pname = "servant-auth-docs"; 253446 253865 version = "0.2.10.0"; 253447 253866 sha256 = "0j1ynnrb6plrhpb2vzs2p7a9jb41llp0j1jwgap7hjhkwhyc7wxd"; 253448 - revision = "10"; 253449 - editedCabalFile = "0c77b23wxqw168sk11s897pjnq4ma4cjvw99b0ny2ggf0v83hw6n"; 253867 + revision = "11"; 253868 + editedCabalFile = "1xk6j4l5jccwzk0xkiv6ny6w33g92wziacqvqgc5rvy2mzyff4fl"; 253450 253869 setupHaskellDepends = [ base Cabal cabal-doctest ]; 253451 253870 libraryHaskellDepends = [ 253452 253871 base lens servant servant-auth servant-docs text ··· 253856 254275 pname = "servant-client"; 253857 254276 version = "0.19"; 253858 254277 sha256 = "1bdapsr6il0f019ss8wsxndpc8cd5czj40xczay5qhl7fqnxg5pa"; 253859 - revision = "3"; 253860 - editedCabalFile = "16a3lsm2w4jvnisy0n38jx8a1974qywg569fml6zhx9fvz741dd8"; 254278 + revision = "4"; 254279 + editedCabalFile = "0j2i3fvqkhf80hada6vga3674z3bnnl1n3k655alfwnxl7zlgppa"; 253861 254280 libraryHaskellDepends = [ 253862 254281 base base-compat bytestring containers deepseq exceptions 253863 254282 http-client http-media http-types kan-extensions monad-control mtl ··· 253886 254305 pname = "servant-client-core"; 253887 254306 version = "0.19"; 253888 254307 sha256 = "0cisc5cyl367cwrch1gr812aspd36a21hkwi6mwj708rpspwvrmc"; 253889 - revision = "3"; 253890 - editedCabalFile = "1sk2nf0w9wxd7sqn3kla65kk91rk03xz8ll297wg2b2xqybvy8ph"; 254308 + revision = "4"; 254309 + editedCabalFile = "1qhqab6akfw6ay4rlrbwmii1s8flbkgp9b9bfzkdhwng7nvwdc80"; 253891 254310 libraryHaskellDepends = [ 253892 254311 aeson base base-compat base64-bytestring bytestring constraints 253893 254312 containers deepseq exceptions free http-media http-types ··· 254589 255008 pname = "servant-js"; 254590 255009 version = "0.9.4.2"; 254591 255010 sha256 = "15n5s3i491cxjxj70wa8yhpipaz47q46s04l4ysc64wgijlnm8xy"; 254592 - revision = "2"; 254593 - editedCabalFile = "1wi3q1rn384h9gvxv6dmk31h0wwb6j4yjimz01cz6sgs7fs77ndj"; 255011 + revision = "3"; 255012 + editedCabalFile = "1i8ngrrdnql03hlv07wfwbswfwm6zfj66n3byg647hcl71q67ppc"; 254594 255013 isLibrary = true; 254595 255014 isExecutable = true; 254596 255015 libraryHaskellDepends = [ ··· 254788 255207 pname = "servant-multipart"; 254789 255208 version = "0.12.1"; 254790 255209 sha256 = "1p55kb3zhq25ncp7wimhggssn68abfgsnlldk13rk1iajaj6y8y5"; 254791 - revision = "3"; 254792 - editedCabalFile = "1wkbwd6gypmv7aziaag3gzwgvvqx4bw8i4qp2vpmc7ip2ydm10ml"; 255210 + revision = "4"; 255211 + editedCabalFile = "0z4n3a1cdb082nwh3ig68wjk617cvwpq0n9ivsab55nvsr2wsm8q"; 254793 255212 libraryHaskellDepends = [ 254794 255213 base bytestring directory lens resourcet servant servant-docs 254795 255214 servant-foreign servant-multipart-api servant-server ··· 254964 255383 pname = "servant-openapi3"; 254965 255384 version = "2.0.1.5"; 254966 255385 sha256 = "0zcyqga4hbdyk34368108vv9vavzdhv26xphas7yppada2sshfay"; 255386 + revision = "1"; 255387 + editedCabalFile = "0bscnxbw1zd0f7ycjr54kxfdcxzndgbxpamc75r1yzly262xrc1b"; 254967 255388 setupHaskellDepends = [ base Cabal cabal-doctest ]; 254968 255389 libraryHaskellDepends = [ 254969 255390 aeson aeson-pretty base base-compat bytestring hspec http-media ··· 255481 255902 pname = "servant-server"; 255482 255903 version = "0.19.1"; 255483 255904 sha256 = "1g88vdwacwli79y5idqlrbhl2k9r463h560f2lk5abhqsmsm9bhd"; 255484 - revision = "2"; 255485 - editedCabalFile = "18as15x192ila9cqiff1yliidwlihx9kvjgji2sml11ahwhqyy75"; 255905 + revision = "3"; 255906 + editedCabalFile = "16jqzkrf9r7lz7y48dnl4v8s4hfn7hmfsmfbj7d96h53r2v4pz5g"; 255486 255907 isLibrary = true; 255487 255908 isExecutable = true; 255488 255909 libraryHaskellDepends = [ ··· 259215 259636 mainProgram = "test"; 259216 259637 }) {}; 259217 259638 259639 + "signal-messaging-dbus" = callPackage 259640 + ({ mkDerivation, base, bytestring, dbus, unliftio }: 259641 + mkDerivation { 259642 + pname = "signal-messaging-dbus"; 259643 + version = "1.0.0.2"; 259644 + sha256 = "0xlsrbx92vdxn1wa3za3pana7z1py0lfp4fyjrpyqp0m66rl81s1"; 259645 + isLibrary = true; 259646 + isExecutable = true; 259647 + libraryHaskellDepends = [ base bytestring dbus unliftio ]; 259648 + executableHaskellDepends = [ base bytestring dbus unliftio ]; 259649 + description = "Bindings for signal-cli's DBus interface"; 259650 + license = "AGPL"; 259651 + mainProgram = "signal-dbus-example"; 259652 + }) {}; 259653 + 259218 259654 "signals" = callPackage 259219 259655 ({ mkDerivation, base, containers, hashable, imperative-edsl-vhdl 259220 259656 , language-vhdl, mtl, observable-sharing, operational-alacarte ··· 259264 259700 }) {}; 259265 259701 259266 259702 "significant-figures" = callPackage 259267 - ({ mkDerivation, base, HasBigDecimal, haskeline, HUnit, parsec 259268 - , tasty, tasty-hunit, terminfo, text 259703 + ({ mkDerivation, base, HasBigDecimal, haskeline, parsec, tasty 259704 + , tasty-hunit, tasty-quickcheck, terminfo, text 259269 259705 }: 259270 259706 mkDerivation { 259271 259707 pname = "significant-figures"; 259272 - version = "0.1.0.1"; 259273 - sha256 = "0ry17vy8mvwd5z4i8vnk86gqxli5lgbmhgp1209qivx3y3pha5p6"; 259708 + version = "0.2.0.0"; 259709 + sha256 = "07x4sgjcnjf7hmq7x17lc2qwd1vsnybm6s620y0cwaawr81rhlxx"; 259274 259710 isLibrary = true; 259275 259711 isExecutable = true; 259276 259712 libraryHaskellDepends = [ base HasBigDecimal parsec text ]; ··· 259278 259714 base HasBigDecimal haskeline parsec terminfo text 259279 259715 ]; 259280 259716 testHaskellDepends = [ 259281 - base HasBigDecimal HUnit tasty tasty-hunit text 259717 + base HasBigDecimal tasty tasty-hunit tasty-quickcheck text 259282 259718 ]; 259283 259719 description = "Calculate expressions involving significant figures"; 259284 259720 license = lib.licenses.gpl3Plus; ··· 259481 259917 maintainers = [ lib.maintainers.turion ]; 259482 259918 }) {}; 259483 259919 259920 + "simple-affine-space_0_2" = callPackage 259921 + ({ mkDerivation, base, deepseq, directory, filepath, hlint, process 259922 + , regex-posix 259923 + }: 259924 + mkDerivation { 259925 + pname = "simple-affine-space"; 259926 + version = "0.2"; 259927 + sha256 = "1wxsbw1l5ynff3df6yvz22zwnnm77bhr67yccpkfsz9l9l566a3w"; 259928 + libraryHaskellDepends = [ base deepseq ]; 259929 + testHaskellDepends = [ 259930 + base directory filepath hlint process regex-posix 259931 + ]; 259932 + description = "A simple library for affine and vector spaces"; 259933 + license = lib.licenses.bsd3; 259934 + hydraPlatforms = lib.platforms.none; 259935 + maintainers = [ lib.maintainers.turion ]; 259936 + }) {}; 259937 + 259484 259938 "simple-amount" = callPackage 259485 259939 ({ mkDerivation, aeson, base, data-default, gmp, hedgehog, HUnit 259486 259940 , lens, mpfr, pretty, pretty-show, profunctors, split, tasty ··· 261124 261578 }: 261125 261579 mkDerivation { 261126 261580 pname = "sitepipe"; 261127 - version = "0.4.0.1"; 261128 - sha256 = "1iq7i2zs1bqnxqjp5bwsx8q2vvp1kngwg45mzsiwmhzq4m88x80h"; 261581 + version = "0.4.0.2"; 261582 + sha256 = "11v2135a92jcxi4nssds76ki25rdbrdp0q2fl6nnq5sw4ickk7ar"; 261129 261583 libraryHaskellDepends = [ 261130 261584 aeson base bytestring containers directory exceptions filepath Glob 261131 261585 lens lens-aeson megaparsec MissingH mtl mustache ··· 261625 262079 mainProgram = "skylighting"; 261626 262080 }) {}; 261627 262081 261628 - "skylighting_0_13" = callPackage 262082 + "skylighting_0_13_1" = callPackage 261629 262083 ({ mkDerivation, base, binary, blaze-html, bytestring, containers 261630 262084 , pretty-show, skylighting-core, skylighting-format-ansi 261631 262085 , skylighting-format-blaze-html, skylighting-format-latex, text 261632 262086 }: 261633 262087 mkDerivation { 261634 262088 pname = "skylighting"; 261635 - version = "0.13"; 261636 - sha256 = "0gjafmiqah9d7a6h3qx7jmkih6yc47bks5r6hgl5911vhjgifm7k"; 262089 + version = "0.13.1"; 262090 + sha256 = "0azlnrms9cp6vfp33mrzlhv2vv8v3257hri8j3r37x8h2ml3i6h9"; 261637 262091 configureFlags = [ "-fexecutable" ]; 261638 262092 isLibrary = true; 261639 262093 isExecutable = true; ··· 261681 262135 license = lib.licenses.bsd3; 261682 262136 }) {}; 261683 262137 261684 - "skylighting-core_0_13" = callPackage 262138 + "skylighting-core_0_13_1" = callPackage 261685 262139 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary 261686 262140 , bytestring, case-insensitive, colour, containers, criterion, Diff 261687 262141 , directory, filepath, mtl, pretty-show, QuickCheck, safe, tasty ··· 261690 262144 }: 261691 262145 mkDerivation { 261692 262146 pname = "skylighting-core"; 261693 - version = "0.13"; 261694 - sha256 = "01j6v2dy04lsmrx98hvgpb6vnirs1h0gbiy7q5ck5q3k37cqys7p"; 261695 - revision = "1"; 261696 - editedCabalFile = "1kbwbkjgilr0m0hfiq94rlvk691wgrmlrbd916mkv5h869qdyjrr"; 262147 + version = "0.13.1"; 262148 + sha256 = "1cfc03684pwxydms5ld7y75msaw5w4y5hhdpyi36xj17y4wf1drw"; 261697 262149 isLibrary = true; 261698 262150 isExecutable = true; 261699 262151 libraryHaskellDepends = [ ··· 261722 262174 pname = "skylighting-extensions"; 261723 262175 version = "1.0.0.0"; 261724 262176 sha256 = "1wi9vai606gf25m3q4p4ilwm8d2m7p5xk0wczq34h9pamfhcaqic"; 262177 + revision = "2"; 262178 + editedCabalFile = "0i1rwlvy92dlr71wl9n6rly4kry90lynbs3gn1l0gg75d0scbpkq"; 261725 262179 libraryHaskellDepends = [ 261726 262180 base containers skylighting skylighting-modding text 261727 262181 ]; ··· 265297 265751 ]; 265298 265752 description = "Generate CSV Exports of your Solana Staking Rewards"; 265299 265753 license = lib.licenses.bsd3; 265754 + hydraPlatforms = lib.platforms.none; 265300 265755 mainProgram = "solana-staking-csvs"; 265301 265756 }) {}; 265302 265757 ··· 265966 266421 }: 265967 266422 mkDerivation { 265968 266423 pname = "spade"; 265969 - version = "0.1.0.7"; 265970 - sha256 = "02pih7d5jv231gj674rilyfkbc27his7ibs50whkjqnfbf673fzl"; 266424 + version = "0.1.0.8"; 266425 + sha256 = "000cpyz9bvjf7rw2w0vwi4m6jj1hmdiq1qxs1039yrnfx7pq36r1"; 265971 266426 isLibrary = true; 265972 266427 isExecutable = true; 265973 266428 libraryHaskellDepends = [ ··· 268351 268806 pname = "stack"; 268352 268807 version = "2.9.1"; 268353 268808 sha256 = "01020dx89m07qmjs58vs2kidhkzq3106md08w6c65bzxvlf6kcwk"; 268354 - revision = "2"; 268355 - editedCabalFile = "14k4b8cn52bdl4n181afq8zqycl8nb4mv8vsg636c6b4s9yc053w"; 268809 + revision = "3"; 268810 + editedCabalFile = "1i0ddb17kzxvlv3xpgyi3acsi21h6iadwwv21ih063cdk9ilysxg"; 268356 268811 configureFlags = [ 268357 268812 "-fdisable-git-info" "-fhide-dependency-versions" 268358 268813 "-fsupported-build" ··· 271543 271998 license = lib.licenses.mit; 271544 271999 }) {}; 271545 272000 272001 + "streaming-commons_0_2_2_5" = callPackage 272002 + ({ mkDerivation, array, async, base, bytestring, deepseq, directory 272003 + , gauge, hspec, hspec-discover, network, process, QuickCheck 272004 + , random, stm, text, transformers, unix, zlib 272005 + }: 272006 + mkDerivation { 272007 + pname = "streaming-commons"; 272008 + version = "0.2.2.5"; 272009 + sha256 = "0157xjz8nhr65y9rm7rdf3pnjlrsgaqam7qfg7nqq91bvfdq2l6a"; 272010 + libraryHaskellDepends = [ 272011 + array async base bytestring directory network process random stm 272012 + text transformers unix zlib 272013 + ]; 272014 + testHaskellDepends = [ 272015 + array async base bytestring deepseq hspec network QuickCheck text 272016 + unix zlib 272017 + ]; 272018 + testToolDepends = [ hspec-discover ]; 272019 + benchmarkHaskellDepends = [ base bytestring deepseq gauge text ]; 272020 + description = "Common lower-level functions needed by various streaming data libraries"; 272021 + license = lib.licenses.mit; 272022 + hydraPlatforms = lib.platforms.none; 272023 + }) {}; 272024 + 271546 272025 "streaming-concurrency" = callPackage 271547 272026 ({ mkDerivation, base, exceptions, hspec, HUnit, lifted-async 271548 272027 , monad-control, QuickCheck, quickcheck-instances, stm, streaming ··· 275219 275698 }: 275220 275699 mkDerivation { 275221 275700 pname = "swagger2"; 275222 - version = "2.8.4"; 275223 - sha256 = "11gpnh7dg6bqbvgwfw9xri3l08kvxply698arpz62ix38qyf14iv"; 275701 + version = "2.8.5"; 275702 + sha256 = "16r9657sp6zvj4jcs0yp7nvgnhjfsla29knaimkddsqa3k8qf1v6"; 275224 275703 setupHaskellDepends = [ base Cabal cabal-doctest ]; 275225 275704 libraryHaskellDepends = [ 275226 275705 aeson aeson-pretty base base-compat-batteries bytestring containers ··· 275240 275719 license = lib.licenses.bsd3; 275241 275720 }) {}; 275242 275721 275722 + "swagger2_2_8_6" = callPackage 275723 + ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries 275724 + , bytestring, Cabal, cabal-doctest, containers, cookie, doctest 275725 + , generics-sop, Glob, hashable, hspec, hspec-discover, http-media 275726 + , HUnit, insert-ordered-containers, lens, mtl, network, optics-core 275727 + , optics-th, QuickCheck, quickcheck-instances, scientific 275728 + , template-haskell, text, time, transformers, unordered-containers 275729 + , utf8-string, uuid-types, vector 275730 + }: 275731 + mkDerivation { 275732 + pname = "swagger2"; 275733 + version = "2.8.6"; 275734 + sha256 = "1cvz98cn4xzr7fx8q7rwr22l7l95z1cvq7qpm1shwca5j4gq5084"; 275735 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 275736 + libraryHaskellDepends = [ 275737 + aeson aeson-pretty base base-compat-batteries bytestring containers 275738 + cookie generics-sop hashable http-media insert-ordered-containers 275739 + lens mtl network optics-core optics-th QuickCheck scientific 275740 + template-haskell text time transformers unordered-containers 275741 + uuid-types vector 275742 + ]; 275743 + testHaskellDepends = [ 275744 + aeson base base-compat-batteries bytestring containers doctest Glob 275745 + hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck 275746 + quickcheck-instances template-haskell text time 275747 + unordered-containers utf8-string vector 275748 + ]; 275749 + testToolDepends = [ hspec-discover ]; 275750 + description = "Swagger 2.0 data model"; 275751 + license = lib.licenses.bsd3; 275752 + hydraPlatforms = lib.platforms.none; 275753 + }) {}; 275754 + 275243 275755 "swapper" = callPackage 275244 275756 ({ mkDerivation, base, binary, bytestring, deepseq, happstack-data 275245 275757 , happstack-state, parallel, tokyocabinet ··· 275273 275785 }: 275274 275786 mkDerivation { 275275 275787 pname = "swarm"; 275276 - version = "0.1.0.1"; 275277 - sha256 = "1zcyyi1vd0y21qyfcx3kcbp6bwcn6n33my44g1jkqqvfxigp4zya"; 275788 + version = "0.1.1.0"; 275789 + sha256 = "18w84a0hb975qcwsd9kcji88h6xyrf7dbqcvfjdhhgbbd4y8pv9h"; 275278 275790 isLibrary = true; 275279 275791 isExecutable = true; 275280 275792 enableSeparateDataOutput = true; ··· 275583 276095 }: 275584 276096 mkDerivation { 275585 276097 pname = "sydtest"; 275586 - version = "0.12.0.1"; 275587 - sha256 = "0psnv1kpai4sn7z8g0lgpmzf0myp71wp5sganvyawi8iwk88cw8w"; 276098 + version = "0.13.0.0"; 276099 + sha256 = "0msa5y6fl00qjrj08c6bccbav179f05jk9hb9lmfbffq6bc86rc5"; 275588 276100 libraryHaskellDepends = [ 275589 276101 async autodocodec autodocodec-yaml base bytestring containers Diff 275590 276102 dlist envparse filepath MonadRandom mtl optparse-applicative path ··· 277778 278290 }) {}; 277779 278291 277780 278292 "taffybar" = callPackage 277781 - ({ mkDerivation, ansi-terminal, base, broadcast-chan, bytestring 277782 - , ConfigFile, containers, dbus, dbus-hslogger, directory, dyre 277783 - , either, enclosed-exceptions, filepath, gi-cairo 277784 - , gi-cairo-connector, gi-cairo-render, gi-gdk, gi-gdkpixbuf 277785 - , gi-gdkx11, gi-glib, gi-gtk, gi-gtk-hs, gi-pango, gtk-sni-tray 277786 - , gtk-strut, gtk3, haskell-gi, haskell-gi-base, hslogger 277787 - , HStringTemplate, http-client, http-client-tls, http-types 277788 - , multimap, old-locale, optparse-applicative, parsec, process 277789 - , rate-limit, regex-compat, safe, scotty, split 277790 - , status-notifier-item, stm, template-haskell, text, time 277791 - , time-locale-compat, time-units, transformers, transformers-base 277792 - , tuple, unix, utf8-string, X11, xdg-basedir, xdg-desktop-entry 277793 - , xml, xml-helpers, xmonad 278293 + ({ mkDerivation, aeson, ansi-terminal, base, broadcast-chan 278294 + , bytestring, conduit, ConfigFile, containers, data-default, dbus 278295 + , dbus-hslogger, directory, dyre, either, enclosed-exceptions 278296 + , filepath, gi-cairo, gi-cairo-connector, gi-cairo-render, gi-gdk 278297 + , gi-gdkpixbuf, gi-gdkx11, gi-glib, gi-gtk, gi-gtk-hs, gi-pango 278298 + , gtk-sni-tray, gtk-strut, gtk3, haskell-gi, haskell-gi-base 278299 + , hslogger, HStringTemplate, http-client, http-client-tls 278300 + , http-conduit, http-types, multimap, old-locale 278301 + , optparse-applicative, parsec, process, rate-limit, regex-compat 278302 + , safe, scotty, split, status-notifier-item, stm, template-haskell 278303 + , text, time, time-locale-compat, time-units, transformers 278304 + , transformers-base, tuple, unix, utf8-string, X11, xdg-basedir 278305 + , xdg-desktop-entry, xml, xml-helpers, xmonad 277794 278306 }: 277795 278307 mkDerivation { 277796 278308 pname = "taffybar"; 277797 - version = "3.3.0"; 277798 - sha256 = "17ggcv1y3md11sccbb9mpss2qdanlkv7wy098qh28gra9kq4ibgm"; 278309 + version = "4.0.0"; 278310 + sha256 = "1rwir1jlqxby2gj4pxbhz9khn6pfgn4bn3wca6q8zyzn0vs3i2wg"; 277799 278311 isLibrary = true; 277800 278312 isExecutable = true; 277801 278313 enableSeparateDataOutput = true; 277802 278314 libraryHaskellDepends = [ 277803 - ansi-terminal base broadcast-chan bytestring ConfigFile containers 277804 - dbus dbus-hslogger directory dyre either enclosed-exceptions 277805 - filepath gi-cairo gi-cairo-connector gi-cairo-render gi-gdk 277806 - gi-gdkpixbuf gi-gdkx11 gi-glib gi-gtk gi-gtk-hs gi-pango 277807 - gtk-sni-tray gtk-strut haskell-gi haskell-gi-base hslogger 277808 - HStringTemplate http-client http-client-tls http-types multimap 277809 - old-locale parsec process rate-limit regex-compat safe scotty split 278315 + aeson ansi-terminal base broadcast-chan bytestring conduit 278316 + ConfigFile containers data-default dbus dbus-hslogger directory 278317 + dyre either enclosed-exceptions filepath gi-cairo 278318 + gi-cairo-connector gi-cairo-render gi-gdk gi-gdkpixbuf gi-gdkx11 278319 + gi-glib gi-gtk gi-gtk-hs gi-pango gtk-sni-tray gtk-strut haskell-gi 278320 + haskell-gi-base hslogger HStringTemplate http-client 278321 + http-client-tls http-conduit http-types multimap old-locale parsec 278322 + process rate-limit regex-compat safe scotty split 277810 278323 status-notifier-item stm template-haskell text time 277811 278324 time-locale-compat time-units transformers transformers-base tuple 277812 278325 unix utf8-string X11 xdg-basedir xdg-desktop-entry xml xml-helpers ··· 277814 278327 ]; 277815 278328 libraryPkgconfigDepends = [ gtk3 ]; 277816 278329 executableHaskellDepends = [ 277817 - base directory hslogger optparse-applicative 278330 + base data-default directory hslogger optparse-applicative 277818 278331 ]; 277819 278332 executablePkgconfigDepends = [ gtk3 ]; 277820 278333 description = "A desktop bar similar to xmobar, but with more GUI"; 277821 278334 license = lib.licenses.bsd3; 277822 278335 badPlatforms = lib.platforms.darwin; 277823 - hydraPlatforms = lib.platforms.none; 277824 278336 mainProgram = "taffybar"; 277825 278337 maintainers = [ lib.maintainers.rvl ]; 277826 - broken = true; 277827 278338 }) {inherit (pkgs) gtk3;}; 277828 278339 277829 278340 "tag-bits" = callPackage ··· 279305 279816 license = lib.licenses.bsd3; 279306 279817 }) {}; 279307 279818 279308 - "tasty-hedgehog_1_3_1_0" = callPackage 279819 + "tasty-hedgehog_1_4_0_0" = callPackage 279309 279820 ({ mkDerivation, base, hedgehog, tagged, tasty 279310 279821 , tasty-expected-failure 279311 279822 }: 279312 279823 mkDerivation { 279313 279824 pname = "tasty-hedgehog"; 279314 - version = "1.3.1.0"; 279315 - sha256 = "1iq452mvd9wc9pfmjsmm848jwp3cvsk1faf2mlr21vcs0yaxvq3m"; 279825 + version = "1.4.0.0"; 279826 + sha256 = "1gcwbiqnxv7bkq48sh1d7ra3i53kdflzhpqrx4vlmhd7i69h1r4k"; 279316 279827 libraryHaskellDepends = [ base hedgehog tagged tasty ]; 279317 279828 testHaskellDepends = [ 279318 279829 base hedgehog tasty tasty-expected-failure ··· 281536 282047 license = lib.licenses.bsd3; 281537 282048 }) {}; 281538 282049 282050 + "termbox_1_0_0" = callPackage 282051 + ({ mkDerivation, base, ki, termbox-bindings-hs }: 282052 + mkDerivation { 282053 + pname = "termbox"; 282054 + version = "1.0.0"; 282055 + sha256 = "0diqjxam4vvw8prycjrq7qvn44lihda5rwibhwwp87vn840z0j3s"; 282056 + isLibrary = true; 282057 + isExecutable = true; 282058 + libraryHaskellDepends = [ base ki termbox-bindings-hs ]; 282059 + description = "termbox"; 282060 + license = lib.licenses.bsd3; 282061 + hydraPlatforms = lib.platforms.none; 282062 + }) {}; 282063 + 281539 282064 "termbox-banana" = callPackage 281540 282065 ({ mkDerivation, base, reactive-banana, termbox }: 281541 282066 mkDerivation { ··· 281563 282088 hydraPlatforms = lib.platforms.none; 281564 282089 mainProgram = "example"; 281565 282090 broken = true; 282091 + }) {}; 282092 + 282093 + "termbox-bindings-c" = callPackage 282094 + ({ mkDerivation, base }: 282095 + mkDerivation { 282096 + pname = "termbox-bindings-c"; 282097 + version = "0.1.0"; 282098 + sha256 = "1q7frripz88zgcfmx2lab2vrj19gywnskng07zf7icsj9j6bdwyw"; 282099 + libraryHaskellDepends = [ base ]; 282100 + description = "termbox bindings"; 282101 + license = lib.licenses.bsd3; 282102 + }) {}; 282103 + 282104 + "termbox-bindings-hs" = callPackage 282105 + ({ mkDerivation, base, termbox-bindings-c }: 282106 + mkDerivation { 282107 + pname = "termbox-bindings-hs"; 282108 + version = "0.1.0"; 282109 + sha256 = "07m6lp997skqp04a430ynsrzdpwcczblxawvlcbizffsznkmnl64"; 282110 + libraryHaskellDepends = [ base termbox-bindings-c ]; 282111 + description = "termbox bindings"; 282112 + license = lib.licenses.bsd3; 281566 282113 }) {}; 281567 282114 281568 282115 "termcolor" = callPackage ··· 281748 282295 }) {inherit (pkgs) gtk3; inherit (pkgs) pcre2; 281749 282296 vte_291 = pkgs.vte;}; 281750 282297 282298 + "termonad_4_4_0_0" = callPackage 282299 + ({ mkDerivation, adjunctions, aeson, base, Cabal, cabal-doctest 282300 + , classy-prelude, colour, constraints, containers, data-default 282301 + , directory, distributive, doctest, dyre, file-embed, filepath 282302 + , focuslist, genvalidity-containers, genvalidity-hspec, gi-gdk 282303 + , gi-gio, gi-glib, gi-gtk, gi-pango, gi-vte, gtk3, haskell-gi-base 282304 + , hedgehog, inline-c, lens, mono-traversable, pcre2, pretty-simple 282305 + , QuickCheck, tasty, tasty-hedgehog, tasty-hspec, template-haskell 282306 + , text, transformers, unordered-containers, vte_291, xml-conduit 282307 + , xml-html-qq, yaml 282308 + }: 282309 + mkDerivation { 282310 + pname = "termonad"; 282311 + version = "4.4.0.0"; 282312 + sha256 = "0xyb0z0k16mpsr5nc7a4k7w04k6skfwja25f5w329w1djrkvqfyx"; 282313 + isLibrary = true; 282314 + isExecutable = true; 282315 + enableSeparateDataOutput = true; 282316 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 282317 + libraryHaskellDepends = [ 282318 + adjunctions aeson base classy-prelude colour constraints containers 282319 + data-default directory distributive dyre file-embed filepath 282320 + focuslist gi-gdk gi-gio gi-glib gi-gtk gi-pango gi-vte 282321 + haskell-gi-base inline-c lens mono-traversable pretty-simple 282322 + QuickCheck text transformers unordered-containers xml-conduit 282323 + xml-html-qq yaml 282324 + ]; 282325 + libraryPkgconfigDepends = [ gtk3 pcre2 vte_291 ]; 282326 + executableHaskellDepends = [ base ]; 282327 + testHaskellDepends = [ 282328 + base doctest genvalidity-containers genvalidity-hspec hedgehog lens 282329 + QuickCheck tasty tasty-hedgehog tasty-hspec template-haskell 282330 + ]; 282331 + description = "Terminal emulator configurable in Haskell"; 282332 + license = lib.licenses.bsd3; 282333 + badPlatforms = lib.platforms.darwin; 282334 + hydraPlatforms = lib.platforms.none; 282335 + mainProgram = "termonad"; 282336 + maintainers = [ lib.maintainers.cdepillabout ]; 282337 + }) {inherit (pkgs) gtk3; inherit (pkgs) pcre2; 282338 + vte_291 = pkgs.vte;}; 282339 + 281751 282340 "termplot" = callPackage 281752 282341 ({ mkDerivation, base, brick, data-default, optparse-applicative 281753 282342 , process, split, time-units, transformers, unix, vty ··· 284700 285289 }) {}; 284701 285290 284702 285291 "the-snip" = callPackage 284703 - ({ mkDerivation, attoparsec, base, bytestring, hspec 284704 - , optparse-simple, path, path-io, rio, text, unix 285292 + ({ mkDerivation, attoparsec, base, hspec, optparse-simple, path 285293 + , path-io, rio, unix 284705 285294 }: 284706 285295 mkDerivation { 284707 285296 pname = "the-snip"; 284708 - version = "0.0.0.1"; 284709 - sha256 = "087wddnzz9hxjqd057wjjvlmbzr1x65bhycnhm45aqpxcbzy63i1"; 285297 + version = "0.1.0.0"; 285298 + sha256 = "18jn9f317ayhxymr8mvjcfid4gblsjw6db04q3ah9pifarz78snx"; 284710 285299 isLibrary = true; 284711 285300 isExecutable = true; 284712 - libraryHaskellDepends = [ 284713 - attoparsec base bytestring path path-io rio text unix 284714 - ]; 285301 + libraryHaskellDepends = [ attoparsec base path path-io rio unix ]; 284715 285302 executableHaskellDepends = [ 284716 - attoparsec base bytestring optparse-simple path path-io rio text 284717 - unix 285303 + attoparsec base optparse-simple path path-io rio unix 284718 285304 ]; 284719 285305 testHaskellDepends = [ 284720 - attoparsec base bytestring hspec path path-io rio text unix 285306 + attoparsec base hspec path path-io rio unix 284721 285307 ]; 284722 285308 description = "Command line tool for extracting demarcated snippets from text files"; 284723 285309 license = lib.licenses.bsd3; ··· 292384 292970 }: 292385 292971 mkDerivation { 292386 292972 pname = "twitchapi"; 292387 - version = "0.0.1"; 292388 - sha256 = "14yy5hbz1mxrr4pxwy62vslyx0rjkq7flmglrx5h7vzijc240jf7"; 292973 + version = "0.0.2"; 292974 + sha256 = "0lw7lr41lnm0jz3ig3y7y23348sp7mvpnihz90nh8j5iv74j7z12"; 292389 292975 libraryHaskellDepends = [ 292390 292976 aeson base bytestring hoauth2 http-client text time timerep 292391 292977 uri-bytestring 292392 292978 ]; 292393 292979 testHaskellDepends = [ 292394 - aeson base bytestring hspec QuickCheck text time timerep 292980 + aeson base bytestring hspec http-client QuickCheck text time 292981 + timerep 292395 292982 ]; 292396 292983 description = "Client access to Twitch.tv API endpoints"; 292397 292984 license = lib.licenses.bsd3; ··· 293071 293658 pname = "type-level-sets"; 293072 293659 version = "0.8.9.0"; 293073 293660 sha256 = "1acsr7g9ssli9yil9kws47gc6h3csmk2afncyki41pipa1vsriv4"; 293074 - revision = "1"; 293075 - editedCabalFile = "0cc0ws2plharq0gvindgmkp1fs82zd43zijkh7wf0ilfnr2l17z2"; 293661 + revision = "2"; 293662 + editedCabalFile = "1pd7lblyz7frgwm473is7phv7rm9cj5ypyf2z1n1jwj0aj8mb11p"; 293076 293663 libraryHaskellDepends = [ base ghc-prim ]; 293077 293664 description = "Type-level sets and finite maps (with value-level counterparts)"; 293078 293665 license = lib.licenses.bsd3; ··· 294187 294774 }: 294188 294775 mkDerivation { 294189 294776 pname = "tzdata"; 294190 - version = "0.2.20220923.0"; 294191 - sha256 = "0wzk15hlrjpdqh796h1v120223kn1327qr0rzp13ak0y5hm1fqrw"; 294777 + version = "0.2.20221011.0"; 294778 + sha256 = "118k2zbn71cri9f7b7293hsj5vyrmz7v60a7rl0r2abgkxkf39d2"; 294192 294779 enableSeparateDataOutput = true; 294193 294780 libraryHaskellDepends = [ 294194 294781 base bytestring containers deepseq vector ··· 295406 295993 license = lib.licenses.asl20; 295407 295994 }) {}; 295408 295995 295996 + "unicode-data_0_4_0" = callPackage 295997 + ({ mkDerivation, base, deepseq, hspec, hspec-discover, tasty 295998 + , tasty-bench 295999 + }: 296000 + mkDerivation { 296001 + pname = "unicode-data"; 296002 + version = "0.4.0"; 296003 + sha256 = "09s1chc7g9sgvjxs6ld5m4vrkm1shf7401ywffjrx1xfdjidb428"; 296004 + isLibrary = true; 296005 + isExecutable = true; 296006 + libraryHaskellDepends = [ base ]; 296007 + testHaskellDepends = [ base hspec ]; 296008 + testToolDepends = [ hspec-discover ]; 296009 + benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; 296010 + description = "Access Unicode Character Database (UCD)"; 296011 + license = lib.licenses.asl20; 296012 + hydraPlatforms = lib.platforms.none; 296013 + }) {}; 296014 + 295409 296015 "unicode-data-names" = callPackage 295410 296016 ({ mkDerivation, base, deepseq, hspec, hspec-discover, tasty 295411 296017 , tasty-bench, unicode-data 295412 296018 }: 295413 296019 mkDerivation { 295414 296020 pname = "unicode-data-names"; 295415 - version = "0.1.0"; 295416 - sha256 = "08f071i6p13q6n9aqlibdn0zsl4b6079lml341bfydd5qj9kjmgv"; 296021 + version = "0.2.0"; 296022 + sha256 = "0i28rp5g6wmnga6i95a6cq3dhkjg3v477xwycbcl38dfwdj3iy2c"; 295417 296023 isLibrary = true; 295418 296024 isExecutable = true; 295419 296025 libraryHaskellDepends = [ base ]; ··· 295422 296028 benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; 295423 296029 description = "Unicode characters names and aliases"; 295424 296030 license = lib.licenses.asl20; 296031 + hydraPlatforms = lib.platforms.none; 296032 + broken = true; 295425 296033 }) {}; 295426 296034 295427 296035 "unicode-data-scripts" = callPackage ··· 295430 296038 }: 295431 296039 mkDerivation { 295432 296040 pname = "unicode-data-scripts"; 295433 - version = "0.1.0"; 295434 - sha256 = "0qj2wlk85cflmpxzhgsbykqvxfis8jnp4ylpiag5wvn7ppn05040"; 296041 + version = "0.2.0"; 296042 + sha256 = "13igfgjqkkh5az5cxkqlp51ix34d9m8hgsjqc342hcbbal51zc82"; 295435 296043 libraryHaskellDepends = [ base unicode-data ]; 295436 296044 testHaskellDepends = [ base hspec unicode-data ]; 295437 296045 testToolDepends = [ hspec-discover ]; ··· 295440 296048 ]; 295441 296049 description = "Unicode characters scripts"; 295442 296050 license = lib.licenses.asl20; 296051 + hydraPlatforms = lib.platforms.none; 296052 + broken = true; 295443 296053 }) {}; 295444 296054 295445 296055 "unicode-data-security" = callPackage ··· 295448 296058 }: 295449 296059 mkDerivation { 295450 296060 pname = "unicode-data-security"; 295451 - version = "0.1.0"; 295452 - sha256 = "0vi1mvlzk6w11dc77hr5yq5aficisszf4mig5nrq0kp68s2jk5lv"; 296061 + version = "0.2.0"; 296062 + sha256 = "10x58l62i7bj9kmnchp1rggln40sfbsyw4pxlzbk8dmhkh5zmdlx"; 295453 296063 libraryHaskellDepends = [ base unicode-data ]; 295454 296064 testHaskellDepends = [ base hspec ]; 295455 296065 testToolDepends = [ hspec-discover ]; 295456 296066 benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; 295457 296067 description = "Unicode security mechanisms database"; 295458 296068 license = lib.licenses.asl20; 296069 + hydraPlatforms = lib.platforms.none; 296070 + broken = true; 295459 296071 }) {}; 295460 296072 295461 296073 "unicode-general-category" = callPackage ··· 295560 296172 pname = "unicode-transforms"; 295561 296173 version = "0.4.0.1"; 295562 296174 sha256 = "1z29jvli2rqkynfxni1gibl81458j7h8lrb8fg6lpnj8svhy2y1j"; 295563 - revision = "1"; 295564 - editedCabalFile = "0ml5j3j3dan7fgbyd3vgmlrij7bgszgfh244b1sppciis1v4m94p"; 296175 + revision = "2"; 296176 + editedCabalFile = "1imm3svpz2shilj2kmmmcyy5yd4c1mpmz5v1gvjrr98hrab2i9x7"; 295565 296177 isLibrary = true; 295566 296178 isExecutable = true; 295567 296179 libraryHaskellDepends = [ ··· 296884 297496 ]; 296885 297497 description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; 296886 297498 license = lib.licenses.mit; 297499 + }) {}; 297500 + 297501 + "unliftio_0_2_23_0" = callPackage 297502 + ({ mkDerivation, async, base, bytestring, containers, deepseq 297503 + , directory, filepath, gauge, hspec, process, QuickCheck 297504 + , safe-exceptions, stm, time, transformers, unix, unliftio-core 297505 + }: 297506 + mkDerivation { 297507 + pname = "unliftio"; 297508 + version = "0.2.23.0"; 297509 + sha256 = "1zg4ddi4z85550abw9ijycbbjg8ddig7r0vcma8ik03dxzga71id"; 297510 + libraryHaskellDepends = [ 297511 + async base bytestring deepseq directory filepath process 297512 + safe-exceptions stm time transformers unix unliftio-core 297513 + ]; 297514 + testHaskellDepends = [ 297515 + async base bytestring containers deepseq directory filepath hspec 297516 + process QuickCheck safe-exceptions stm time transformers unix 297517 + unliftio-core 297518 + ]; 297519 + benchmarkHaskellDepends = [ 297520 + async base bytestring deepseq directory filepath gauge process 297521 + safe-exceptions stm time transformers unix unliftio-core 297522 + ]; 297523 + description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; 297524 + license = lib.licenses.mit; 297525 + hydraPlatforms = lib.platforms.none; 296887 297526 }) {}; 296888 297527 296889 297528 "unliftio-core" = callPackage ··· 301006 301645 pname = "verifiable-expressions"; 301007 301646 version = "0.6.2"; 301008 301647 sha256 = "1nrlcbimng6qf4g7h4hxg3j05kd0hlihkhp8hj5js44n29vg89qk"; 301648 + revision = "1"; 301649 + editedCabalFile = "15h6zdzqvfkh480y5yp1sfjw79pkc6iv5b8mz785p3bgrspdlvn9"; 301009 301650 libraryHaskellDepends = [ 301010 301651 base containers lens mtl sbv transformers union vinyl 301011 301652 ]; ··· 301149 301790 }: 301150 301791 mkDerivation { 301151 301792 pname = "versions"; 301152 - version = "5.0.3"; 301153 - sha256 = "1ca3m9rvx89mniipbkxz3nm49mz7s4nhqc11hpsa6hjw9ff5kcjv"; 301793 + version = "5.0.4"; 301794 + sha256 = "1zny1kkk42nxwsbjfg87kwgcz4amjbihzqqpwmr3vcwqgx06lx19"; 301154 301795 libraryHaskellDepends = [ 301155 301796 base deepseq hashable megaparsec parser-combinators text 301156 301797 ]; ··· 302706 303347 pname = "wai-cli"; 302707 303348 version = "0.2.3"; 302708 303349 sha256 = "0fflvxfc9ibkrrgqdsr89gl77b0b706a8g7ylydaqqz6z089qbi3"; 302709 - revision = "1"; 302710 - editedCabalFile = "04w3gm1fcsxlrx7px5i737g61pgf2mlw8jyn2p6nczcyrwdvvicj"; 303350 + revision = "2"; 303351 + editedCabalFile = "1dv6lvfrsjpg733ssxgxghlfddqmnm8h2lp99wxyc8iiliy62vl9"; 302711 303352 libraryHaskellDepends = [ 302712 303353 ansi-terminal base http-types iproute monads-tf network options stm 302713 303354 streaming-commons transformers unix wai wai-extra warp warp-tls ··· 302884 303525 pname = "wai-extra"; 302885 303526 version = "3.1.12.1"; 302886 303527 sha256 = "1ya4m0c2p3wxzjlmk3yasc3pm61z309hzry9d39lj5wqv93a4wn6"; 303528 + revision = "1"; 303529 + editedCabalFile = "15v9m9af34s2iz9836bd1xi0s27sffviai4ywb2g3cv33fnpnljh"; 302887 303530 isLibrary = true; 302888 303531 isExecutable = true; 302889 303532 libraryHaskellDepends = [ ··· 305192 305835 license = lib.licenses.bsd3; 305193 305836 }) {}; 305194 305837 305838 + "wd" = callPackage 305839 + ({ mkDerivation, base, directory, process }: 305840 + mkDerivation { 305841 + pname = "wd"; 305842 + version = "0.1.0.0"; 305843 + sha256 = "06ilhp2mcjs66hbjnzbkbmxagi0lqg0galv6jshin77dzml8vxqq"; 305844 + isLibrary = false; 305845 + isExecutable = true; 305846 + sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; 305847 + description = "Run a command on a specified directory"; 305848 + license = lib.licenses.asl20; 305849 + mainProgram = "wd"; 305850 + }) {}; 305851 + 305195 305852 "weak" = callPackage 305196 305853 ({ mkDerivation, base }: 305197 305854 mkDerivation { ··· 307672 308329 maintainers = [ lib.maintainers.maralorn ]; 307673 308330 }) {}; 307674 308331 307675 - "witch_1_1_1_0" = callPackage 308332 + "witch_1_1_2_0" = callPackage 307676 308333 ({ mkDerivation, base, bytestring, containers, HUnit, tagged 307677 308334 , template-haskell, text, time, transformers 307678 308335 }: 307679 308336 mkDerivation { 307680 308337 pname = "witch"; 307681 - version = "1.1.1.0"; 307682 - sha256 = "0zxrwl2dyx3p701anh29czw3fp7pk68i32g5cd1z8806zdy0c1hv"; 308338 + version = "1.1.2.0"; 308339 + sha256 = "1ahikszzypycjilz0749wwcfppk8xdc1n4q97nxbf33h13jpaxax"; 307683 308340 libraryHaskellDepends = [ 307684 308341 base bytestring containers tagged template-haskell text time 307685 308342 ]; ··· 310028 310685 license = lib.licenses.bsd3; 310029 310686 }) {}; 310030 310687 310688 + "xdg-basedir-compliant" = callPackage 310689 + ({ mkDerivation, aeson, base, bytestring, filepath, hspec, polysemy 310690 + , polysemy-plugin, polysemy-zoo, QuickCheck, split 310691 + }: 310692 + mkDerivation { 310693 + pname = "xdg-basedir-compliant"; 310694 + version = "1.0.2"; 310695 + sha256 = "0451z9w6607ci2s3bx8q73j3fw3ff3lnjf3i4h4nkscf76m84zzl"; 310696 + libraryHaskellDepends = [ 310697 + base bytestring filepath polysemy polysemy-plugin polysemy-zoo 310698 + split 310699 + ]; 310700 + testHaskellDepends = [ 310701 + aeson base bytestring filepath hspec polysemy polysemy-plugin 310702 + polysemy-zoo QuickCheck split 310703 + ]; 310704 + description = "XDG Basedir"; 310705 + license = lib.licenses.bsd3; 310706 + }) {}; 310707 + 310031 310708 "xdg-desktop-entry" = callPackage 310032 310709 ({ mkDerivation, base, ConfigFile, directory, either, filepath 310033 310710 , multimap, safe, transformers, unix ··· 310465 311142 }: 310466 311143 mkDerivation { 310467 311144 pname = "xlsx"; 310468 - version = "1.0.0.1"; 310469 - sha256 = "1fs2xks7wcbr0idgd50kxlb35l5xy1icvkiyxm8q8772bq2zvadl"; 311145 + version = "1.1.0"; 311146 + sha256 = "09h2z1qys01lmddkacs4z3gm36dd1ndn0hw8cn3mmciyczawn2w1"; 310470 311147 libraryHaskellDepends = [ 310471 311148 attoparsec base base64-bytestring binary-search bytestring conduit 310472 311149 containers data-default deepseq dlist errors exceptions extra ··· 310500 311177 testHaskellDepends = [ base ]; 310501 311178 description = "Xlsx table cell value extraction utility"; 310502 311179 license = lib.licenses.bsd3; 311180 + hydraPlatforms = lib.platforms.none; 311181 + broken = true; 310503 311182 }) {}; 310504 311183 310505 311184 "xlsx-templater" = callPackage ··· 311440 312119 311441 312120 "xmobar" = callPackage 311442 312121 ({ mkDerivation, aeson, alsa-core, alsa-mixer, async, base 311443 - , bytestring, containers, dbus, directory, extensible-exceptions 311444 - , filepath, gauge, hinotify, hspec, http-client-tls, http-conduit 311445 - , http-types, iwlib, libmpd, libXpm, libXrandr, libXrender, mtl 311446 - , old-locale, parsec, parsec-numbers, process, regex-compat, stm 311447 - , temporary, time, timezone-olson, timezone-series, transformers 311448 - , unix, utf8-string, wirelesstools, X11, X11-xft 312122 + , bytestring, cairo, colour, containers, dbus, directory 312123 + , extensible-exceptions, filepath, gauge, hinotify, hspec 312124 + , http-client-tls, http-conduit, http-types, iwlib, libmpd, libXpm 312125 + , libXrandr, libXrender, mtl, old-locale, pango, parsec 312126 + , parsec-numbers, process, regex-compat, stm, temporary, time 312127 + , timezone-olson, timezone-series, transformers, unix, utf8-string 312128 + , wirelesstools, X11, X11-xft 311449 312129 }: 311450 312130 mkDerivation { 311451 312131 pname = "xmobar"; 311452 - version = "0.44.2"; 311453 - sha256 = "0gdphjn5ll5lkb2psdsb34563wsz6g0y2gg3z8cj4jy8lvbbv808"; 312132 + version = "0.45"; 312133 + sha256 = "0p64z535lk338f247gvddc6c4326xs41ar817whdvzj2910pyn86"; 311454 312134 configureFlags = [ 311455 312135 "-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus" 311456 312136 "-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris" ··· 311460 312140 isLibrary = true; 311461 312141 isExecutable = true; 311462 312142 libraryHaskellDepends = [ 311463 - aeson alsa-core alsa-mixer async base bytestring containers dbus 311464 - directory extensible-exceptions filepath hinotify http-client-tls 311465 - http-conduit http-types iwlib libmpd mtl old-locale parsec 311466 - parsec-numbers process regex-compat stm time timezone-olson 311467 - timezone-series transformers unix utf8-string X11 X11-xft 312143 + aeson alsa-core alsa-mixer async base bytestring cairo colour 312144 + containers dbus directory extensible-exceptions filepath hinotify 312145 + http-client-tls http-conduit http-types iwlib libmpd mtl old-locale 312146 + pango parsec parsec-numbers process regex-compat stm time 312147 + timezone-olson timezone-series transformers unix utf8-string X11 312148 + X11-xft 311468 312149 ]; 311469 312150 librarySystemDepends = [ 311470 312151 libXpm libXrandr libXrender wirelesstools ··· 311974 312655 "xrefcheck" = callPackage 311975 312656 ({ mkDerivation, aeson, aeson-casing, async, base, bytestring 311976 312657 , case-insensitive, cmark-gfm, containers, data-default, directory 311977 - , directory-tree, dlist, exceptions, filepath, firefly, fmt 311978 - , ftp-client, Glob, hspec, hspec-discover, hspec-expectations 311979 - , http-client, http-types, HUnit, lens, modern-uri, mtl, o-clock 311980 - , optparse-applicative, pretty-terminal, QuickCheck, raw-strings-qq 311981 - , regex-tdfa, req, roman-numerals, tagged, tagsoup, tasty 311982 - , tasty-discover, tasty-hunit, text, text-metrics 312658 + , dlist, exceptions, filepath, firefly, fmt, ftp-client, Glob 312659 + , http-client, http-types, lens, modern-uri, mtl, o-clock 312660 + , optparse-applicative, pretty-terminal, process, raw-strings-qq 312661 + , reflection, regex-tdfa, req, tagged, tagsoup, tasty 312662 + , tasty-discover, tasty-hunit, tasty-quickcheck, text, text-metrics 311983 312663 , th-lift-instances, time, transformers, universum, uri-bytestring 311984 312664 , with-utf8, yaml 311985 312665 }: 311986 312666 mkDerivation { 311987 312667 pname = "xrefcheck"; 311988 - version = "0.2.1"; 311989 - sha256 = "1xvz2qbchkb9p7prhc89gsmcwyl77spb0gxy9mw89c44wd12b9ns"; 312668 + version = "0.2.2"; 312669 + sha256 = "0qyl2wislma25s3n5aaqd732a2p7i9lsv4fvydm121a4r5sc5j4h"; 311990 312670 isLibrary = true; 311991 312671 isExecutable = true; 311992 312672 libraryHaskellDepends = [ 311993 312673 aeson aeson-casing async base bytestring cmark-gfm containers 311994 - data-default directory directory-tree dlist exceptions filepath fmt 311995 - ftp-client Glob http-client http-types lens modern-uri mtl o-clock 311996 - optparse-applicative pretty-terminal raw-strings-qq regex-tdfa req 311997 - roman-numerals tagsoup text text-metrics th-lift-instances time 311998 - transformers universum uri-bytestring yaml 312674 + data-default directory dlist exceptions filepath fmt ftp-client 312675 + Glob http-client http-types lens modern-uri mtl o-clock 312676 + optparse-applicative pretty-terminal process raw-strings-qq 312677 + reflection regex-tdfa req tagsoup text text-metrics 312678 + th-lift-instances time transformers universum uri-bytestring yaml 311999 312679 ]; 312000 312680 executableHaskellDepends = [ base bytestring universum with-utf8 ]; 312001 312681 testHaskellDepends = [ 312002 312682 base bytestring case-insensitive cmark-gfm containers directory 312003 - firefly fmt hspec hspec-expectations http-types HUnit modern-uri 312004 - o-clock optparse-applicative QuickCheck regex-tdfa tagged tasty 312005 - tasty-hunit time universum uri-bytestring yaml 312683 + firefly fmt http-types modern-uri o-clock optparse-applicative 312684 + reflection regex-tdfa tagged tasty tasty-hunit tasty-quickcheck 312685 + time universum uri-bytestring yaml 312006 312686 ]; 312007 - testToolDepends = [ hspec-discover tasty-discover ]; 312687 + testToolDepends = [ tasty-discover ]; 312008 312688 license = lib.licenses.mpl20; 312009 312689 hydraPlatforms = lib.platforms.none; 312010 312690 mainProgram = "xrefcheck"; ··· 312682 313362 pname = "yaml"; 312683 313363 version = "0.11.8.0"; 312684 313364 sha256 = "1s0arllihjjqp65jbc8c1w5106i2infppsirvbsifpmpkf14w6pn"; 313365 + revision = "2"; 313366 + editedCabalFile = "1dix5jm3d380vjr9l6wqz54zk883kilk8rijlvjp6b13mjxwcj1l"; 312685 313367 configureFlags = [ "-fsystem-libyaml" ]; 312686 313368 isLibrary = true; 312687 313369 isExecutable = true; ··· 317668 318350 pname = "zip"; 317669 318351 version = "1.7.2"; 317670 318352 sha256 = "1c5pr3hv11dpn4ybd4742qkpqmvb9l3l7xmzlsf65wm2p8071dvj"; 317671 - revision = "1"; 317672 - editedCabalFile = "1hazf2p31rzjycci8y40zm302msr0mgvb242lww21rxrpicbzl8d"; 318353 + revision = "2"; 318354 + editedCabalFile = "0gacj2fp0yg45l5vxby0n03lza91zfykk74p6a2r3abrfmvw7kq8"; 317673 318355 isLibrary = true; 317674 318356 isExecutable = true; 317675 318357 libraryHaskellDepends = [
+2 -2
pkgs/development/libraries/flatbuffers/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "flatbuffers"; 10 - version = "2.0.7"; 10 + version = "22.10.26"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "google"; 14 14 repo = "flatbuffers"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-tIM6CdIPq++xFbpA22zDm3D4dT9soNDe/9GRY/FyLrw="; 16 + sha256 = "sha256-Kub076FkWwHNlphGtTx2c3Jojv8otKLo492uN6Oq1F0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake python3 ];
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "intel-gmmlib"; 9 - version = "22.2.1"; 9 + version = "22.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "intel"; 13 13 repo = "gmmlib"; 14 14 rev = "intel-gmmlib-${version}"; 15 - sha256 = "sha256-/v2RUn/s3wrBdfClXkm6MM9KfSEWjbE2Njs3fDqXaj8="; 15 + sha256 = "sha256-ZJQ4KLKWA9SIXqKffU/uxUU+aXgfDdxQ5Wejgcfowgs="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake ];
+3 -2
pkgs/development/python-modules/asyncmy/default.nix
··· 4 4 , fetchFromGitHub 5 5 , poetry-core 6 6 , pythonOlder 7 + , setuptools 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 23 24 nativeBuildInputs = [ 24 25 cython 25 26 poetry-core 27 + setuptools 26 28 ]; 27 29 28 - # Not running tests as aiomysql is missing support for 29 - # pymysql>=0.9.3 30 + # Not running tests as aiomysql is missing support for pymysql>=0.9.3 30 31 doCheck = false; 31 32 32 33 pythonImportsCheck = [
+52
pkgs/development/python-modules/bundlewrap/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , cryptography 6 + , jinja2 7 + , Mako 8 + , passlib 9 + , pytest 10 + , pyyaml 11 + , requests 12 + , rtoml 13 + , setuptools 14 + , tomlkit 15 + , librouteros 16 + , pytestCheckHook 17 + }: 18 + 19 + buildPythonPackage rec { 20 + pname = "bundlewrap"; 21 + version = "4.15.0"; 22 + 23 + disabled = pythonOlder "3.7"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "bundlewrap"; 27 + repo = "bundlewrap"; 28 + rev = version; 29 + sha256 = "sha256-O31lh43VyaFnd/IUkx44wsgxkWubZKzjsKXzHwcGox0"; 30 + }; 31 + 32 + nativeBuildInputs = [ setuptools ]; 33 + propagatedBuildInputs = [ 34 + cryptography jinja2 Mako passlib pyyaml requests tomlkit librouteros 35 + ] ++ lib.optional (pythonOlder "3.11") [ rtoml ]; 36 + 37 + pythonImportsCheck = [ "bundlewrap" ]; 38 + 39 + checkInputs = [ pytestCheckHook ]; 40 + 41 + pytestFlagsArray = [ 42 + # only unit tests as integration tests need a OpenSSH client/server setup 43 + "tests/unit" 44 + ]; 45 + 46 + meta = with lib; { 47 + homepage = "https://bundlewrap.org/"; 48 + description = "Easy, Concise and Decentralized Config management with Python"; 49 + license = [ licenses.gpl3 ] ; 50 + maintainers = with maintainers; [ wamserma ]; 51 + }; 52 + }
+4
pkgs/development/python-modules/cvxpy/default.nix
··· 9 9 , osqp 10 10 , scipy 11 11 , scs 12 + , setuptools 12 13 , useOpenmp ? (!stdenv.isDarwin) 13 14 # Check inputs 14 15 , pytestCheckHook ··· 33 34 osqp 34 35 scipy 35 36 scs 37 + setuptools 36 38 ]; 37 39 38 40 # Required flags from https://github.com/cvxgrp/cvxpy/releases/tag/v1.1.11 ··· 49 51 disabledTests = [ 50 52 "test_tv_inpainting" 51 53 "test_diffcp_sdp_example" 54 + "test_huber" 55 + "test_partial_problem" 52 56 ] ++ lib.optionals stdenv.isAarch64 [ 53 57 "test_ecos_bb_mi_lp_2" # https://github.com/cvxgrp/cvxpy/issues/1241#issuecomment-780912155 54 58 ];
+14 -5
pkgs/development/python-modules/editdistance/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pytestCheckHook 5 5 , cython 6 + , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "editdistance"; 10 - version = "0.6.0"; 11 + version = "0.6.1"; 12 + format = "setuptools"; 11 13 14 + disabled = pythonOlder "3.7"; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "roy-ht"; 15 18 repo = pname; 16 19 rev = "v${version}"; 17 - sha256 = "17xkndwdyf14nfxk25z1qnhkzm0yxw65fpj78c01haq241zfzjr5"; 20 + hash = "sha256-c0TdH1nJAKrepatCSCTLaKsDv9NKruMQadCjclKGxBw="; 18 21 }; 19 22 20 - nativeBuildInputs = [ cython ]; 23 + nativeBuildInputs = [ 24 + cython 25 + ]; 21 26 22 27 preBuild = '' 23 28 cythonize --inplace editdistance/bycython.pyx 24 29 ''; 25 30 26 - checkInputs = [ pytestCheckHook ]; 31 + checkInputs = [ 32 + pytestCheckHook 33 + ]; 27 34 28 - pythonImportsCheck = [ "editdistance" ]; 35 + pythonImportsCheck = [ 36 + "editdistance" 37 + ]; 29 38 30 39 meta = with lib; { 31 40 description = "Python implementation of the edit distance (Levenshtein distance)";
+5
pkgs/development/python-modules/ge25519/default.nix
··· 7 7 , parts 8 8 , pytestCheckHook 9 9 , pythonOlder 10 + , setuptools 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 20 21 inherit pname version; 21 22 hash = "sha256-y9Nv59pLWk1kRjZG3EmalT34Mjx7RLZ4WkvJlRrK5LI="; 22 23 }; 24 + 25 + nativeBuildInputs = [ 26 + setuptools 27 + ]; 23 28 24 29 propagatedBuildInputs = [ 25 30 fe25519
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "meshtastic"; 21 - version = "1.3.43"; 21 + version = "1.3.44"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "meshtastic"; 28 28 repo = "Meshtastic-python"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-Gy9fnYUbv5jR+YeFjbNGdng+loM/J71Yn9Y1mKERVUA="; 30 + hash = "sha256-3OINNcdyZyhofGJDvAVyDLv/ylomM6LP4cEBkmeYwn4="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+4
pkgs/development/python-modules/osqp/default.nix
··· 24 24 hash = "sha256-svoXquQqftSY7CYbM/Jiu0s2BefoRkBiFZ2froF/DWE="; 25 25 }; 26 26 27 + postPatch = '' 28 + sed -i 's/sp.random/np.random/g' src/osqp/tests/*.py 29 + ''; 30 + 27 31 SETUPTOOLS_SCM_PRETEND_VERSION = version; 28 32 29 33 dontUseCmakeConfigure = true;
+3 -3
pkgs/development/python-modules/pysqueezebox/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pysqueezebox"; 12 - version = "0.6.0"; 12 + version = "0.6.1"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 17 17 src = fetchFromGitHub { 18 18 owner = "rajlaud"; 19 19 repo = pname; 20 - rev = "v${version}"; 21 - hash = "sha256-0ArKVRy4H0NWShlQMziKvbHp9OjpAkEKp4zrvpVlXOk="; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-NCADVSsnaOJfLJ7i18i7d7wlWcyt1DoRFGOVXEEYHPI="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+3 -4
pkgs/development/python-modules/pyswitchbee/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyswitchbee"; 11 - version = "1.6.0"; 11 + version = "1.6.1"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.9"; ··· 17 17 owner = "jafar-atili"; 18 18 repo = "pySwitchbee"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-ZAe47Oxw5n6OM/PRKz7OR8yzi/c9jnXeOYNjCbs0j1E="; 20 + hash = "sha256-5Mc70yi9Yj+8ye81v9NbKZnNoD5PQmBVAiYF5IM5ix8="; 21 21 }; 22 22 23 23 postPatch = '' ··· 44 44 meta = with lib; { 45 45 description = "Library to control SwitchBee smart home device"; 46 46 homepage = "https://github.com/jafar-atili/pySwitchbee/"; 47 - # https://github.com/jafar-atili/pySwitchbee/issues/1 48 - license = with licenses; [ unfree ]; 47 + license = with licenses; [ asl20 ]; 49 48 maintainers = with maintainers; [ fab ]; 50 49 }; 51 50 }
+31 -8
pkgs/development/python-modules/python-box/default.nix
··· 7 7 , pyyaml 8 8 , ruamel-yaml 9 9 , toml 10 + , tomli 11 + , tomli-w 10 12 }: 11 13 12 14 buildPythonPackage rec { ··· 14 16 version = "6.0.2"; 15 17 format = "setuptools"; 16 18 17 - disabled = pythonOlder "3.6"; 19 + disabled = pythonOlder "3.7"; 18 20 19 21 src = fetchFromGitHub { 20 22 owner = "cdgriffith"; ··· 23 25 hash = "sha256-IE2qyRzvrOTymwga+hCwE785sAVTqQtcN1DL/uADpbQ="; 24 26 }; 25 27 26 - propagatedBuildInputs = [ 27 - msgpack 28 - pyyaml 29 - ruamel-yaml 30 - toml 31 - ]; 28 + passthru.optional-dependencies = { 29 + all = [ 30 + msgpack 31 + ruamel-yaml 32 + toml 33 + ]; 34 + yaml = [ 35 + ruamel-yaml 36 + ]; 37 + ruamel-yaml = [ 38 + ruamel-yaml 39 + ]; 40 + PyYAML = [ 41 + pyyaml 42 + ]; 43 + tomli = [ 44 + tomli-w 45 + ] ++ lib.optionals (pythonOlder "3.11") [ 46 + tomli 47 + ]; 48 + toml = [ 49 + toml 50 + ]; 51 + msgpack = [ 52 + msgpack 53 + ]; 54 + }; 32 55 33 56 checkInputs = [ 34 57 pytestCheckHook 35 - ]; 58 + ] ++ passthru.optional-dependencies.all; 36 59 37 60 pythonImportsCheck = [ 38 61 "box"
+13 -6
pkgs/development/python-modules/python-gitlab/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "python-gitlab"; 13 - version = "3.10.0"; 13 + version = "3.11.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-FJMKFv3X829nuTc+fU1HIOjjdIAAKDgCidszBun3RhQ="; 20 + hash = "sha256-25Rytq5PupaLQJ3DL67iDdZQiQZdqpPgjSG3lqZdZXg="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - argcomplete 25 - pyyaml 26 24 requests 27 25 requests-toolbelt 28 26 ]; 29 27 30 - # tests rely on a gitlab instance on a local docker setup 28 + passthru.optional-dependencies = { 29 + autocompletion = [ 30 + argcomplete 31 + ]; 32 + yaml = [ 33 + pyyaml 34 + ]; 35 + }; 36 + 37 + # Tests rely on a gitlab instance on a local docker setup 31 38 doCheck = false; 32 39 33 40 pythonImportsCheck = [ ··· 37 44 meta = with lib; { 38 45 description = "Interact with GitLab API"; 39 46 homepage = "https://github.com/python-gitlab/python-gitlab"; 40 - license = licenses.lgpl3; 47 + license = licenses.lgpl3Only; 41 48 maintainers = with maintainers; [ nyanloutre ]; 42 49 }; 43 50 }
+20 -11
pkgs/development/python-modules/python-utils/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , loguru 5 - , pytestCheckHook 6 - , six 5 + , pytest-asyncio 7 6 , pytest-mypy 7 + , pytestCheckHook 8 + , pythonOlder 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "python-utils"; 12 - version = "3.3.3"; 13 + version = "3.4.5"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 13 17 14 18 src = fetchFromGitHub { 15 19 owner = "WoLpH"; 16 20 repo = pname; 17 - rev = "v${version}"; 18 - hash = "sha256-U6yamXbG8CUrNnFmGTBpHUelZSgoaNyB2CdUSH9WdMA="; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-O/+jvdzzxUFaQdAfUM9p40fPPDNN+stTauCD993HH6Y="; 19 23 }; 20 24 21 - # disable coverage and linting 22 25 postPatch = '' 23 26 sed -i '/--cov/d' pytest.ini 24 - sed -i '/--flake8/d' pytest.ini 25 27 ''; 26 28 27 - propagatedBuildInputs = [ 28 - loguru 29 - six 30 - ]; 29 + passthru.optional-dependencies = { 30 + loguru = [ 31 + loguru 32 + ]; 33 + }; 31 34 32 35 checkInputs = [ 36 + pytest-asyncio 33 37 pytest-mypy 34 38 pytestCheckHook 39 + ] ++ passthru.optional-dependencies.loguru; 40 + 41 + pythonImportsCheck = [ 42 + "python_utils" 35 43 ]; 36 44 37 45 pytestFlagsArray = [ ··· 42 50 description = "Module with some convenient utilities"; 43 51 homepage = "https://github.com/WoLpH/python-utils"; 44 52 license = licenses.bsd3; 53 + maintainers = with maintainers; [ ]; 45 54 }; 46 55 }
+31 -10
pkgs/development/python-modules/robotframework-requests/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 4 - , unittest2 5 - , robotframework 3 + , fetchFromGitHub 6 4 , lxml 5 + , pytestCheckHook 6 + , pythonOlder 7 7 , requests 8 + , robotframework 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 - version = "0.9.3"; 12 12 pname = "robotframework-requests"; 13 + version = "0.9.4"; 14 + format = "setuptools"; 13 15 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "sha256-C754uOezq5vsSWilG/N5XiZxABp4Cyt+vyriFSmI2jU="; 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "MarketSquare"; 20 + repo = pname; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-XjcR29dH9K9XEnJZlQ4UUDI1MG92dRO1puiB6fcN58k="; 17 23 }; 18 24 19 - buildInputs = [ unittest2 ]; 20 - propagatedBuildInputs = [ robotframework lxml requests ]; 25 + propagatedBuildInputs = [ 26 + lxml 27 + requests 28 + robotframework 29 + ]; 30 + 31 + buildInputs = [ 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "RequestsLibrary" 37 + ]; 38 + 39 + pytestFlagsArray = [ 40 + "utests" 41 + ]; 21 42 22 43 meta = with lib; { 23 44 description = "Robot Framework keyword library wrapper around the HTTP client library requests"; 24 45 homepage = "https://github.com/bulkan/robotframework-requests"; 25 46 license = licenses.mit; 47 + maintainers = with maintainers; [ ]; 26 48 }; 27 - 28 49 }
+14 -1
pkgs/development/python-modules/scapy/default.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, lib, isPyPy 1 + { buildPythonPackage, fetchFromGitHub, stdenv, lib, isPyPy 2 2 , pycrypto, ecdsa # TODO 3 3 , tox, mock, coverage, can, brotli 4 4 , withOptionalDeps ? true, tcpdump, ipython ··· 7 7 , withPlottingSupport ? true, matplotlib 8 8 , withGraphicsSupport ? false, pyx, texlive, graphviz, imagemagick 9 9 , withManufDb ? false, wireshark 10 + , libpcap 10 11 # 2D/3D graphics and graphs TODO: VPython 11 12 # TODO: nmap, numpy 12 13 }: ··· 24 25 sha256 = "0nxci1v32h5517gl9ic6zjq8gc8drwr0n5pz04c91yl97xznnw94"; 25 26 }; 26 27 28 + patches = [ 29 + ./find-library.patch 30 + ]; 31 + 27 32 postPatch = '' 28 33 printf "${version}" > scapy/VERSION 34 + 35 + libpcap_file="${lib.getLib libpcap}/lib/libpcap${stdenv.hostPlatform.extensions.sharedLibrary}" 36 + if ! [ -e "$libpcap_file" ]; then 37 + echo "error: $libpcap_file not found" >&2 38 + exit 1 39 + fi 40 + substituteInPlace "scapy/libs/winpcapy.py" \ 41 + --replace "@libpcap_file@" "$libpcap_file" 29 42 '' + lib.optionalString withManufDb '' 30 43 substituteInPlace scapy/data.py --replace "/opt/wireshark" "${wireshark}" 31 44 '';
+12
pkgs/development/python-modules/scapy/find-library.patch
··· 1 + diff -uNr a/scapy/libs/winpcapy.py b/scapy/libs/winpcapy.py 2 + --- a/scapy/libs/winpcapy.py 1970-01-01 01:00:01.000000000 +0100 3 + +++ b/scapy/libs/winpcapy.py 2022-08-12 17:57:52.830224862 +0200 4 + @@ -33,7 +33,7 @@ 5 + else: 6 + # Try to load libpcap 7 + SOCKET = c_int 8 + - _lib_name = find_library("pcap") 9 + + _lib_name = "@libpcap_file@" 10 + if not _lib_name: 11 + raise OSError("Cannot find libpcap.so library") 12 + _lib = CDLL(_lib_name)
+11 -4
pkgs/development/python-modules/spotipy/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonOlder 4 5 , redis 5 6 , requests 6 7 , six 8 + , urllib3 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "spotipy"; 11 - version = "2.20.0"; 13 + version = "2.21.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 12 17 13 18 src = fetchPypi { 14 19 inherit pname version; 15 - sha256 = "sha256-4mqZt1vi/EI3WytLNV3ET6Hlnvx3OvoXt4ThpMCoGMk="; 20 + hash = "sha256-YhFhqbWqAVaBwu4buIc87i7mtEDYQEDanSpXzWf31eU="; 16 21 }; 17 22 18 23 propagatedBuildInputs = [ 19 24 redis 20 25 requests 21 26 six 27 + urllib3 22 28 ]; 23 29 24 - # tests want to access the spotify API 30 + # Tests want to access the spotify API 25 31 doCheck = false; 32 + 26 33 pythonImportsCheck = [ 27 34 "spotipy" 28 35 "spotipy.oauth2" 29 36 ]; 30 37 31 38 meta = with lib; { 39 + description = "Library for the Spotify Web API"; 32 40 homepage = "https://spotipy.readthedocs.org/"; 33 41 changelog = "https://github.com/plamere/spotipy/blob/${version}/CHANGELOG.md"; 34 - description = "A light weight Python library for the Spotify Web API"; 35 42 license = licenses.mit; 36 43 maintainers = with maintainers; [ rvolosatovs ]; 37 44 };
+4 -2
pkgs/development/python-modules/tensorflow/bin.nix
··· 98 98 ( 99 99 cd unpacked/tensorflow* 100 100 # Adjust dependency requirements: 101 - # - Relax flatbuffers, gast and tensorflow-estimator version requirements that don't match what we have packaged 101 + # - Relax flatbuffers, gast, protobuf, tensorboard, and tensorflow-estimator version requirements that don't match what we have packaged 102 102 # - The purpose of python3Packages.libclang is not clear at the moment and we don't have it packaged yet 103 103 # - keras and tensorlow-io-gcs-filesystem will be considered as optional for now. 104 104 sed -i *.dist-info/METADATA \ 105 105 -e "/Requires-Dist: flatbuffers/d" \ 106 106 -e "/Requires-Dist: gast/d" \ 107 - -e "/Requires-Dist: libclang/d" \ 108 107 -e "/Requires-Dist: keras/d" \ 108 + -e "/Requires-Dist: libclang/d" \ 109 + -e "/Requires-Dist: protobuf/d" \ 110 + -e "/Requires-Dist: tensorboard/d" \ 109 111 -e "/Requires-Dist: tensorflow-estimator/d" \ 110 112 -e "/Requires-Dist: tensorflow-io-gcs-filesystem/d" 111 113 )
+2 -2
pkgs/development/tools/analysis/cppcheck/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "cppcheck"; 16 - version = "2.9"; 16 + version = "2.9.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "danmar"; 20 20 repo = "cppcheck"; 21 21 rev = version; 22 - sha256 = "sha256-UkmtW/3CLU9tFNjVLhQPhYkYflFLOBc/7Qc8lSBOo3I="; 22 + sha256 = "sha256-8vwuNK7qQg+pkUnWpEe8272BuHJUaidm8MoGsXVt1X8="; 23 23 }; 24 24 25 25 buildInputs = [ pcre
+3 -3
pkgs/development/tools/ruff/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ruff"; 11 - version = "0.0.89"; 11 + version = "0.0.91"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "charliermarsh"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-S+lnIzwdh3xv5Hoprl1gElD91zSa63TnAavIeT8XmKQ="; 17 + sha256 = "sha256-KAifSlIFJPw0A83pH6kZz2fCmYf6QVmuhAwZWtXEV3o="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-v7hR7t0mVwiF/CAd221ZQSncM7c05bltUB7w3+5xxjM="; 20 + cargoSha256 = "sha256-Zy6RQwRc3IYzK+pFs/CsZXZoRmnUfWeZTGpxjHTl6dY="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 23 CoreServices
+37
pkgs/development/tools/rust/cargo-lambda/default.nix
··· 1 + { stdenv, lib, rustPlatform, fetchFromGitHub, makeWrapper, cargo-watch, zig, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "cargo-lambda"; 5 + version = "0.11.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = pname; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-IK4HVj8Y8Vz+mza8G9C+m5JRfNT3BWWdlbQQkJPu6RI="; 12 + }; 13 + 14 + cargoSha256 = "sha256-oSqoSvv8IiChtduQQA31wItHcsnRBAQgOCrQN4sjcx8="; 15 + 16 + buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 + 18 + nativeBuildInputs = [ makeWrapper ]; 19 + 20 + postInstall = '' 21 + wrapProgram $out/bin/cargo-lambda --prefix PATH : ${lib.makeBinPath [ cargo-watch zig ]} 22 + ''; 23 + 24 + checkFlags = [ 25 + # Disabled because it accesses the network. 26 + "--skip test_download_example" 27 + # Disabled because it makes assumptions about the file system. 28 + "--skip test_target_dir_from_env" 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "A Cargo subcommand to help you work with AWS Lambda"; 33 + homepage = "https://cargo-lambda.info"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ taylor1791 ]; 36 + }; 37 + }
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.424"; 5 + version = "0.0.425"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-VipCiWSuC1SSJPWk9WXgcMd0G0C2TsUSQgW2GM9yAII="; 11 + sha256 = "sha256-SIvJQbPCQhZ9zPQI5QSCOrJNlCNL+S9U2v41ik3h4HU="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-a0ZnZlKB/Uotrm4npXB1dd1+oWHRhJVW7ofMSKlqcvM="; 14 + vendorSha256 = "sha256-wMVvDB/6ZDY3EwTWRJ1weCIlRZM+Ye24UnRl1YZzAcA="; 15 15 16 16 subPackages = [ "." ]; 17 17
+2 -9
pkgs/games/dwarf-fortress/default.nix
··· 63 63 inherit dwarf-fortress-unfuck; 64 64 }; 65 65 66 - # unfuck is linux-only right now, we will only use it there. 67 - dwarf-fortress-unfuck = 68 - if stdenv.isLinux then callPackage ./unfuck.nix { inherit dfVersion; } 69 - else null; 66 + dwarf-fortress-unfuck = callPackage ./unfuck.nix { inherit dfVersion; }; 70 67 71 68 twbt = callPackage ./twbt { inherit dfVersion; }; 72 69 ··· 83 80 in 84 81 callPackage ./wrapper { 85 82 inherit (self) themes; 86 - 87 - dwarf-fortress = dwarf-fortress; 88 - twbt = twbt; 89 - dfhack = dfhack; 90 - dwarf-therapist = dwarf-therapist; 83 + inherit dwarf-fortress twbt dfhack dwarf-therapist; 91 84 92 85 jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 93 86 };
+2 -4
pkgs/games/dwarf-fortress/game.nix
··· 18 18 let 19 19 libpath = makeLibraryPath [ stdenv.cc.cc stdenv.cc.libc dwarf-fortress-unfuck SDL ]; 20 20 21 - homepage = "http://www.bay12games.com/dwarves/"; 22 - 23 21 # Map Dwarf Fortress platform names to Nixpkgs platform names. 24 22 # Other srcs are avilable like 32-bit mac & win, but I have only 25 23 # included the ones most likely to be needed by Nixpkgs users. ··· 56 54 version = dfVersion; 57 55 58 56 src = fetchurl { 59 - url = "${homepage}df_${baseVersion}_${patchVersion}_${dfPlatform}.tar.bz2"; 57 + url = "https://www.bay12games.com/dwarves/df_${baseVersion}_${patchVersion}_${dfPlatform}.tar.bz2"; 60 58 inherit sha256; 61 59 }; 62 60 ··· 103 101 104 102 meta = { 105 103 description = "A single-player fantasy game with a randomly generated adventure world"; 106 - inherit homepage; 104 + homepage = "https://www.bay12games.com/dwarves/"; 107 105 license = licenses.unfreeRedistributable; 108 106 platforms = attrNames platforms; 109 107 maintainers = with maintainers; [ a1russell robbinch roconnor abbradar numinit shazow ];
+2
pkgs/games/dwarf-fortress/wrapper/default.nix
··· 137 137 ''; 138 138 139 139 preferLocalBuild = true; 140 + 141 + inherit (dwarf-fortress) meta; 140 142 }
+8 -5
pkgs/games/xivlauncher/default.nix
··· 3 3 , useSteamRun ? true }: 4 4 5 5 let 6 - rev = "6246fde6b54f8c7e340057fe2d940287c437153f"; 6 + rev = "1.0.2"; 7 7 in 8 8 buildDotnetModule rec { 9 9 pname = "XIVLauncher"; 10 - version = "1.0.1.0"; 10 + version = rev; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "goatcorp"; 14 - repo = "FFXIVQuickLauncher"; 14 + repo = "XIVLauncher.Core"; 15 15 inherit rev; 16 - sha256 = "sha256-sM909/ysrlwsiVSBrMo4cOZUWxjRA3ZSwlloGythOAY="; 16 + sha256 = "DlSMxIbgzL5cy+A5nm7ZaA2A0TdINtq2GHW27uxORKI="; 17 + fetchSubmodules = true; 17 18 }; 18 19 19 20 nativeBuildInputs = [ copyDesktopItems ]; ··· 31 32 ]; 32 33 33 34 postPatch = '' 34 - substituteInPlace src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaHttpPatchAcquisition.cs \ 35 + substituteInPlace lib/FFXIVQuickLauncher/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaHttpPatchAcquisition.cs \ 35 36 --replace 'ariaPath = "aria2c"' 'ariaPath = "${aria2}/bin/aria2c"' 36 37 ''; 37 38 ··· 57 58 desktopName = "XIVLauncher"; 58 59 comment = meta.description; 59 60 categories = [ "Game" ]; 61 + startupWMClass = "XIVLauncher.Core"; 60 62 }) 61 63 ]; 62 64 ··· 66 68 license = licenses.gpl3; 67 69 maintainers = with maintainers; [ ashkitten sersorrel ]; 68 70 platforms = [ "x86_64-linux" ]; 71 + mainProgram = "XIVLauncher.Core"; 69 72 }; 70 73 }
+6 -15
pkgs/games/xivlauncher/deps.nix
··· 4 4 { fetchNuGet }: [ 5 5 (fetchNuGet { pname = "Castle.Core"; version = "4.4.1"; sha256 = "13dja1jxl5zwhi0ghkgvgmqdrixn57f9hk52jy5vpaaakzr550r7"; }) 6 6 (fetchNuGet { pname = "CheapLoc"; version = "1.1.6"; sha256 = "1m6cgx9yh7h3vrq2d4f99xyvsxc9jvz8zjq1q14qgylfmyq4hx4l"; }) 7 + (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 7 8 (fetchNuGet { pname = "Config.Net"; version = "4.19.0"; sha256 = "17iv0vy0693s6d8626lbz3w1ppn5abn77aaki7h4qi4izysizgim"; }) 8 9 (fetchNuGet { pname = "Downloader"; version = "2.2.8"; sha256 = "0farwh3pc6m8hsgqywigdpcb4gr2m9myyxm2idzjmhhkzfqghj28"; }) 9 10 (fetchNuGet { pname = "goaaats.NativeLibraryLoader"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "1bjjgsw4ry9cz8dzsgwx428hn06wms194pqz8nclwrqcwfx7gmxk"; }) ··· 16 17 (fetchNuGet { pname = "goaaats.Veldrid.StartupUtilities"; version = "4.9.0-beta1-g70f642e82e"; sha256 = "03r3x9h0fyb07d6d28ny6r5s688m50xc0lgc6zf2cy684kfnvmp5"; }) 17 18 (fetchNuGet { pname = "ImGui.NET"; version = "1.87.2"; sha256 = "0rv0n18fvz1gbh45crhzn1f8xw8zkc8qyiyj91vajjcry8mq1x7q"; }) 18 19 (fetchNuGet { pname = "KeySharp"; version = "1.0.5"; sha256 = "1ic10v0a174fw6w89iyg4yzji36bsj15573y676cj5n09n6s75d4"; }) 20 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "6.0.0"; sha256 = "15gqy2m14fdlvy1g59207h5kisznm355kbw010gy19vh47z8gpz3"; }) 19 21 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.3"; sha256 = "09m4cpry8ivm9ga1abrxmvw16sslxhy2k5sl14zckhqb1j164im6"; }) 20 22 (fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.3"; sha256 = "1z6x0d8lpcfjr3sxy25493i17vvcg5bsay6c03qan6mnj5aqzw2k"; }) 21 23 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.0.1"; sha256 = "0axjv1nhk1z9d4c51d9yxdp09l8yqqnqaifhqcwnxnv0r4y5cka9"; }) 22 24 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.0.1"; sha256 = "1h6jfifg7pw2vacpdds4v4jqnaydg9b108irf315wzx6rh8yv9cb"; }) 23 25 (fetchNuGet { pname = "Microsoft.CodeAnalysis.NetAnalyzers"; version = "6.0.0"; sha256 = "06zy947m5lrbwb684g42ijb07r5jsqycvfnphc6cqfdrfnzqv6k9"; }) 24 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 25 26 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 26 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; }) 27 27 (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 28 28 (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 29 29 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "6.0.0-preview.5.21301.5"; sha256 = "02712s86n2i8s5j6vxdayqwcc7r538yw3frhf1gfrc6ah6hvqnzc"; }) ··· 76 76 (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; }) 77 77 (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 78 78 (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 79 - (fetchNuGet { pname = "Serilog"; version = "2.10.0"; sha256 = "08bih205i632ywryn3zxkhb15dwgyaxbhmm1z3b5nmby9fb25k7v"; }) 80 - (fetchNuGet { pname = "Serilog"; version = "2.9.0"; sha256 = "0z0ib82w9b229a728bbyhzc2hnlbl0ki7nnvmgnv3l741f2vr4i6"; }) 79 + (fetchNuGet { pname = "Serilog"; version = "2.12.0"; sha256 = "0lqxpc96qcjkv9pr1rln7mi4y7n7jdi4vb36c2fv3845w1vswgr4"; }) 81 80 (fetchNuGet { pname = "Serilog.Enrichers.Thread"; version = "3.1.0"; sha256 = "1y75aiv2k1sxnh012ixkx92fq1yl8srqggy8l439igg4p223hcqi"; }) 82 - (fetchNuGet { pname = "Serilog.Sinks.Async"; version = "1.4.0"; sha256 = "00kqrn3xmfzg469y155vihsiby8dbbs382fi6qg8p2zg3i5dih1d"; }) 81 + (fetchNuGet { pname = "Serilog.Sinks.Async"; version = "1.5.0"; sha256 = "0bcb3n6lmg5wfj806mziybfmbb8gyiszrivs3swf0msy8w505gyg"; }) 83 82 (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "3.1.1"; sha256 = "0j99as641y1k6havwwkhyr0n08vibiblmfjj6nz051mz8g3864fn"; }) 84 83 (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "4.0.1"; sha256 = "080vh9kcyn9lx4j7p34146kp9byvhqlaz5jn9wzx70ql9cwd0hlz"; }) 85 84 (fetchNuGet { pname = "Serilog.Sinks.Debug"; version = "1.0.1"; sha256 = "0969mb254kr59bgkq01ybyzca89z3f4n9ng5mdj8m53d5653zf22"; }) 86 - (fetchNuGet { pname = "Serilog.Sinks.File"; version = "4.1.0"; sha256 = "1ry7p9hf1zlnai1j5zjhjp4dqm2agsbpq6cvxgpf5l8m26x6mgca"; }) 87 85 (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0"; sha256 = "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q"; }) 88 86 (fetchNuGet { pname = "SharedMemory"; version = "2.3.2"; sha256 = "078qaab0j8p2fjcc9n7r4sr5pr7567a9bspfiikkc85bsx7vfm8w"; }) 89 87 (fetchNuGet { pname = "SharpGen.Runtime"; version = "2.0.0-beta.10"; sha256 = "0yxq0b4m96z71afc7sywfrlwz2pgr5nilacmssjk803v70f0ydr1"; }) ··· 113 111 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 114 112 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; }) 115 113 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; }) 116 - (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 117 114 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 118 115 (fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; }) 119 116 (fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; sha256 = "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar"; }) 120 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; }) 121 117 (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; }) 122 - (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.0.1"; sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; }) 123 118 (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; }) 124 119 (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 125 120 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; }) ··· 143 138 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 144 139 (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; }) 145 140 (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; }) 146 - (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; }) 147 141 (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 148 142 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.4.0"; sha256 = "0a6ahgi5b148sl5qyfpyw383p3cb4yrkm802k29fsi4mxkiwir29"; }) 149 143 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.0"; sha256 = "17labczwqk3jng3kkky73m0jhi8wc21vbl7cz5c0hj2p1dswin43"; }) ··· 151 145 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; sha256 = "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x"; }) 152 146 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 153 147 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 154 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) 155 148 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; }) 156 149 (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; }) 157 150 (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii"; }) ··· 172 165 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; }) 173 166 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8"; }) 174 167 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "6.0.0-preview.5.21301.5"; sha256 = "1q3iikvjcfrm5p89p1j7qlw1szvryq680qypk023wgy9phmlwi57"; }) 175 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 176 168 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 177 169 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 178 - (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 179 170 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 171 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "6.0.0"; sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; }) 172 + (fetchNuGet { pname = "System.Text.Json"; version = "6.0.6"; sha256 = "0bkfrnr9618brbl1gvhyqrf5720syawf9dvpk8xfvkxbg7imlpjx"; }) 180 173 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; }) 181 174 (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; }) 182 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; }) 183 175 (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; }) 184 176 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; }) 185 177 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; sha256 = "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153"; }) 186 178 (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; }) 187 - (fetchNuGet { pname = "System.Threading.Timer"; version = "4.0.1"; sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; }) 188 179 (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; }) 189 180 (fetchNuGet { pname = "System.Windows.Extensions"; version = "6.0.0"; sha256 = "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip"; }) 190 181 (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; })
+2 -2
pkgs/os-specific/linux/prl-tools/default.nix
··· 24 24 assert (!libsOnly) -> kernel != null; 25 25 26 26 stdenv.mkDerivation rec { 27 - version = "18.0.2-53077"; 27 + version = "18.0.3-53079"; 28 28 pname = "prl-tools"; 29 29 30 30 # We download the full distribution to extract prl-tools-lin.iso from 31 31 # => ${dmg}/Parallels\ Desktop.app/Contents/Resources/Tools/prl-tools-lin.iso 32 32 src = fetchurl { 33 33 url = "https://download.parallels.com/desktop/v${lib.versions.major version}/${version}/ParallelsDesktop-${version}.dmg"; 34 - sha256 = "sha256-yrCg3qr96SUCHmT3IAF79/Ha+L82V3nIC6Hb5ugXoGk="; 34 + sha256 = "sha256-z9B2nhcTSZr3L30fa54zYi6WnonQ2wezHoneT2tQWAc="; 35 35 }; 36 36 37 37 patches = lib.optionals (lib.versionAtLeast kernel.version "6.0") [
+3 -14
pkgs/servers/web-apps/healthchecks/default.nix
··· 8 8 py = python3.override { 9 9 packageOverrides = final: prev: { 10 10 django = prev.django_4; 11 - fido2 = prev.fido2.overridePythonAttrs (old: rec { 12 - version = "0.9.3"; 13 - src = prev.fetchPypi { 14 - pname = "fido2"; 15 - inherit version; 16 - sha256 = "sha256-tF6JphCc/Lfxu1E3dqotZAjpXEgi+DolORi5RAg0Zuw="; 17 - }; 18 - }); 19 11 }; 20 12 }; 21 13 in 22 14 py.pkgs.buildPythonApplication rec { 23 15 pname = "healthchecks"; 24 - version = "2.2.1"; 16 + version = "2.4.1"; 25 17 format = "other"; 26 18 27 19 src = fetchFromGitHub { 28 20 owner = "healthchecks"; 29 21 repo = pname; 30 22 rev = "v${version}"; 31 - sha256 = "sha256-C+NUvs5ijbj/l8G1sjSXvUJDNSOTVFAStfS5KtYFpUs="; 23 + sha256 = "sha256-K2zA0ZkAPMgm+IofNiCf+mVTF/RIoorTupWLOowT29g="; 32 24 }; 33 25 34 26 propagatedBuildInputs = with py.pkgs; [ 35 27 apprise 36 - cffi 37 28 cron-descriptor 38 29 cronsim 39 - cryptography 40 30 django 41 31 django-compressor 42 32 fido2 43 33 minio 44 34 psycopg2 45 - py 35 + pycurl 46 36 pyotp 47 - requests 48 37 segno 49 38 statsd 50 39 whitenoise
+2 -2
pkgs/tools/misc/hyfetch/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "HyFetch"; 5 - version = "1.4.1"; 5 + version = "1.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 repo = "hyfetch"; 9 9 owner = "hykilpikonna"; 10 10 rev = "refs/tags/${version}"; 11 - sha256 = "sha256-aVALjuFXg3ielDfxEDMTOtaPghsBg9+vKRbR3aDTalQ="; 11 + sha256 = "sha256-5TzIhbyrhQmuxR/Vs3XpOj/8FnykmBiDj6sXfFZK0uM="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+3 -4
pkgs/tools/networking/hysteria/default.nix
··· 4 4 }: 5 5 buildGoModule rec { 6 6 pname = "hysteria"; 7 - version = "1.2.1"; 7 + version = "1.2.2"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "HyNetwork"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-xL8xRVJdCyaP39TO+cJLAPbdc7WHxgBQMEyxkyhWlA8="; 13 + sha256 = "sha256-XAf835p2a7ThGgYL62pcEWqjp0rs/cRYfzTJsV6j2oA="; 14 14 }; 15 15 16 - vendorSha256 = "sha256-VCQHkkYmGU0ZPmTuYu2XFa5ezDJ3x7dZGN+Usmq4sOY="; 16 + vendorSha256 = "sha256-nVUS3KquKUSN/8OHPlcMK9gDJmrxvWS8nHYE7m6hZPQ="; 17 17 proxyVendor = true; 18 18 19 19 ldflags = [ 20 20 "-s" 21 21 "-w" 22 22 "-X main.appVersion=${version}" 23 - "-X main.appCommit=${version}" 24 23 ]; 25 24 26 25 postInstall = ''
+69
pkgs/tools/networking/xray/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , fetchurl 4 + , symlinkJoin 5 + , buildGoModule 6 + , runCommand 7 + , makeWrapper 8 + , nix-update-script 9 + , v2ray-geoip 10 + , v2ray-domain-list-community 11 + , assets ? [ v2ray-geoip v2ray-domain-list-community ] 12 + }: 13 + 14 + let 15 + assetsDrv = symlinkJoin { 16 + name = "v2ray-assets"; 17 + paths = assets; 18 + }; 19 + 20 + in 21 + buildGoModule rec { 22 + pname = "xray"; 23 + version = "1.6.1"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "XTLS"; 27 + repo = "Xray-core"; 28 + rev = "v${version}"; 29 + sha256 = "0g2bmy522lhip0rgb3hqyi3bidf4ljyjvvv3n1kb6lvm0p3br51b"; 30 + }; 31 + 32 + vendorSha256 = "sha256-QAF/05/5toP31a/l7mTIetFhXuAKsT69OI1K/gMXei0="; 33 + 34 + nativeBuildInputs = [ makeWrapper ]; 35 + 36 + doCheck = false; 37 + 38 + ldflags = [ "-s" "-w" "-buildid=" ]; 39 + subPackages = [ "main" ]; 40 + 41 + installPhase = '' 42 + runHook preInstall 43 + install -Dm555 "$GOPATH"/bin/main $out/bin/xray 44 + runHook postInstall 45 + ''; 46 + 47 + assetsDrv = symlinkJoin { 48 + name = "v2ray-assets"; 49 + paths = assets; 50 + }; 51 + 52 + postFixup = '' 53 + wrapProgram $out/bin/xray \ 54 + --suffix XRAY_LOCATION_ASSET : $assetsDrv/share/v2ray 55 + ''; 56 + 57 + passthru = { 58 + updateScript = nix-update-script { 59 + attrPath = pname; 60 + }; 61 + }; 62 + 63 + meta = { 64 + description = "A platform for building proxies to bypass network restrictions. A replacement for v2ray-core, with XTLS support and fully compatible configuration"; 65 + homepage = "https://github.com/XTLS/Xray-core"; 66 + license = with lib.licenses; [ mpl20 ]; 67 + maintainers = with lib.maintainers; [ iopq ]; 68 + }; 69 + }
+18 -5
pkgs/top-level/all-packages.nix
··· 12585 12585 12586 12586 xplr = callPackage ../applications/misc/xplr {}; 12587 12587 12588 + xray = callPackage ../tools/networking/xray { }; 12589 + 12588 12590 testdisk = libsForQt5.callPackage ../tools/system/testdisk { }; 12589 12591 12590 12592 testdisk-qt = testdisk.override { enableQt = true; }; ··· 13637 13639 13638 13640 fasmg = callPackage ../development/compilers/fasmg { }; 13639 13641 13642 + fbc = if stdenv.hostPlatform.isDarwin then 13643 + callPackage ../development/compilers/fbc/mac-bin.nix { } 13644 + else 13645 + callPackage ../development/compilers/fbc { }; 13646 + 13640 13647 filecheck = with python3Packages; toPythonApplication filecheck; 13641 13648 13642 13649 firrtl = callPackage ../development/compilers/firrtl { }; ··· 14985 14992 inherit (darwin.apple_sdk.frameworks) Security; 14986 14993 }; 14987 14994 cargo-insta = callPackage ../development/tools/rust/cargo-insta { }; 14995 + cargo-lambda = callPackage ../development/tools/rust/cargo-lambda { 14996 + inherit (darwin.apple_sdk.frameworks) Security; 14997 + }; 14988 14998 cargo-limit = callPackage ../development/tools/rust/cargo-limit { }; 14989 14999 cargo-make = callPackage ../development/tools/rust/cargo-make { 14990 15000 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; ··· 16431 16441 libbpf_0 = callPackage ../os-specific/linux/libbpf/0.x.nix { }; 16432 16442 # until more issues are fixed default to libbpf 0.x 16433 16443 libbpf = libbpf_0; 16444 + 16445 + bundlewrap = with python3.pkgs; toPythonApplication bundlewrap; 16434 16446 16435 16447 bpftools = callPackage ../os-specific/linux/bpftools { }; 16436 16448 ··· 32013 32025 # customConfig = builtins.readFile ./tabbed.config.h; 32014 32026 }; 32015 32027 32016 - # Use GHC 9.0 when this asserts starts to fire 32017 - taffybar = assert haskellPackages.taffybar.version == "3.3.0"; 32018 - callPackage ../applications/window-managers/taffybar { 32019 - inherit (haskell.packages.ghc810) ghcWithPackages taffybar; 32028 + taffybar = callPackage ../applications/window-managers/taffybar { 32029 + inherit (haskellPackages) ghcWithPackages taffybar; 32020 32030 }; 32021 32031 32022 32032 tagainijisho = libsForQt5.callPackage ../applications/office/tagainijisho {}; ··· 33526 33536 }; 33527 33537 33528 33538 zcash = callPackage ../applications/blockchains/zcash { 33529 - stdenv = if stdenv.isDarwin then stdenv else llvmPackages_13.stdenv; 33539 + inherit (darwin.apple_sdk.frameworks) Security; 33540 + stdenv = llvmPackages_14.stdenv; 33530 33541 }; 33531 33542 33532 33543 zecwallet-lite = callPackage ../applications/blockchains/zecwallet-lite { }; ··· 35706 35717 minisat = callPackage ../applications/science/logic/minisat {}; 35707 35718 35708 35719 monosat = callPackage ../applications/science/logic/monosat {}; 35720 + 35721 + nusmv = callPackage ../applications/science/logic/nusmv { }; 35709 35722 35710 35723 nuXmv = callPackage ../applications/science/logic/nuXmv {}; 35711 35724
+2
pkgs/top-level/python-packages.nix
··· 1446 1446 1447 1447 bunch = callPackage ../development/python-modules/bunch { }; 1448 1448 1449 + bundlewrap = callPackage ../development/python-modules/bundlewrap { }; 1450 + 1449 1451 bx-python = callPackage ../development/python-modules/bx-python { }; 1450 1452 1451 1453 bwapy = callPackage ../development/python-modules/bwapy { };
+3
pkgs/top-level/release-haskell.nix
··· 394 394 compilerNames.ghc902 395 395 compilerNames.ghc924 396 396 ]; 397 + purescript = [ 398 + compilerNames.ghc924 399 + ]; 397 400 purescript-cst = [ 398 401 compilerNames.ghc8107 399 402 ];