lol

Merge branch 'master' into staging-next

Conflicts:

pkgs/development/python-modules/dbt-core/default.nix
pkgs/development/python-modules/dbt-semantic-interfaces/default.nix

Still broken by pydantic 2 bump, though.

+1730 -1189
+4 -1
maintainers/scripts/haskell/update-stackage.sh
··· 7 7 # Stackage solver to use, LTS or Nightly 8 8 # (should be capitalized like the display name) 9 9 SOLVER=LTS 10 + # Stackage solver verson, if any. Use latest if empty 11 + VERSION=21 10 12 TMP_TEMPLATE=update-stackage.XXXXXXX 11 13 readonly SOLVER 14 + readonly VERSION 12 15 readonly TMP_TEMPLATE 13 16 14 17 toLower() { ··· 23 26 trap 'rm "${tmpfile}" "${tmpfile_new}"' 0 24 27 touch "$tmpfile" "$tmpfile_new" # Creating files here so that trap creates no errors. 25 28 26 - curl -L -s "https://stackage.org/$(toLower "$SOLVER")/cabal.config" >"$tmpfile" 29 + curl -L -s "https://stackage.org/$(toLower "$SOLVER")${VERSION:+-$VERSION}/cabal.config" >"$tmpfile" 27 30 old_version=$(grep '^# Stackage' $stackage_config | sed -e 's/.\+ \([A-Za-z]\+ [0-9.-]\+\)$/\1/g') 28 31 version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")" 29 32
+3
nixos/doc/manual/release-notes/rl-2405.section.md
··· 97 97 98 98 - `systemd.oomd.enableUserServices` is renamed to `systemd.oomd.enableUserSlices`. 99 99 100 + - `security.pam.enableSSHAgentAuth` now requires `services.openssh.authorizedKeysFiles` to be non-empty, 101 + which is the case when `services.openssh.enable` is true. Previously, `pam_ssh_agent_auth` silently failed to work. 102 + 100 103 ## Other Notable Changes {#sec-release-24.05-notable-changes} 101 104 102 105 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+7
nixos/modules/security/pam.nix
··· 1456 1456 `security.pam.zfs.enable` requires enabling ZFS (`boot.zfs.enabled` or `boot.zfs.enableUnstable`). 1457 1457 ''; 1458 1458 } 1459 + { 1460 + assertion = config.security.pam.enableSSHAgentAuth -> config.services.openssh.authorizedKeysFiles != []; 1461 + message = '' 1462 + `security.pam.enableSSHAgentAuth` requires `services.openssh.authorizedKeysFiles` to be a non-empty list. 1463 + Did you forget to set `services.openssh.enable` ? 1464 + ''; 1465 + } 1459 1466 ]; 1460 1467 1461 1468 environment.systemPackages =
+2 -1
nixos/tests/typesense.nix
··· 18 18 testScript = '' 19 19 machine.wait_for_unit("typesense.service") 20 20 machine.wait_for_open_port(${toString testPort}) 21 - assert machine.succeed("curl --fail http://localhost:${toString testPort}/health") == '{"ok":true}' 21 + # After waiting for the port, typesense still hasn't initialized the database, so wait until we can connect successfully 22 + assert machine.wait_until_succeeds("curl --fail http://localhost:${toString testPort}/health") == '{"ok":true}' 22 23 ''; 23 24 })
+2 -2
pkgs/applications/graphics/snapshot/default.nix
··· 18 18 19 19 stdenv.mkDerivation (finalAttrs: { 20 20 pname = "snapshot"; 21 - version = "45.1"; 21 + version = "45.2"; 22 22 23 23 src = fetchurl { 24 24 url = "mirror://gnome/sources/snapshot/${lib.versions.major finalAttrs.version}/snapshot-${finalAttrs.version}.tar.xz"; 25 - hash = "sha256-/kRifa7zrZbBaaLlRhDmZxj4k9cN/SXUDTBskYQ7zjk="; 25 + hash = "sha256-iQd4F/xzXMjonbUWKPUuqKxmwZTfxqekLgA8TCnE3T4="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/orca/default.nix
··· 34 34 35 35 buildPythonApplication rec { 36 36 pname = "orca"; 37 - version = "45.1"; 37 + version = "45.2"; 38 38 39 39 format = "other"; 40 40 41 41 src = fetchurl { 42 42 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 43 - sha256 = "v8wGv0vEe70CwVaNHkZL8Wox5iv3A7SaoTsI2zihqMo="; 43 + sha256 = "8PLFeaW+7f5WU7x/4kSBxNaqxd0fccHnoghZXzx473Y="; 44 44 }; 45 45 46 46 patches = [
+12 -4
pkgs/applications/networking/ftp/filezilla/default.nix
··· 11 11 , pugixml 12 12 , sqlite 13 13 , tinyxml 14 + , boost 14 15 , wrapGAppsHook 15 16 , wxGTK32 16 17 , gtk3 17 18 , xdg-utils 19 + , CoreServices 20 + , Security 18 21 }: 19 22 20 23 stdenv.mkDerivation rec { 21 24 pname = "filezilla"; 22 - version = "3.63.1"; 25 + version = "3.66.4"; 23 26 24 27 src = fetchurl { 25 - url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2"; 26 - hash = "sha256-TgtcD3n0+LykuiHnE7qXuG1bRcRyPeZ7nBDSO/QXo38="; 28 + url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.xz"; 29 + hash = "sha256-pA8E4C76rntQ0VFe4cNsSw5EWBhWbEUORAv9bHDpsgM="; 27 30 }; 28 31 29 32 configureFlags = [ ··· 34 37 nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ]; 35 38 36 39 buildInputs = [ 40 + boost 37 41 dbus 38 42 gettext 39 43 gnutls ··· 46 50 wxGTK32 47 51 gtk3 48 52 xdg-utils 49 - ]; 53 + ] ++ lib.optionals stdenv.isDarwin [ CoreServices Security ]; 54 + 55 + preBuild = lib.optionalString (stdenv.isDarwin) '' 56 + export MACOSX_DEPLOYMENT_TARGET=11.0 57 + ''; 50 58 51 59 enableParallelBuilding = true; 52 60
+2 -2
pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "evolution-ews"; 25 - version = "3.50.2"; 25 + version = "3.50.3"; 26 26 27 27 src = fetchurl { 28 28 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 29 - sha256 = "gYgjez2TGnOrire1c5/0Pqoky8mtjnK4I5KZ9pizHmY="; 29 + sha256 = "4vpZQTdq1X4H0mc/hnbDH38rBo1J9o6g+4uv6rtSm+0="; 30 30 }; 31 31 32 32 patches = [
+2 -2
pkgs/applications/office/fava/default.nix
··· 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "fava"; 5 - version = "1.26.4"; 5 + version = "1.27"; 6 6 format = "pyproject"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - hash = "sha256-kQXojI57NYZgu3qXjtOL/a48YnXhuA6FEazhJ7jntqk="; 10 + hash = "sha256-M2uE+/hYUP/l9l5zP/lHJsbMzfQ77cEJBFzbmX29gzM="; 11 11 }; 12 12 13 13 nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
+12 -1
pkgs/applications/video/mpv/scripts/buildLua.nix
··· 64 64 ''; 65 65 66 66 passthru = { inherit scriptName; }; 67 - meta.platforms = lib.platforms.all; 67 + meta = { 68 + platforms = lib.platforms.all; 69 + } // ( 70 + let pos = 71 + if (args.meta or {}) ? description then 72 + builtins.unsafeGetAttrPos "description" args.meta 73 + else 74 + builtins.unsafeGetAttrPos "pname" args; 75 + in lib.optionalAttrs 76 + (pos != null) 77 + { position = "${pos.file}:${toString pos.line}"; } 78 + ); 68 79 }) 69 80 ))
+2
pkgs/applications/video/mpv/scripts/chapterskip.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , unstableGitUpdater 3 4 , buildLua }: 4 5 5 6 buildLua { ··· 12 13 rev = "b26825316e3329882206ae78dc903ebc4613f039"; 13 14 hash = "sha256-OTrLQE3rYvPQamEX23D6HttNjx3vafWdTMxTiWpDy90="; 14 15 }; 16 + passthru.updateScript = unstableGitUpdater {}; 15 17 16 18 meta = { 17 19 description = "Automatically skips chapters based on title";
+11 -3
pkgs/applications/video/mpv/scripts/convert.nix
··· 1 - { lib, fetchgit, buildLua 2 - , yad, mkvtoolnix-cli, libnotify }: 1 + { lib 2 + , fetchgit 3 + , unstableGitUpdater 4 + 5 + , buildLua 6 + , libnotify 7 + , mkvtoolnix-cli 8 + , yad 9 + }: 3 10 4 11 buildLua { 5 12 pname = "mpv-convert-script"; 6 - version = "2016-03-18"; 13 + version = "unstable-2015-07-02"; 7 14 src = fetchgit { 8 15 url = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0"; 9 16 rev = "f95cee43e390e843a47e8ec9d1711a12a8cd343d"; 10 17 sha256 = "13m7l4sy2r8jv2sfrb3vvqvnim4a9ilnv28q5drlg09v298z3mck"; 11 18 }; 19 + passthru.updateScript = unstableGitUpdater {}; 12 20 13 21 patches = [ ./convert.patch ]; 14 22
+2 -1
pkgs/applications/video/mpv/scripts/cutter.nix
··· 1 - { lib, buildLua, fetchFromGitHub, makeWrapper }: 1 + { lib, buildLua, fetchFromGitHub, makeWrapper, unstableGitUpdater }: 2 2 3 3 buildLua { 4 4 pname = "video-cutter"; ··· 10 10 rev = "01a0396c075d5f8bbd1de5b571e6231f8899ab65"; 11 11 sha256 = "sha256-veoRFzUCRH8TrvR7x+WWoycpDyxqrJZ/bnp61dVc0pE="; 12 12 }; 13 + passthru.updateScript = unstableGitUpdater {}; 13 14 14 15 nativeBuildInputs = [ makeWrapper ]; 15 16
+2
pkgs/applications/video/mpv/scripts/default.nix
··· 72 72 mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { }; 73 73 mpv-webm = callPackage ./mpv-webm.nix { }; 74 74 mpvacious = callPackage ./mpvacious.nix { }; 75 + quack = callPackage ./quack.nix { }; 75 76 quality-menu = callPackage ./quality-menu.nix { }; 77 + reload = callPackage ./reload.nix { }; 76 78 simple-mpv-webui = callPackage ./simple-mpv-webui.nix { }; 77 79 sponsorblock = callPackage ./sponsorblock.nix { }; 78 80 sponsorblock-minimal = callPackage ./sponsorblock-minimal.nix { };
+4 -1
pkgs/applications/video/mpv/scripts/inhibit-gnome.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, dbus, mpv-unwrapped }: 1 + { lib, stdenv, fetchFromGitHub, gitUpdater, pkg-config, dbus, mpv-unwrapped }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mpv-inhibit-gnome"; ··· 9 9 repo = "mpv_inhibit_gnome"; 10 10 rev = "v${version}"; 11 11 hash = "sha256-LSGg5gAQE2JpepBqhz6D6d3NlqYaU4bjvYf1F+oLphQ="; 12 + }; 13 + passthru.updateScript = gitUpdater { 14 + rev-prefix = "v"; 12 15 }; 13 16 14 17 nativeBuildInputs = [ pkg-config ];
+2 -1
pkgs/applications/video/mpv/scripts/mpris.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, glib, mpv-unwrapped, ffmpeg }: 1 + { lib, stdenv, fetchFromGitHub, gitUpdater, pkg-config, glib, mpv-unwrapped, ffmpeg }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mpv-mpris"; ··· 10 10 rev = version; 11 11 hash = "sha256-vZIO6ILatIWa9nJYOp4AMKwvaZLahqYWRLMDOizyBI0="; 12 12 }; 13 + passthru.updateScript = gitUpdater {}; 13 14 14 15 nativeBuildInputs = [ pkg-config ]; 15 16
+2 -1
pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
··· 1 - { lib, buildLua, fetchFromGitHub, yt-dlp }: 1 + { lib, buildLua, fetchFromGitHub, unstableGitUpdater, yt-dlp }: 2 2 3 3 buildLua rec { 4 4 pname = "mpv-playlistmanager"; ··· 10 10 rev = "579490c7ae1becc129736b7632deec4f3fb90b99"; 11 11 hash = "sha256-swOtoB8UV/HPTpQRGXswAfUYsyC2Nj/QRIkGP8X1jk0="; 12 12 }; 13 + passthru.updateScript = unstableGitUpdater {}; 13 14 14 15 postPatch = '' 15 16 substituteInPlace playlistmanager.lua \
+2 -5
pkgs/applications/video/mpv/scripts/mpv-webm.nix
··· 2 2 , buildLua 3 3 , fetchFromGitHub 4 4 , luaPackages 5 - , nix-update-script 5 + , unstableGitUpdater 6 6 }: 7 7 8 8 buildLua { ··· 15 15 rev = "6b5863f68275b3dc91c2507284c039ec8a4cbd97"; 16 16 hash = "sha256-rJamBm6FyxWcJO7VXXOUTO9piWCkPfEVdqGKGeJ/h0c="; 17 17 }; 18 + passthru.updateScript = unstableGitUpdater {}; 18 19 19 20 dontBuild = false; 20 21 nativeBuildInputs = [ luaPackages.moonscript ]; 21 22 scriptPath = "build/webm.lua"; 22 - 23 - passthru.updateScript = nix-update-script { 24 - extraArgs = [ "--version=branch" ]; 25 - }; 26 23 27 24 meta = with lib; { 28 25 description = "Simple WebM maker for mpv, with no external dependencies";
+4
pkgs/applications/video/mpv/scripts/mpvacious.nix
··· 1 1 { lib 2 2 , buildLua 3 3 , fetchFromGitHub 4 + , gitUpdater 4 5 , curl 5 6 , wl-clipboard 6 7 , xclip ··· 15 16 repo = "mpvacious"; 16 17 rev = "v${version}"; 17 18 sha256 = "sha256-XTnib4cguWFEvZtmsLfkesbjFbkt2YoyYLT587ajyUM="; 19 + }; 20 + passthru.updateScript = gitUpdater { 21 + rev-prefix = "v"; 18 22 }; 19 23 20 24 postPatch = ''
+31
pkgs/applications/video/mpv/scripts/quack.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , unstableGitUpdater 4 + , buildLua }: 5 + 6 + buildLua rec { 7 + pname = "mpv-quack"; 8 + 9 + version = "unstable-2020-05-26"; 10 + src = fetchFromGitHub { 11 + owner = "CounterPillow"; 12 + repo = pname; 13 + rev = "1c87f36f9726d462dd112188c04be54d85692cf3"; 14 + hash = "sha256-dEnJbS8RJoAxpKINdoMHN4l7vpEdf7+C5JVWpK0VXMw="; 15 + }; 16 + passthru.updateScript = unstableGitUpdater {}; 17 + 18 + meta = { 19 + description = "Reduce audio volume after seeking"; 20 + longDescription = '' 21 + quack is an mpv script to temporarily reduce the volume after a seek, 22 + in order to avoid loud noises when scrubbing through a movie. 23 + 24 + The volume is linearly increased back up to its original level. 25 + Repeated seeks before the transition is done work as well. 26 + ''; 27 + homepage = "https://github.com/CounterPillow/quack"; 28 + license = lib.licenses.gpl3; 29 + maintainers = with lib.maintainers; [ nicoo ]; 30 + }; 31 + }
+4
pkgs/applications/video/mpv/scripts/quality-menu.nix
··· 1 1 { lib 2 2 , buildLua 3 3 , fetchFromGitHub 4 + , gitUpdater 4 5 , oscSupport ? false 5 6 }: 6 7 ··· 13 14 repo = "mpv-quality-menu"; 14 15 rev = "v${version}"; 15 16 hash = "sha256-yrcTxqpLnOI1Tq3khhflO3wzhyeTPuvKifyH5/P57Ns="; 17 + }; 18 + passthru.updateScript = gitUpdater { 19 + rev-prefix = "v"; 16 20 }; 17 21 18 22 extraScripts = lib.optional oscSupport "quality-menu-osc.lua";
+29
pkgs/applications/video/mpv/scripts/reload.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , unstableGitUpdater 4 + , buildLua }: 5 + 6 + buildLua rec { 7 + pname = "mpv-reload"; 8 + 9 + version = "unstable-2023-12-19"; 10 + src = fetchFromGitHub { 11 + owner = "4e6"; 12 + repo = pname; 13 + rev = "133d596f6d369f320b4595bbed1f4a157b7b9ee5"; 14 + hash = "sha256-B+4TCmf1T7MuwtbL+hGZoN1ktI31hnO5yayMG1zW8Ng="; 15 + }; 16 + passthru.updateScript = unstableGitUpdater {}; 17 + 18 + meta = { 19 + description = "Manual & automatic reloading of videos"; 20 + longDescription = '' 21 + This script adds reloading of videos, automatically on timers (when stuck 22 + buffering etc.) or manually on keybinds, to help with cases where a stream 23 + is not loading further due to a network or remote issue. 24 + ''; 25 + homepage = "https://github.com/4e6/mpv-reload"; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ nicoo ]; 28 + }; 29 + }
+6 -1
pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix
··· 1 1 { lib, buildLua 2 - , fetchFromGitHub }: 2 + , fetchFromGitHub 3 + , gitUpdater 4 + }: 3 5 buildLua rec { 4 6 pname = "simple-mpv-ui"; 5 7 version = "3.0.0"; ··· 10 12 rev = "v${version}"; 11 13 hash = "sha256-I8lwpo3Hfpy3UnPMmHEJCdArVQnNL245NkxsYVmnMF0="; 12 14 sparseCheckout = [ "main.lua" "webui-page" ]; 15 + }; 16 + passthru.updateScript = gitUpdater { 17 + rev-prefix = "v"; 13 18 }; 14 19 15 20 scriptPath = ".";
+2
pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix
··· 1 1 { lib 2 2 , buildLua 3 3 , fetchFromGitea 4 + , unstableGitUpdater 4 5 , curl 5 6 }: 6 7 ··· 16 17 rev = "ca2844b8cf7674bfccd282d389a50427742251d3"; 17 18 hash = "sha256-28HWZ6nOhKiE+5Ya1N3Vscd8aeH9OKS0t72e/xPfFQQ="; 18 19 }; 20 + passthru.updateScript = unstableGitUpdater {}; 19 21 20 22 preInstall = '' 21 23 substituteInPlace sponsorblock_minimal.lua \
+2 -1
pkgs/applications/video/mpv/scripts/thumbfast.nix
··· 1 - { lib, fetchFromGitHub, buildLua, mpv-unwrapped }: 1 + { lib, fetchFromGitHub, unstableGitUpdater, buildLua, mpv-unwrapped }: 2 2 3 3 buildLua { 4 4 pname = "mpv-thumbfast"; ··· 10 10 rev = "03e93feee5a85bf7c65db953ada41b4826e9f905"; 11 11 hash = "sha256-5u5WBvWOEydJrnr/vilEgW4+fxkxM6wNjb9Fyyxx/1c="; 12 12 }; 13 + passthru.updateScript = unstableGitUpdater {}; 13 14 14 15 passthru.extraWrapperArgs = [ 15 16 "--prefix" "PATH" ":" "${lib.getBin mpv-unwrapped}/bin"
+2 -1
pkgs/applications/video/mpv/scripts/thumbnail.nix
··· 1 - { lib, buildLua, fetchFromGitHub, python3 }: 1 + { lib, buildLua, fetchFromGitHub, gitUpdater, python3 }: 2 2 3 3 buildLua rec { 4 4 pname = "mpv-thumbnail-script"; ··· 10 10 rev = version; 11 11 sha256 = "sha256-J24Rou7BTE7zoiPlBkWuO9dtYJiuzkuwB4FROuzXzag="; 12 12 }; 13 + passthru.updateScript = gitUpdater {}; 13 14 14 15 nativeBuildInputs = [ python3 ]; 15 16 postPatch = "patchShebangs concat_files.py";
+2
pkgs/applications/video/mpv/scripts/uosc.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , fetchpatch 4 + , gitUpdater 4 5 , makeFontsConf 5 6 , buildLua 6 7 , buildGoModule ··· 17 18 rev = finalAttrs.version; 18 19 hash = "sha256-+4k8T1yX3IRXK3XkUShsuJSH9w1Zla7CaRENcIqX4iM="; 19 20 }; 21 + passthru.updateScript = gitUpdater {}; 20 22 21 23 tools = buildGoModule { 22 24 pname = "uosc-bin";
+2
pkgs/applications/video/mpv/scripts/visualizer.nix
··· 2 2 lib, 3 3 buildLua, 4 4 fetchFromGitHub, 5 + unstableGitUpdater, 5 6 }: 6 7 buildLua { 7 8 pname = "visualizer"; ··· 13 14 rev = "7dbbfb283508714b73ead2a57b6939da1d139bd3"; 14 15 sha256 = "zzB4uBc1M2Gdr/JKY2uk8MY0hmQl1XeomkfTzuM45oE="; 15 16 }; 17 + passthru.updateScript = unstableGitUpdater {}; 16 18 17 19 meta = with lib; { 18 20 description = "various audio visualization";
+4 -1
pkgs/applications/video/mpv/scripts/vr-reversal.nix
··· 1 - { lib, stdenvNoCC, fetchFromGitHub, ffmpeg }: 1 + { lib, stdenvNoCC, fetchFromGitHub, gitUpdater, ffmpeg }: 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "vr-reversal"; ··· 9 9 repo = pname; 10 10 rev = "v${version}"; 11 11 sha256 = "1wn2ngcvn7wcsl3kmj782x5q9130qw951lj6ilrkafp6q6zscpqr"; 12 + }; 13 + passthru.updateScript = gitUpdater { 14 + rev-prefix = "v"; 12 15 }; 13 16 14 17 dontBuild = true;
+4 -1
pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix
··· 1 - { lib, buildNpmPackage, fetchFromGitHub, nodejs, python3 }: 1 + { lib, buildNpmPackage, fetchFromGitHub, gitUpdater, nodejs, python3 }: 2 2 3 3 buildNpmPackage rec { 4 4 pname = "webtorrent-mpv-hook"; ··· 9 9 repo = pname; 10 10 rev = "v${version}"; 11 11 hash = "sha256-/dMtXcIyfAs++Zgz2CxRW0tkzn5QjS+WVGChlCyrU0U="; 12 + }; 13 + passthru.updateScript = gitUpdater { 14 + rev-prefix = "v"; 12 15 }; 13 16 14 17 postPatch = ''
+2 -2
pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "obs-text-pthread"; 13 - version = "2.0.2"; 13 + version = "2.0.3"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "norihiro"; 17 17 repo = "obs-text-pthread"; 18 18 rev = version; 19 - sha256 = "sha256-HN8tSagxmk6FusDrp7d0fi15ardFgUCZBiYkeBqUI34="; 19 + sha256 = "sha256-iwPoFbXkWzwE3smWJ+//ZUayD5OO/3iMSoYUTR3LVks="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake pkg-config ];
+3 -3
pkgs/by-name/br/bruno/package.nix
··· 17 17 18 18 buildNpmPackage rec { 19 19 pname = "bruno"; 20 - version = "1.5.1"; 20 + version = "1.6.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "usebruno"; 24 24 repo = "bruno"; 25 25 rev = "v${version}"; 26 - hash = "sha256-GgXnsPEUurPHrijf966x5ldp+1lDrgS1iBinU+EkdYU=b"; 26 + hash = "sha256-Vf4UHN13eE9W4rekOEGAWIP3x79cVH3vI9sxuIscv8c="; 27 27 28 28 postFetch = '' 29 29 ${lib.getExe npm-lockfile-fix} $out/package-lock.json 30 30 ''; 31 31 }; 32 32 33 - npmDepsHash = "sha256-R5dEL4QbwCSE9+HHCXlf/pYLmjCaD15tmdSSLbZgmt0="; 33 + npmDepsHash = "sha256-pfV9omdJiozJ9VotTImfM/DRsBPNGAEzmSdj3/C//4A="; 34 34 35 35 nativeBuildInputs = [ 36 36 (writeShellScriptBin "phantomjs" "echo 2.1.1")
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "6a46f981138e6d012bfcced5f1d2b309b5452766", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/6a46f981138e6d012bfcced5f1d2b309b5452766.tar.gz", 4 - "sha256": "1v297xyfv9nv1bji08gq8s6wrgmxjnhklvf6p0mvslyrj36w7mlj", 5 - "msg": "Update from Hackage at 2023-12-04T17:35:08Z" 2 + "commit": "d77837f979c4b15fe0eb25cdf8a0463773434c9d", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/d77837f979c4b15fe0eb25cdf8a0463773434c9d.tar.gz", 4 + "sha256": "01ihv1nwp0qqhwll5icl19ij5sb1nvhpnwgvwpcr319rn3b704km", 5 + "msg": "Update from Hackage at 2023-12-17T16:07:47Z" 6 6 }
+2 -2
pkgs/desktops/gnome/apps/gnome-maps/default.nix
··· 28 28 29 29 stdenv.mkDerivation (finalAttrs: { 30 30 pname = "gnome-maps"; 31 - version = "45.2"; 31 + version = "45.3"; 32 32 33 33 src = fetchurl { 34 34 url = "mirror://gnome/sources/gnome-maps/${lib.versions.major finalAttrs.version}/gnome-maps-${finalAttrs.version}.tar.xz"; 35 - hash = "sha256-6es3CnlxtPhC+qME0xpIXb2P+K7EKnZScvL8GnqAmPI="; 35 + hash = "sha256-Lxs6DZZC+MOwyyi3v1ZCgqwspdbE4MBe5gCy9EfxYCo="; 36 36 }; 37 37 38 38 doCheck = true;
+2 -2
pkgs/desktops/gnome/core/eog/default.nix
··· 31 31 32 32 stdenv.mkDerivation rec { 33 33 pname = "eog"; 34 - version = "45.1"; 34 + version = "45.2"; 35 35 36 36 outputs = [ "out" "dev" "devdoc" ]; 37 37 38 38 src = fetchurl { 39 39 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 40 - sha256 = "sha256-wX+GcExyKzbAGhaPHlFDm+C7J58sZkb0i2bp0POiTNI="; 40 + sha256 = "sha256-2UzDnYLIDO5ygbgqzkLIIll2rV0MPvmVx+Aw9rqyIZw="; 41 41 }; 42 42 43 43 patches = [
+2 -2
pkgs/desktops/gnome/core/epiphany/default.nix
··· 36 36 37 37 stdenv.mkDerivation rec { 38 38 pname = "epiphany"; 39 - version = "45.1"; 39 + version = "45.2"; 40 40 41 41 src = fetchurl { 42 42 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 43 - sha256 = "fJlO807NYOkV3jMe4SPAiTj5YjzvrabVC5njycWtgTU="; 43 + sha256 = "eccUYL/+/M715nvj+1/KZXhT6CFstiY5nSuVDOAyDdw="; 44 44 }; 45 45 46 46 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome/core/gnome-settings-daemon/default.nix
··· 40 40 41 41 stdenv.mkDerivation rec { 42 42 pname = "gnome-settings-daemon"; 43 - version = "45.0"; 43 + version = "45.1"; 44 44 45 45 src = fetchurl { 46 46 url = "mirror://gnome/sources/gnome-settings-daemon/${lib.versions.major version}/${pname}-${version}.tar.xz"; 47 - sha256 = "u03EaVDiqQ848jIlhIhW0qextxjInQKFzhl7cBa7Hcg="; 47 + sha256 = "xiv+yYF+7luD6+kBqShhiaZ+tf8DPF3UFQZXT4Ir8JA="; 48 48 }; 49 49 50 50 patches = [
+2 -2
pkgs/desktops/gnome/core/gnome-software/default.nix
··· 46 46 47 47 stdenv.mkDerivation rec { 48 48 pname = "gnome-software"; 49 - version = "45.2"; 49 + version = "45.3"; 50 50 51 51 src = fetchurl { 52 52 url = "mirror://gnome/sources/gnome-software/${lib.versions.major version}/${pname}-${version}.tar.xz"; 53 - sha256 = "C92PwMrs1usBPGAQ28qTB3OXEYpu9eryZOKoIKKS9bc="; 53 + sha256 = "1rkkWyIjfae9FzndKMI8yPODX5n6EMEDfZ3XY1M1JRw="; 54 54 }; 55 55 56 56 patches = [
+2 -2
pkgs/desktops/gnome/core/zenity/default.nix
··· 16 16 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "zenity"; 19 - version = "4.0.0"; 19 + version = "4.0.1"; 20 20 21 21 src = fetchurl { 22 22 url = "mirror://gnome/sources/zenity/${lib.versions.majorMinor finalAttrs.version}/zenity-${finalAttrs.version}.tar.xz"; 23 - sha256 = "C4yN7xjasFzEm9RkuQyn+UWuUv9eCSQtpwKhXZTT6N0="; 23 + sha256 = "DC9TeBOxD3KEcNnQXWyVcT2yUS+clQluHoWxpnOWBeY="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome/games/gnome-sudoku/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "gnome-sudoku"; 24 - version = "45.3"; 24 + version = "45.4"; 25 25 26 26 src = fetchurl { 27 27 url = "mirror://gnome/sources/gnome-sudoku/${lib.versions.major version}/${pname}-${version}.tar.xz"; 28 - sha256 = "27xURAbO54QRBBeOpKk742EH2dfsplVf0wGJzRQ41ko="; 28 + sha256 = "edNZV6oWj0pWPmAW+5dQs1hlJgEkEVg4CkxLebdAAZ0="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+1
pkgs/development/compilers/ghcjs/8.10/default.nix
··· 47 47 inherit (bootGhcjs) version; 48 48 isGhcjs = true; 49 49 50 + llvmPackages = null; 50 51 enableShared = true; 51 52 52 53 socket-io = pkgsHostHost.nodePackages."socket.io";
+3 -3
pkgs/development/haskell-modules/cabal2nix-unstable.nix
··· 8 8 }: 9 9 mkDerivation { 10 10 pname = "cabal2nix"; 11 - version = "unstable-2023-11-02"; 11 + version = "unstable-2024-01-04"; 12 12 src = fetchzip { 13 - url = "https://github.com/NixOS/cabal2nix/archive/2099a1f4594f621bb1a2879b793b860aefe4c027.tar.gz"; 14 - sha256 = "11j1lzjanhmdkqwnb7hni3wxiixl7fzxk6d633cn7ybr7b8wra9s"; 13 + url = "https://github.com/NixOS/cabal2nix/archive/e394e96c51cc7a2858145e710fbedbb2cb57f6ec.tar.gz"; 14 + sha256 = "0rzmyx2i2z3w2ibg4rbaasq0581sa7bf8n1cih6v3j6phzgl3058"; 15 15 }; 16 16 postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot"; 17 17 isLibrary = true;
+66 -32
pkgs/development/haskell-modules/configuration-common.nix
··· 92 92 guardian 93 93 ; 94 94 95 + # Extensions wants the latest version of Cabal for its list of Haskell 96 + # language extensions. 97 + extensions = super.extensions.override { 98 + Cabal = 99 + if versionOlder self.ghc.version "9.6" 100 + then self.Cabal_3_10_2_1 101 + else null; # use GHC bundled version 102 + }; 103 + 95 104 ####################################### 96 105 ### HASKELL-LANGUAGE-SERVER SECTION ### 97 106 ####################################### ··· 121 130 # For -f-auto see cabal.project in haskell-language-server. 122 131 ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex); 123 132 124 - # 2023-12-03: https://github.com/haskell/haskell-language-server/pull/3867 125 - hls-plugin-api = appendPatch (fetchpatch { 126 - url = "https://github.com/haskell/haskell-language-server/commit/1c884ea856cceeaa3254a2ef68c8ab3a3c353153.patch"; 127 - relative = "hls-plugin-api"; 128 - hash = "sha256-vlXPdEvmuIl+cM+u/GdHi8r72r4+Tqtsvx0CGbWEFCQ="; 129 - }) (doJailbreak super.hls-plugin-api); 130 - ghcide = appendPatch (fetchpatch { 131 - url = "https://github.com/haskell/haskell-language-server/commit/1c884ea856cceeaa3254a2ef68c8ab3a3c353153.patch"; 132 - relative = "ghcide"; 133 - hash = "sha256-1URXyQf88v3hjFGvNmcIjHxJ5vExH3iI92XktDrQs0U="; 134 - }) (doJailbreak super.ghcide); 135 133 hls-test-utils = doJailbreak super.hls-test-utils; 136 134 hls-alternate-number-format-plugin = doJailbreak super.hls-alternate-number-format-plugin; 137 135 hls-cabal-plugin = doJailbreak super.hls-cabal-plugin; ··· 148 146 # https://github.com/supki/ldap-client/issues/18 149 147 ldap-client-og = dontCheck super.ldap-client-og; 150 148 149 + # Support for template-haskell >= 2.16 150 + language-haskell-extract = appendPatch (pkgs.fetchpatch { 151 + url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch"; 152 + sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv"; 153 + }) (doJailbreak super.language-haskell-extract); 154 + 151 155 vector = overrideCabal (old: { 152 156 # Too strict bounds on doctest which isn't used, but is part of the configuration 153 157 jailbreak = true; ··· 188 192 189 193 # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149 190 194 orbits = dontCheck super.orbits; 195 + 196 + # Fixes the build if Cabal >= 3.10.2 is used for Setup.hs, as it got stricter 197 + # about c- vs. cxx-sources: https://github.com/haskell/double-conversion/issues/43 198 + double-conversion = overrideCabal (drv: { 199 + patches = drv.patches or [ ] ++ [ 200 + (pkgs.fetchpatch { 201 + name = "double-conversion-c-to-cxx-sources.patch"; 202 + url = "https://github.com/haskell/double-conversion/pull/44/commits/d480fb057c5387251b8cfdeb3666b24087811219.patch"; 203 + sha256 = "0jw2i2cybmv190bhab0afhz2v3zva2chazhmngh884fsq2p3j1cv"; 204 + }) 205 + ]; 206 + prePatch = drv.prePatch or "" + '' 207 + ${pkgs.buildPackages.dos2unix}/bin/dos2unix *.cabal 208 + ''; 209 + }) super.double-conversion; 191 210 192 211 # Allow aeson == 2.1.* 193 212 # https://github.com/hdgarrood/aeson-better-errors/issues/23 ··· 297 316 298 317 # Overriding the version pandoc dependency uses as the latest release has version bounds 299 318 # defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage. 300 - patat = super.patat.override { pandoc = self.pandoc_3_1_9; }; 319 + patat = super.patat.override { pandoc = self.pandoc_3_1_11; }; 301 320 302 321 # http2 also overridden in all-packages.nix for mailctl. 303 322 # twain is currently only used by mailctl, so the .overrideScope shouldn't ··· 1239 1258 1240 1259 # stack-2.13.1 requires a bunch of the latest packages. 1241 1260 (drv: drv.overrideScope (hfinal: hprev: { 1242 - ansi-terminal = hprev.ansi-terminal_1_0; # needs ansi-terminal >= 1.0 1243 - crypton = hprev.crypton_0_34; # needs crypton >= 0.33 1261 + ansi-terminal = hfinal.ansi-terminal_1_0; # needs ansi-terminal >= 1.0 1262 + crypton = hfinal.crypton_0_34; # needs crypton >= 0.33 1244 1263 hedgehog = doJailbreak hprev.hedgehog; # has too strict version bound for ansi-terminal 1245 - hpack = hprev.hpack_0_36_0; # needs hpack == 0.36.0 1246 - http-client-tls = hprev.http-client-tls_0_3_6_3; # needs http-client-tls >= 0.3.6.2 1247 - http-download = dontCheck hprev.http-download_0_2_1_0; # needs http-download >= 0.2.1.0, tests access network 1248 - optparse-applicative = hprev.optparse-applicative_0_18_1_0; # needs optparse-applicative >= 0.18.1.0 1249 - pantry = dontCheck hprev.pantry_0_9_3; # needs pantry >= 0.9.2, tests access network 1264 + hpack = hfinal.hpack_0_36_0; # needs hpack == 0.36.0 1265 + http-client-tls = hfinal.http-client-tls_0_3_6_3; # needs http-client-tls >= 0.3.6.2 1266 + http-download = hfinal.http-download_0_2_1_0; # needs http-download >= 0.2.1.0 1267 + optparse-applicative = hfinal.optparse-applicative_0_18_1_0; # needs optparse-applicative >= 0.18.1.0 1268 + pantry = hfinal.pantry_0_9_3_1; # needs pantry >= 0.9.2 1250 1269 syb = dontCheck hprev.syb; # cyclic dependencies 1251 - tar-conduit = hprev.tar-conduit_0_4_0; # pantry needs tar-conduit >= 0.4.0 1270 + tar-conduit = hfinal.tar-conduit_0_4_0; # pantry needs tar-conduit >= 0.4.0 1252 1271 temporary = dontCheck hprev.temporary; # cyclic dependencies 1253 1272 })) 1254 1273 ]; 1255 1274 1256 1275 hopenpgp-tools = super.hopenpgp-tools.override { 1257 - optparse-applicative = self.optparse-applicative_0_18_1_0; 1276 + optparse-applicative = self.optparse-applicative_0_18_1_0; 1258 1277 }; 1259 1278 1260 1279 # musl fixes ··· 1938 1957 inherit (let 1939 1958 pandoc-cli-overlay = self: super: { 1940 1959 # pandoc-cli requires pandoc >= 3.1 1941 - pandoc = self.pandoc_3_1_9; 1960 + pandoc = self.pandoc_3_1_11; 1942 1961 1943 1962 # pandoc depends on http-client-tls, which only starts depending 1944 1963 # on crypton-connection in http-client-tls-0.3.6.2. ··· 1947 1966 # pandoc depends on skylighting >= 0.14 1948 1967 skylighting = self.skylighting_0_14_1; 1949 1968 skylighting-core = self.skylighting-core_0_14_1; 1969 + 1970 + # pandoc needs up to date typst 1971 + typst-symbols = self.typst-symbols_0_1_5; 1972 + # and texmath to match 1973 + texmath = self.texmath_0_12_8_6; 1950 1974 }; 1951 1975 in { 1952 1976 pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay; 1953 - pandoc_3_1_9 = doDistribute (super.pandoc_3_1_9.overrideScope pandoc-cli-overlay); 1977 + pandoc_3_1_11 = doDistribute (super.pandoc_3_1_11.overrideScope pandoc-cli-overlay); 1954 1978 pandoc-lua-engine = super.pandoc-lua-engine.overrideScope pandoc-cli-overlay; 1955 1979 }) 1956 1980 pandoc-cli 1957 - pandoc_3_1_9 1981 + pandoc_3_1_11 1958 1982 pandoc-lua-engine 1959 1983 ; 1960 1984 1985 + # Doesn't work without typst-symbols >= 0.1.5 which conflicts with Stackage 1986 + # TODO(@sternenseemann): clean up with Stackage LTS 22 1987 + typst = dontDistribute super.typst; 1988 + 1961 1989 crypton-x509 = 1962 1990 lib.pipe 1963 1991 super.crypton-x509 ··· 2716 2744 2717 2745 # 2023-12-20: Needs newer hasql-pool package and extra dependencies 2718 2746 postgrest = lib.pipe (super.postgrest.overrideScope (lself: lsuper: { 2719 - hasql-pool = lself.hasql-pool_0_10; 2747 + hasql-pool = lself.hasql-pool_0_10_0_1; 2720 2748 })) [ 2721 2749 (addBuildDepends [ self.extra self.fuzzyset_0_2_4 self.cache self.timeit ]) 2722 2750 # 2022-12-02: Too strict bounds: https://github.com/PostgREST/postgrest/issues/2580 ··· 2762 2790 # 2023-03-05: restrictive bounds on base https://github.com/diagrams/diagrams-gtk/issues/11 2763 2791 diagrams-gtk = doJailbreak super.diagrams-gtk; 2764 2792 2765 - # 2023-03-13: restrictive bounds on validation-selective (>=0.1.0 && <0.2). 2766 - # Get rid of this in the next release: https://github.com/kowainik/tomland/commit/37f16460a6dfe4606d48b8b86c13635d409442cd 2767 - tomland = doJailbreak super.tomland; 2768 - 2769 - llvm-ffi = super.llvm-ffi.override { 2770 - LLVM = pkgs.llvmPackages_13.libllvm; 2771 - }; 2793 + tomland = overrideCabal (drv: { 2794 + # 2023-03-13: restrictive bounds on validation-selective (>=0.1.0 && <0.2). 2795 + # Get rid of this in the next release: https://github.com/kowainik/tomland/commit/37f16460a6dfe4606d48b8b86c13635d409442cd 2796 + jailbreak = true; 2797 + # Fix compilation of test suite with GHC >= 9.8 2798 + patches = drv.patches or [ ] ++ [ 2799 + (pkgs.fetchpatch { 2800 + name = "tomland-disambiguate-string-type-for-ghc-9.8.patch"; 2801 + url = "https://github.com/kowainik/tomland/commit/0f107269b8835a8253f618b75930b11d3a3f1337.patch"; 2802 + sha256 = "13ndlfw32xh8jz5g6lpxzn2ks8zchb3y4j1jbbm2x279pdyvvars"; 2803 + }) 2804 + ]; 2805 + }) super.tomland; 2772 2806 2773 2807 # libfuse3 fails to mount fuse file systems within the build environment 2774 2808 libfuse3 = dontCheck super.libfuse3;
+5 -8
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 8 8 9 9 self: super: { 10 10 11 - llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 11 + # ghcjs does not use `llvmPackages` and exposes `null` attribute. 12 + llvmPackages = 13 + if self.ghc.llvmPackages != null 14 + then pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages 15 + else null; 12 16 13 17 # Disable GHC 8.10.x core libraries. 14 18 array = null; ··· 84 88 setlocale = doJailbreak super.setlocale; 85 89 shellmet = doJailbreak super.shellmet; 86 90 shower = doJailbreak super.shower; 87 - 88 - # Apply patch from https://github.com/finnsson/template-helper/issues/12#issuecomment-611795375 to fix the build. 89 - language-haskell-extract = appendPatch (pkgs.fetchpatch { 90 - name = "language-haskell-extract-0.2.4.patch"; 91 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/e48738ee1be774507887a90a0d67ad1319456afc/patches/language-haskell-extract-0.2.4.patch?inline=false"; 92 - sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f"; 93 - }) (doJailbreak super.language-haskell-extract); 94 91 95 92 # hnix 0.9.0 does not provide an executable for ghc < 8.10, so define completions here for now. 96 93 hnix = self.generateOptparseApplicativeCompletions [ "hnix" ]
+1 -1
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
··· 95 95 ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser super.ghc-lib-parser-ex; 96 96 97 97 # This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore. 98 - exceptions = null; 98 + exceptions = self.exceptions_0_10_7; 99 99 100 100 # Older compilers need the latest ghc-lib to build this package. 101 101 hls-hlint-plugin = addBuildDepend self.ghc-lib super.hls-hlint-plugin;
+2 -43
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 68 68 tuple = addBuildDepend self.base-orphans super.tuple; 69 69 vector-th-unbox = doJailbreak super.vector-th-unbox; 70 70 71 - hls-cabal-plugin = super.hls-cabal-plugin.override { 72 - Cabal-syntax = self.Cabal-syntax_3_8_1_0; 73 - }; 74 - 75 71 ormolu = self.ormolu_0_5_2_0.override { 76 72 Cabal-syntax = self.Cabal-syntax_3_8_1_0; 77 73 }; ··· 79 75 stylish-haskell = doJailbreak super.stylish-haskell_0_14_4_0; 80 76 81 77 doctest = dontCheck super.doctest; 82 - # Apply patches from head.hackage. 83 - language-haskell-extract = appendPatch (pkgs.fetchpatch { 84 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch"; 85 - sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f"; 86 - }) (doJailbreak super.language-haskell-extract); 87 78 88 - haskell-language-server = let 89 - # These aren't included in hackage-packages.nix because hackage2nix is configured for GHC 9.2, under which these plugins aren't supported. 90 - # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope` 91 - additionalDeps = with self.haskell-language-server.scope; [ 92 - (unmarkBroken hls-splice-plugin) 93 - ]; 94 - in addBuildDepends additionalDeps (disableCabalFlag "fourmolu" (super.haskell-language-server.overrideScope (lself: lsuper: { 95 - # Needed for modern ormolu and fourmolu. 96 - # Apply this here and not in common, because other ghc versions offer different Cabal versions. 97 - Cabal = lself.Cabal_3_6_3_0; 98 - hls-overloaded-record-dot-plugin = null; 99 - hls-fourmolu-plugin = null; 100 - }))); 79 + haskell-language-server = throw "haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version"; 101 80 102 81 # Needs to use ghc-lib due to incompatible GHC 103 - ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_5); 104 - 105 - # This package is marked as unbuildable on GHC 9.2, so hackage2nix doesn't include any dependencies. 106 - # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope` 107 - hls-haddock-comments-plugin = unmarkBroken (addBuildDepends (with self.hls-haddock-comments-plugin.scope; [ 108 - ghc-exactprint ghcide hls-plugin-api hls-refactor-plugin lsp-types unordered-containers 109 - ]) super.hls-haddock-comments-plugin); 110 - 111 - hls-tactics-plugin = unmarkBroken (addBuildDepends (with self.hls-tactics-plugin.scope; [ 112 - aeson extra fingertree generic-lens ghc-exactprint ghc-source-gen ghcide 113 - hls-graph hls-plugin-api hls-refactor-plugin hyphenation lens lsp megaparsec 114 - parser-combinators prettyprinter refinery retrie syb unagi-chan unordered-containers 115 - ]) super.hls-tactics-plugin); 82 + ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_6); 116 83 117 84 # Test suite sometimes segfaults with GHC 9.0.1 and 9.0.2 118 85 # https://github.com/ekmett/reflection/issues/51 ··· 129 96 hiedb = overrideCabal (old: { 130 97 libraryHaskellDepends = old.libraryHaskellDepends ++ [self.ghc-api-compat]; 131 98 }) super.hiedb; 132 - 133 - # 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2206 134 - # Restrictive upper bound on ormolu 135 - hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin; 136 99 137 100 # https://github.com/lspitzner/butcher/issues/7 138 101 butcher = doJailbreak super.butcher; ··· 161 124 retrie = dontCheck self.retrie_1_1_0_0; 162 125 163 126 apply-refact = self.apply-refact_0_9_3_0; 164 - 165 - hls-hlint-plugin = super.hls-hlint-plugin.override { 166 - inherit (self) apply-refact; 167 - }; 168 127 169 128 # Needs OneTuple for ghc < 9.2 170 129 binary-orphans = addBuildDepends [ self.OneTuple ] super.binary-orphans;
+8 -9
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 57 57 58 58 # weeder >= 2.5 requires GHC 9.4 59 59 weeder = doDistribute self.weeder_2_4_1; 60 - weeder_2_4_1 = super.weeder_2_4_1.override { 60 + # Allow dhall 1.42.* 61 + weeder_2_4_1 = doJailbreak (super.weeder_2_4_1.override { 61 62 # weeder < 2.6 only supports algebraic-graphs < 0.7 62 63 # We no longer have matching test deps for algebraic-graphs 0.6.1 in the set 63 64 algebraic-graphs = dontCheck self.algebraic-graphs_0_6_1; 64 - }; 65 + }); 65 66 66 67 hls-cabal-plugin = super.hls-cabal-plugin.override { 67 68 Cabal-syntax = self.Cabal-syntax_3_8_1_0; ··· 73 74 74 75 stylish-haskell = doJailbreak super.stylish-haskell_0_14_4_0; 75 76 76 - haskell-language-server = disableCabalFlag "fourmolu" (super.haskell-language-server.override { hls-fourmolu-plugin = null; }); 77 + haskell-language-server = disableCabalFlag "fourmolu" (super.haskell-language-server.override { 78 + hls-fourmolu-plugin = null; 79 + # Not buildable if GHC > 9.2.3, so we ship no compatible GHC 80 + hls-stan-plugin = null; 81 + }); 77 82 # For GHC < 9.4, some packages need data-array-byte as an extra dependency 78 83 hashable = addBuildDepends [ self.data-array-byte ] super.hashable; 79 84 primitive = addBuildDepends [ self.data-array-byte ] super.primitive; ··· 85 90 # https://github.com/haskell-infra/hackage-trustees/issues/347 86 91 # https://mail.haskell.org/pipermail/haskell-cafe/2022-October/135613.html 87 92 language-javascript_0_7_0_0 = dontCheck super.language-javascript_0_7_0_0; 88 - 89 - # Apply patches from head.hackage. 90 - language-haskell-extract = appendPatch (pkgs.fetchpatch { 91 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch"; 92 - sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv"; 93 - }) (doJailbreak super.language-haskell-extract); 94 93 95 94 # Tests depend on `parseTime` which is no longer available 96 95 hourglass = dontCheck super.hourglass;
+1 -9
pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
··· 76 76 ] ++ drv.testFlags or []; 77 77 }) (doJailbreak super.hpack); 78 78 79 - # Apply patches from head.hackage. 80 - language-haskell-extract = appendPatch (pkgs.fetchpatch { 81 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch"; 82 - sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv"; 83 - }) (doJailbreak super.language-haskell-extract); 84 - 85 79 # Tests depend on `parseTime` which is no longer available 86 80 hourglass = dontCheck super.hourglass; 87 81 ··· 122 116 in 123 117 lib.mapAttrs (_: pkg: doDistribute (pkg.overrideScope hls_overlay)) { 124 118 haskell-language-server = allowInconsistentDependencies super.haskell-language-server; 125 - # Tests fail due to the newly-build fourmolu not being in PATH 126 - # https://github.com/fourmolu/fourmolu/issues/231 127 - fourmolu = dontCheck super.fourmolu_0_14_0_0; 119 + fourmolu = self.fourmolu_0_14_0_0; 128 120 ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] (enableSeparateBinOutput super.ormolu_0_7_2_0); 129 121 hlint = super.hlint_3_6_1; 130 122 stylish-haskell = super.stylish-haskell;
+3 -11
pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
··· 95 95 ghc-lib-parser = doDistribute self.ghc-lib-parser_9_6_3_20231121; 96 96 ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_2; 97 97 98 - # Tests fail due to the newly-build fourmolu not being in PATH 99 - # https://github.com/fourmolu/fourmolu/issues/231 100 - fourmolu = dontCheck super.fourmolu_0_14_0_0; 98 + fourmolu = doDistribute self.fourmolu_0_14_0_0; 101 99 ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] (enableSeparateBinOutput super.ormolu_0_7_2_0); 102 100 hlint = super.hlint_3_6_1; 103 101 ··· 143 141 # https://github.com/dreixel/syb/issues/40 144 142 syb = dontCheck super.syb; 145 143 146 - # Support for template-haskell >= 2.16 147 - language-haskell-extract = appendPatch (pkgs.fetchpatch { 148 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch"; 149 - sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv"; 150 - }) (doJailbreak super.language-haskell-extract); 151 - 152 144 # Patch 0.17.1 for support of mtl-2.3 153 145 xmonad-contrib = appendPatch 154 146 (pkgs.fetchpatch { ··· 197 189 hw-prim = dontCheck (doJailbreak super.hw-prim); 198 190 stm-containers = dontCheck super.stm-containers; 199 191 regex-tdfa = dontCheck super.regex-tdfa; 200 - rebase = doJailbreak super.rebase_1_20_1_1; 201 - rerebase = doJailbreak super.rerebase_1_20_1_1; 192 + rebase = doJailbreak super.rebase_1_20_2; 193 + rerebase = doJailbreak super.rerebase_1_20_2; 202 194 hiedb = dontCheck super.hiedb; 203 195 retrie = dontCheck super.retrie; 204 196 # https://github.com/kowainik/relude/issues/436
+64 -20
pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
··· 49 49 unix = null; 50 50 xhtml = null; 51 51 52 - # https://github.com/tibbe/unordered-containers/issues/214 53 - unordered-containers = dontCheck super.unordered-containers; 52 + # HLS 53 + # https://haskell-language-server.readthedocs.io/en/latest/support/plugin-support.html 54 + haskell-language-server = super.haskell-language-server.override { 55 + hls-class-plugin = null; 56 + hls-floskell-plugin = null; 57 + hls-fourmolu-plugin = null; 58 + hls-gadt-plugin = null; 59 + hls-hlint-plugin = null; 60 + hls-ormolu-plugin = null; 61 + hls-refactor-plugin = null; 62 + hls-rename-plugin = null; 63 + hls-retrie-plugin = null; 64 + hls-splice-plugin = null; 65 + hls-stylish-haskell-plugin = null; 66 + }; 54 67 55 - # Test suite does not compile. 56 - data-clist = doJailbreak super.data-clist; # won't cope with QuickCheck 2.12.x 57 - dates = doJailbreak super.dates; # base >=4.9 && <4.12 58 - Diff = dontCheck super.Diff; 59 - HaTeX = doJailbreak super.HaTeX; # containers >=0.4 && <0.6 is too tight; https://github.com/Daniel-Diaz/HaTeX/issues/126 60 - hpc-coveralls = doJailbreak super.hpc-coveralls; # https://github.com/guillaume-nargeot/hpc-coveralls/issues/82 61 - http-api-data = doJailbreak super.http-api-data; 62 - persistent-sqlite = dontCheck super.persistent-sqlite; 63 - system-fileio = dontCheck super.system-fileio; # avoid dependency on broken "patience" 64 - unicode-transforms = dontCheck super.unicode-transforms; 65 - wl-pprint-extras = doJailbreak super.wl-pprint-extras; # containers >=0.4 && <0.6 is too tight; https://github.com/ekmett/wl-pprint-extras/issues/17 66 - RSA = dontCheck super.RSA; # https://github.com/GaloisInc/RSA/issues/14 67 - github = dontCheck super.github; # hspec upper bound exceeded; https://github.com/phadej/github/pull/341 68 - binary-orphans = dontCheck super.binary-orphans; # tasty upper bound exceeded; https://github.com/phadej/binary-orphans/commit/8ce857226595dd520236ff4c51fa1a45d8387b33 68 + # Version upgrades 69 + alex = doDistribute self.alex_3_4_0_1; 70 + some = doDistribute self.some_1_0_6; 71 + tagged = doDistribute self.tagged_0_8_8; 72 + th-abstraction = doDistribute self.th-abstraction_0_6_0_0; 73 + hspec-core = doDistribute self.hspec-core_2_11_7; 74 + hspec-meta = doDistribute self.hspec-meta_2_11_7; 75 + hspec-discover = doDistribute self.hspec-discover_2_11_7; 76 + hspec = doDistribute self.hspec_2_11_7; 77 + hspec-expectations = doDistribute self.hspec-expectations_0_8_4; 78 + bifunctors = doDistribute self.bifunctors_5_6_1; 79 + free = doDistribute self.free_5_2; 80 + semigroupoids = doDistribute self.semigroupoids_6_0_0_1; 81 + doctest = doDistribute self.doctest_0_22_2; 82 + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_8_1_20231121; 83 + ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_8_0_0; 84 + ghc-lib = doDistribute self.ghc-lib_9_8_1_20231121; 85 + megaparsec = doDistribute self.megaparsec_9_6_1; 86 + tasty-hspec = doDistribute self.tasty-hspec_1_2_0_4; 87 + hedgehog = doDistribute self.hedgehog_1_4; 88 + rebase = doDistribute self.rebase_1_20_2; 89 + rerebase = doDistribute self.rerebase_1_20_2; 90 + aeson = doDistribute self.aeson_2_2_1_0; 91 + aeson-pretty = doDistribute self.aeson-pretty_0_8_10; 92 + attoparsec-aeson = doDistribute self.attoparsec-aeson_2_2_0_1; 93 + ormolu = doDistribute self.ormolu_0_7_3_0; 94 + fourmolu = doDistribute (dontCheck self.fourmolu_0_14_1_0); 69 95 70 - # https://github.com/jgm/skylighting/issues/55 71 - skylighting-core = dontCheck super.skylighting-core; 96 + # Jailbreaks 97 + commutative-semigroups = doJailbreak super.commutative-semigroups; # base < 4.19 98 + ghc-trace-events = doJailbreak super.ghc-trace-events; # text < 2.1, bytestring < 0.12, base < 4.19 99 + primitive-unlifted = doJailbreak super.primitive-unlifted; # bytestring < 0.12 100 + newtype-generics = doJailbreak super.newtype-generics; # base < 4.19 101 + hw-prim = doJailbreak super.hw-prim; # doctest < 0.22, ghc-prim < 0.11, hedgehog < 1.4 102 + hw-fingertree = doJailbreak super.hw-fingertree; # deepseq <1.5, doctest < 0.22, hedgehog < 1.4 103 + # Too strict bound on base, believe it or not. 104 + # https://github.com/judah/terminfo/pull/55#issuecomment-1876894232 105 + terminfo_0_4_1_6 = doJailbreak super.terminfo_0_4_1_6; 72 106 73 - # Break out of "yaml >=0.10.4.0 && <0.11": https://github.com/commercialhaskell/stack/issues/4485 74 - stack = doJailbreak super.stack; 107 + # Test suite issues 108 + unordered-containers = dontCheck super.unordered-containers; # ChasingBottoms doesn't support base 4.20 109 + lifted-base = dontCheck super.lifted-base; # doesn't compile with transformers == 0.6.* 110 + # https://github.com/wz1000/HieDb/issues/64 111 + hiedb = overrideCabal (drv: { 112 + testFlags = drv.testFlags or [ ] ++ [ 113 + "--match" "!/hiedb/Command line/point-info/correctly prints type signatures/" 114 + ]; 115 + }) super.hiedb; 116 + 117 + # Unbroken due to hspec* upgrades 118 + hspec-api = doDistribute (unmarkBroken super.hspec-api); 75 119 }
+1 -1
pkgs/development/haskell-modules/configuration-ghcjs.nix
··· 26 26 27 27 # GHCJS does not ship with the same core packages as GHC. 28 28 # https://github.com/ghcjs/ghcjs/issues/676 29 - stm = doJailbreak self.stm_2_5_1_0; 29 + stm = doJailbreak self.stm_2_5_3_0; 30 30 exceptions = dontCheck self.exceptions_0_10_7; 31 31 32 32 ## OTHER PACKAGES
+15 -7
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 49 49 - acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02 50 50 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 51 51 - acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02 52 + - acquire # failure in job https://hydra.nixos.org/build/245695655 at 2024-01-07 52 53 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 53 54 - ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13 54 55 - activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02 ··· 81 82 - aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02 82 83 - aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02 83 84 - aeson-gadt-th # failure in job https://hydra.nixos.org/build/233247060 at 2023-09-02 85 + - aeson-generics-typescript # failure in job https://hydra.nixos.org/build/245703304 at 2024-01-07 84 86 - aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02 85 87 - aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02 86 88 - aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02 ··· 548 550 - bytepatch # failure in job https://hydra.nixos.org/build/236678340 at 2023-10-04 549 551 - bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02 550 552 - bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02 551 - - bytestring-conversion # failure in job https://hydra.nixos.org/build/233211464 at 2023-09-02 552 553 - bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02 553 554 - bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02 554 555 - bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02 ··· 613 614 - cacophony # failure in job https://hydra.nixos.org/build/233239380 at 2023-09-02 614 615 - cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02 615 616 - cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02 616 - - cairo-image # failure in job https://hydra.nixos.org/build/243813080 at 2024-01-01 617 617 - cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02 618 618 - cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02 619 619 - calamity # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/238601583 at 2023-10-21 ··· 828 828 - Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02 829 829 - Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02 830 830 - commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02 831 + - commonmark-simple # failure in job https://hydra.nixos.org/build/245703574 at 2024-01-07 831 832 - Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02 832 833 - compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02 833 834 - compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02 ··· 848 849 - compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02 849 850 - composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02 850 851 - composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02 852 + - composite-base # failure in job https://hydra.nixos.org/build/245710306 at 2024-01-07 851 853 - composite-cassava # failure in job https://hydra.nixos.org/build/233241110 at 2023-09-02 852 854 - composite-dhall # failure in job https://hydra.nixos.org/build/244399630 at 2024-01-01 853 855 - composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02 ··· 1151 1153 - deepseq-magic # failure in job https://hydra.nixos.org/build/233228993 at 2023-09-02 1152 1154 - deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02 1153 1155 - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02 1156 + - defun-bool # failure in job https://hydra.nixos.org/build/245696015 at 2024-01-07 1154 1157 - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02 1155 1158 - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02 1156 1159 - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02 ··· 1513 1516 - extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02 1514 1517 - extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02 1515 1518 - extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02 1516 - - extensions # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239249292 at 2023-11-10 1517 1519 - external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02 1518 1520 - extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02 1519 1521 - extism-pdk # failure in job https://hydra.nixos.org/build/237239071 at 2023-10-21 ··· 2268 2270 - hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02 2269 2271 - hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02 2270 2272 - hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02 2273 + - hcount # failure in job https://hydra.nixos.org/build/245788445 at 2024-01-07 2271 2274 - hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02 2272 2275 - hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02 2273 2276 - hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02 ··· 2439 2442 - hls-haddock-comments-plugin # failure in job https://hydra.nixos.org/build/233233944 at 2023-09-02 2440 2443 - hls-refine-imports-plugin # failure in job https://hydra.nixos.org/build/233211155 at 2023-09-02 2441 2444 - hls-selection-range-plugin # failure in job https://hydra.nixos.org/build/233205582 at 2023-09-02 2442 - - hls-stan-plugin # failure in job https://hydra.nixos.org/build/233246900 at 2023-09-02 2443 2445 - hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02 2444 2446 - hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02 2445 2447 - hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02 ··· 2900 2902 - ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02 2901 2903 - iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02 2902 2904 - IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02 2903 - - ircbot # failure in job https://hydra.nixos.org/build/233237219 at 2023-09-02 2904 2905 - irc-core # failure in job https://hydra.nixos.org/build/233242138 at 2023-09-02 2905 2906 - irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02 2906 2907 - Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02 ··· 3249 3250 - linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02 3250 3251 - linked-list-with-iterator # failure in job https://hydra.nixos.org/build/233220466 at 2023-09-02 3251 3252 - linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02 3253 + - linnet # failure in job https://hydra.nixos.org/build/245788523 at 2024-01-07 3252 3254 - linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02 3253 3255 - linode-v4 # failure in job https://hydra.nixos.org/build/233238195 at 2023-09-02 3254 3256 - linux-blkid # failure in job https://hydra.nixos.org/build/233220151 at 2023-09-02 ··· 3281 3283 - ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02 3282 3284 - llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02 3283 3285 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 3284 - - llvm-ffi # failure in job https://hydra.nixos.org/build/237230725 at 2023-10-21 3285 3286 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 3286 3287 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 3287 3288 - llvm-ht # failure in job https://hydra.nixos.org/build/233203770 at 2023-09-02 ··· 3983 3984 - padic # failure in job https://hydra.nixos.org/build/233244747 at 2023-09-02 3984 3985 - pads-haskell # failure in job https://hydra.nixos.org/build/233224030 at 2023-09-02 3985 3986 - pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02 3987 + - pagerduty # failure in job https://hydra.nixos.org/build/245788462 at 2024-01-07 3986 3988 - pagerduty-hs # failure in job https://hydra.nixos.org/build/233220387 at 2023-09-02 3987 3989 - pagure-hook-receiver # failure in job https://hydra.nixos.org/build/233245894 at 2023-09-02 3988 3990 - PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02 ··· 4680 4682 - resource-effect # failure in job https://hydra.nixos.org/build/233253816 at 2023-09-02 4681 4683 - resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02 4682 4684 - resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02 4685 + - resourcet-extra # failure in job https://hydra.nixos.org/build/245696134 at 2024-01-07 4683 4686 - resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02 4684 4687 - restartable # failure in job https://hydra.nixos.org/build/233220815 at 2023-09-02 4685 4688 - restyle # failure in job https://hydra.nixos.org/build/233199043 at 2023-09-02 ··· 4742 4745 - rpm # failure in job https://hydra.nixos.org/build/233194513 at 2023-09-02 4743 4746 - rpmostree-update # failure in job https://hydra.nixos.org/build/233254709 at 2023-09-02 4744 4747 - rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02 4748 + - rsi-break # failure in job https://hydra.nixos.org/build/245788743 at 2024-01-07 4745 4749 - rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02 4746 4750 - rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02 4747 4751 - rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02 ··· 4901 4905 - servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02 4902 4906 - servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02 4903 4907 - servant-kotlin # failure in job https://hydra.nixos.org/build/233598190 at 2023-09-02 4908 + - servant-mock # failure in job https://hydra.nixos.org/build/245788431 at 2024-01-07 4904 4909 - servant-namedargs # failure in job https://hydra.nixos.org/build/233258674 at 2023-09-02 4905 4910 - servant-nix # failure in job https://hydra.nixos.org/build/233236159 at 2023-09-02 4906 4911 - servant-pandoc # failure in job https://hydra.nixos.org/build/233203008 at 2023-09-02 ··· 4955 4960 - shake-cabal-build # failure in job https://hydra.nixos.org/build/233192322 at 2023-09-02 4956 4961 - shake-dhall # failure in job https://hydra.nixos.org/build/233246191 at 2023-09-02 4957 4962 - shake-extras # failure in job https://hydra.nixos.org/build/233192079 at 2023-09-02 4963 + - shake-futhark # failure in job https://hydra.nixos.org/build/245711571 at 2024-01-07 4958 4964 - shake-minify # failure in job https://hydra.nixos.org/build/233251572 at 2023-09-02 4959 4965 - shake-pack # failure in job https://hydra.nixos.org/build/233195211 at 2023-09-02 4960 4966 - shake-path # failure in job https://hydra.nixos.org/build/233247617 at 2023-09-02 ··· 5010 5016 - simple-money # failure in job https://hydra.nixos.org/build/233240744 at 2023-09-02 5011 5017 - simple-neural-networks # failure in job https://hydra.nixos.org/build/233226975 at 2023-09-02 5012 5018 - simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02 5019 + - simple-pango # failure in job https://hydra.nixos.org/build/245788400 at 2024-01-07 5013 5020 - simple-parser # failure in job https://hydra.nixos.org/build/233218275 at 2023-09-02 5014 5021 - simple-pipe # failure in job https://hydra.nixos.org/build/233251483 at 2023-09-02 5015 5022 - simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02 ··· 5196 5203 - staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02 5197 5204 - standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02 5198 5205 - standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02 5199 - - stan # failure in job https://hydra.nixos.org/build/233200000 at 2023-09-02 5200 5206 - starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02 5201 5207 - starter # failure in job https://hydra.nixos.org/build/233208799 at 2023-09-02 5202 5208 - starter-snake-haskell # failure in job https://hydra.nixos.org/build/236685019 at 2023-10-04 ··· 5835 5841 - uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02 5836 5842 - uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02 5837 5843 - uusi # failure in job https://hydra.nixos.org/build/233201662 at 2023-09-02 5844 + - uu-tc-error # failure in job https://hydra.nixos.org/build/245696966 at 2024-01-07 5838 5845 - uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02 5839 5846 - uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02 5840 5847 - vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02 ··· 5941 5948 - wai-middleware-preprocessor # failure in job https://hydra.nixos.org/build/233227365 at 2023-09-02 5942 5949 - wai-middleware-static-caching # failure in job https://hydra.nixos.org/build/233208386 at 2023-09-02 5943 5950 - wai-middleware-travisci # failure in job https://hydra.nixos.org/build/233215805 at 2023-09-02 5951 + - wai-predicates # failure in job https://hydra.nixos.org/build/245788559 at 2024-01-07 5944 5952 - wai-problem-details # failure in job https://hydra.nixos.org/build/233227727 at 2023-09-02 5945 5953 - wai-rate-limit-postgres # failure in job https://hydra.nixos.org/build/233244097 at 2023-09-02 5946 5954 - wai-rate-limit-redis # failure in job https://hydra.nixos.org/build/233207860 at 2023-09-02
+1 -3
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 77 77 - crackNum < 3.0 # 2021-05-21: 3.0 removed the lib which sbv 7.13 uses 78 78 - dependent-map == 0.2.4.0 # required by Hasura 1.3.1, 2020-08-20 79 79 - dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20 80 - - dhall == 1.29.0 # required for ats-pkg 81 - - dhall == 1.38.1 # required for spago 82 80 - doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.* 83 81 - foundation < 0.0.29 # 2022-08-30: last version to support GHC < 8.10 84 82 - ghc-api-compat == 8.10.7 # 2022-02-17: preserve for GHC 8.10.7 ··· 128 126 - fourmolu == 0.14.0.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 129 127 - ormolu == 0.5.2.0 # 2023-08-08: for hls on ghc 9.0 and 9.2 130 128 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 131 - - pantry == 0.5.2.1 # needed for stack-2.7.3 132 129 - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2 133 130 - resolv < 0.2 # required to build cabal-install-3.10.1.0 with Stackage LTS 21 134 131 - sbv == 7.13 # required for pkgs.petrinizer ··· 521 518 - latex 522 519 - lazyio 523 520 - linear-programming 521 + - llvm-ffi 524 522 - markov-chain 525 523 - midi 526 524 - midi-alsa
+58 -58
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 21.23 1 + # Stackage LTS 21.25 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 10 10 - ace ==0.6 11 11 - acid-state ==0.16.1.3 12 12 - action-permutations ==0.0.0.1 13 - - active ==0.2.0.18 13 + - active ==0.2.1 14 14 - ad ==4.5.4 15 15 - ad-delcont ==0.3.0.0 16 16 - adjunctions ==4.4.2 17 17 - adler32 ==0.1.2.0 18 - - advent-of-code-api ==0.2.8.4 18 + - advent-of-code-api ==0.2.9.1 19 19 - aern2-mp ==0.2.15.1 20 20 - aern2-real ==0.2.15 21 21 - aeson ==2.1.2.1 ··· 31 31 - aeson-pretty ==0.8.9 32 32 - aeson-qq ==0.8.4 33 33 - aeson-schemas ==1.4.1.0 34 - - aeson-typescript ==0.6.0.0 35 - - aeson-value-parser ==0.19.7.1 34 + - aeson-typescript ==0.6.1.0 35 + - aeson-value-parser ==0.19.7.2 36 36 - aeson-yak ==0.1.1.3 37 37 - aeson-yaml ==1.1.0.1 38 38 - agda2lagda ==0.2023.6.9 ··· 46 46 - Allure ==0.11.0.0 47 47 - almost-fix ==0.0.2 48 48 - alsa-core ==0.5.0.1 49 - - alsa-mixer ==0.3.0 49 + - alsa-mixer ==0.3.0.1 50 50 - alsa-pcm ==0.6.1.1 51 51 - alsa-seq ==0.6.0.9 52 52 - alternative-vector ==0.0.0 ··· 107 107 - attoparsec-aeson ==2.1.0.0 108 108 - attoparsec-base64 ==0.0.0 109 109 - attoparsec-binary ==0.2 110 - - attoparsec-data ==1.0.5.3 110 + - attoparsec-data ==1.0.5.4 111 111 - attoparsec-expr ==0.1.1.2 112 112 - attoparsec-framer ==0.1.0.1 113 113 - attoparsec-iso8601 ==1.1.0.0 114 114 - attoparsec-path ==0.0.0.1 115 115 - attoparsec-run ==0.0.2.0 116 - - attoparsec-time ==1.0.3 116 + - attoparsec-time ==1.0.3.1 117 117 - audacity ==0.0.2.1 118 118 - authenticate ==1.3.5.2 119 119 - authenticate-oauth ==1.7 ··· 182 182 - binary-instances ==1.0.4 183 183 - binary-list ==1.1.1.2 184 184 - binary-orphans ==1.0.4.1 185 - - binary-parser ==0.5.7.4 185 + - binary-parser ==0.5.7.5 186 186 - binary-search ==2.0.0 187 187 - binary-shared ==0.8.3 188 188 - binary-tagged ==0.3.1 ··· 231 231 - BoundedChan ==1.0.3.0 232 232 - bounded-queue ==1.0.0 233 233 - boundingboxes ==0.2.3 234 - - box ==0.9.2.0 234 + - box ==0.9.2.1 235 235 - boxes ==0.1.5 236 236 - breakpoint ==0.1.2.2 237 237 - brick ==1.9 ··· 260 260 - byteorder ==1.0.4 261 261 - bytes ==0.17.3 262 262 - byteset ==0.1.1.1 263 - - byteslice ==0.2.11.1 263 + - byteslice ==0.2.12.0 264 264 - bytesmith ==0.3.10.0 265 265 - bytestring-builder ==0.10.8.2.0 266 266 - bytestring-lexing ==0.5.0.11 ··· 287 287 - calendar-recycling ==0.0.0.1 288 288 - call-alloy ==0.4.0.3 289 289 - calligraphy ==0.1.6 290 - - call-plantuml ==0.0.1.2 290 + - call-plantuml ==0.0.1.3 291 291 - call-stack ==0.4.0 292 292 - can-i-haz ==0.3.1.1 293 293 - capability ==0.5.0.1 ··· 311 311 - cereal ==0.5.8.3 312 312 - cereal-conduit ==0.8.0 313 313 - cereal-text ==0.1.0.2 314 - - cereal-unordered-containers ==0.1 314 + - cereal-unordered-containers ==0.1.0.1 315 315 - cereal-vector ==0.2.0.1 316 316 - cfenv ==0.1.0.0 317 317 - cgi ==3001.5.0.1 ··· 371 371 - comfort-fftw ==0.0.0.1 372 372 - comfort-glpk ==0.1 373 373 - comfort-graph ==0.0.4 374 - - commonmark ==0.2.4 375 - - commonmark-extensions ==0.2.4 376 - - commonmark-pandoc ==0.2.1.3 374 + - commonmark ==0.2.4.1 375 + - commonmark-extensions ==0.2.5.1 376 + - commonmark-pandoc ==0.2.2 377 377 - commutative ==0.0.2 378 378 - commutative-semigroups ==0.1.0.1 379 379 - comonad ==5.0.8 ··· 394 394 - concurrent-output ==1.10.20 395 395 - concurrent-split ==0.0.1.1 396 396 - cond ==0.4.1.1 397 - - conduino ==0.2.2.0 397 + - conduino ==0.2.4.0 398 398 - conduit ==1.3.5 399 399 - conduit-aeson ==0.1.0.1 400 400 - conduit-algorithms ==0.0.13.0 ··· 416 416 - constraints ==0.13.4 417 417 - constraints-extras ==0.4.0.0 418 418 - constraint-tuples ==0.1.2 419 - - context ==0.2.0.2 419 + - context ==0.2.0.3 420 420 - context-http-client ==0.2.0.2 421 421 - context-resource ==0.2.0.2 422 422 - context-wai-middleware ==0.2.0.2 ··· 546 546 - Decimal ==0.5.2 547 547 - declarative ==0.5.4 548 548 - deepseq-generics ==0.2.0.0 549 - - deferred-folds ==0.9.18.5 549 + - deferred-folds ==0.9.18.6 550 550 - dejafu ==2.4.0.5 551 551 - dense-linear-algebra ==0.1.0.0 552 552 - dependent-map ==0.4.0.0 ··· 579 579 - di-df1 ==1.2.1 580 580 - Diff ==0.4.1 581 581 - diff-loc ==0.1.0.0 582 - - digest ==0.0.1.7 582 + - digest ==0.0.2.0 583 583 - digits ==0.3.1 584 584 - di-handle ==1.0.1 585 585 - dimensional ==1.5 ··· 613 613 - doctest-parallel ==0.3.1 614 614 - doldol ==0.4.1.2 615 615 - do-list ==1.0.1 616 - - domain ==0.1.1.4 617 - - domain-aeson ==0.1.1.1 618 - - domain-cereal ==0.1 619 - - domain-core ==0.1.0.3 620 - - domain-optics ==0.1.0.3 616 + - domain ==0.1.1.5 617 + - domain-aeson ==0.1.1.2 618 + - domain-cereal ==0.1.0.1 619 + - domain-core ==0.1.0.4 620 + - domain-optics ==0.1.0.4 621 621 - do-notation ==0.1.0.2 622 622 - dot ==0.3 623 623 - dotenv ==0.11.0.2 ··· 662 662 - elerea ==2.9.0 663 663 - elf ==0.31 664 664 - eliminators ==0.9.2 665 - - elm2nix ==0.3.0 665 + - elm2nix ==0.3.1 666 666 - elm-bridge ==0.8.2 667 667 - elm-core-sources ==1.0.0 668 668 - elm-export ==0.6.0.1 ··· 799 799 - foreign-store ==0.2 800 800 - ForestStructures ==0.0.1.1 801 801 - forkable-monad ==0.2.0.3 802 - - formatn ==0.3.0 802 + - formatn ==0.3.0.1 803 803 - format-numbers ==0.1.0.1 804 804 - formatting ==7.2.0 805 805 - foundation ==0.0.30 ··· 963 963 - graphql-client ==1.2.2 964 964 - graphs ==0.7.2 965 965 - graphula ==2.0.2.2 966 - - graphviz ==2999.20.1.0 966 + - graphviz ==2999.20.2.0 967 967 - graph-wrapper ==0.2.6.0 968 968 - gravatar ==0.8.1 969 969 - gridtables ==0.1.0.0 ··· 982 982 - haddock-library ==1.11.0 983 983 - haha ==0.3.1.1 984 984 - hakyll ==4.16.2.0 985 - - hal ==1.0.0.1 985 + - hal ==1.0.1 986 986 - half ==0.3.1 987 987 - hall-symbols ==0.1.0.6 988 988 - hamlet ==1.2.0 ··· 997 997 - happy-meta ==0.2.1.0 998 998 - harp ==0.4.3.6 999 999 - HasBigDecimal ==0.2.0.0 1000 - - hasbolt ==0.1.6.3 1000 + - hasbolt ==0.1.7.0 1001 1001 - hashable ==1.4.3.0 1002 1002 - hashing ==0.1.1.0 1003 1003 - hashmap ==1.3.3 ··· 1027 1027 - hasql-optparse-applicative ==0.7 1028 1028 - hasql-pool ==0.9.0.1 1029 1029 - hasql-queue ==1.2.0.2 1030 - - hasql-th ==0.4.0.18 1030 + - hasql-th ==0.4.0.19 1031 1031 - hasql-transaction ==1.0.1.2 1032 1032 - has-transformers ==0.1.0.4 1033 1033 - hasty-hamiltonian ==1.3.4 ··· 1038 1038 - hdaemonize ==0.5.7 1039 1039 - HDBC ==2.4.0.4 1040 1040 - HDBC-session ==0.1.2.1 1041 - - headed-megaparsec ==0.2.1.2 1041 + - headed-megaparsec ==0.2.1.3 1042 1042 - heap ==1.0.4 1043 1043 - heaps ==0.4 1044 1044 - heatshrink ==0.1.0.0 ··· 1208 1208 - http-link-header ==1.2.1 1209 1209 - http-media ==0.8.1.1 1210 1210 - http-query ==0.1.3 1211 - - http-reverse-proxy ==0.6.0.1 1211 + - http-reverse-proxy ==0.6.0.2 1212 1212 - http-streams ==0.8.9.9 1213 1213 - http-types ==0.12.4 1214 1214 - human-readable-duration ==0.2.1.4 ··· 1321 1321 - IPv6Addr ==2.0.5.1 1322 1322 - ipynb ==0.2 1323 1323 - ipython-kernel ==0.10.3.0 1324 - - irc ==0.6.1.0 1324 + - irc ==0.6.1.1 1325 1325 - irc-ctcp ==0.1.3.1 1326 1326 - isbn ==1.1.0.4 1327 1327 - islink ==0.1.0.0 ··· 1329 1329 - iso639 ==0.1.0.3 1330 1330 - iso8601-time ==0.1.5 1331 1331 - isocline ==1.0.9 1332 - - isomorphism-class ==0.1.0.11 1332 + - isomorphism-class ==0.1.0.12 1333 1333 - iterable ==3.0 1334 1334 - ix-shapable ==0.1.0 1335 1335 - jack ==0.7.2.2 ··· 1445 1445 - linear-base ==0.3.1 1446 1446 - linear-circuit ==0.1.0.4 1447 1447 - linear-generics ==0.2.1 1448 - - linear-programming ==0.0 1448 + - linear-programming ==0.0.0.1 1449 1449 - linebreak ==1.1.0.4 1450 1450 - linux-capabilities ==0.1.1.0 1451 1451 - linux-file-extents ==0.2.0.0 ··· 1593 1593 - monadlist ==0.0.2 1594 1594 - monadloc ==0.7.1 1595 1595 - monad-logger ==0.3.40 1596 - - monad-logger-aeson ==0.4.1.1 1596 + - monad-logger-aeson ==0.4.1.2 1597 1597 - monad-logger-json ==0.1.0.0 1598 1598 - monad-logger-logstash ==0.2.0.2 1599 1599 - monad-loops ==0.4.3 ··· 1709 1709 - nonce ==1.0.7 1710 1710 - nondeterminism ==1.5 1711 1711 - non-empty ==0.3.5 1712 - - nonempty-containers ==0.3.4.4 1712 + - nonempty-containers ==0.3.4.5 1713 1713 - nonemptymap ==0.0.6.0 1714 1714 - non-empty-sequence ==0.2.0.4 1715 1715 - nonempty-vector ==0.2.3 ··· 1720 1720 - nothunks ==0.1.5 1721 1721 - no-value ==1.0.0.0 1722 1722 - nowdoc ==0.1.1.0 1723 - - nqe ==0.6.4 1723 + - nqe ==0.6.5 1724 1724 - nsis ==0.3.3 1725 1725 - numbers ==3000.2.0.2 1726 1726 - numeric-extras ==0.1 ··· 1742 1742 - ofx ==0.4.4.0 1743 1743 - oidc-client ==0.7.0.1 1744 1744 - old-locale ==1.0.0.7 1745 - - old-time ==1.1.0.3 1745 + - old-time ==1.1.0.4 1746 1746 - once ==0.4 1747 1747 - one-liner ==2.1 1748 1748 - one-liner-instances ==0.1.3.0 ··· 1774 1774 - optics-operators ==0.1.0.1 1775 1775 - optics-th ==0.4.1 1776 1776 - optics-vl ==0.2.1 1777 - - optima ==0.4.0.4 1777 + - optima ==0.4.0.5 1778 1778 - optional-args ==1.0.2 1779 1779 - options ==1.2.1.1 1780 1780 - optparse-applicative ==0.17.1.0 ··· 1856 1856 - persistent-lens ==1.0.0 1857 1857 - persistent-mongoDB ==2.13.0.1 1858 1858 - persistent-mtl ==0.5.0.1 1859 - - persistent-mysql ==2.13.1.4 1859 + - persistent-mysql ==2.13.1.5 1860 1860 - persistent-pagination ==0.1.1.2 1861 1861 - persistent-postgresql ==2.13.6.1 1862 1862 - persistent-qq ==2.12.0.6 1863 1863 - persistent-redis ==2.13.0.1 1864 1864 - persistent-refs ==0.4 1865 - - persistent-sqlite ==2.13.2.0 1865 + - persistent-sqlite ==2.13.3.0 1866 1866 - persistent-template ==2.12.0.0 1867 1867 - persistent-test ==2.13.1.3 1868 1868 - persistent-typed-db ==0.1.0.7 ··· 1917 1917 - posix-pty ==0.2.2 1918 1918 - possibly ==1.0.0.0 1919 1919 - postgres-options ==0.2.1.0 1920 - - postgresql-binary ==0.13.1.1 1920 + - postgresql-binary ==0.13.1.2 1921 1921 - postgresql-libpq ==0.9.5.0 1922 1922 - postgresql-libpq-notify ==0.2.0.0 1923 1923 - postgresql-migration ==0.2.1.7 1924 1924 - postgresql-schema ==0.1.14 1925 1925 - postgresql-simple ==0.6.5.1 1926 1926 - postgresql-simple-url ==0.2.1.0 1927 - - postgresql-syntax ==0.4.1 1927 + - postgresql-syntax ==0.4.1.1 1928 1928 - postgresql-typed ==0.6.2.2 1929 1929 - post-mess-age ==0.2.1.0 1930 1930 - pptable ==0.3.0.0 ··· 1984 1984 - psqueues ==0.2.8.0 1985 1985 - pthread ==0.2.1 1986 1986 - ptr ==0.16.8.5 1987 - - ptr-poker ==0.1.2.13 1987 + - ptr-poker ==0.1.2.14 1988 1988 - pulse-simple ==0.1.14 1989 1989 - pureMD5 ==2.1.4 1990 1990 - purescript-bridge ==0.15.0.0 ··· 2144 2144 - s3-signer ==0.5.0.0 2145 2145 - safe ==0.3.19 2146 2146 - safe-coloured-text ==0.2.0.1 2147 - - safe-coloured-text-gen ==0.0.0.1 2147 + - safe-coloured-text-gen ==0.0.0.2 2148 2148 - safe-coloured-text-layout ==0.0.0.0 2149 2149 - safe-coloured-text-layout-gen ==0.0.0.0 2150 2150 - safe-coloured-text-terminfo ==0.1.0.0 ··· 2172 2172 - say ==0.1.0.1 2173 2173 - sbp ==4.15.0 2174 2174 - sbv ==10.2 2175 - - scalpel ==0.6.2.1 2176 - - scalpel-core ==0.6.2.1 2175 + - scalpel ==0.6.2.2 2176 + - scalpel-core ==0.6.2.2 2177 2177 - scanf ==0.1.0.0 2178 2178 - scanner ==0.3.1 2179 2179 - scheduler ==2.0.0.1 ··· 2199 2199 - semirings ==0.6 2200 2200 - semiring-simple ==1.0.0.1 2201 2201 - semver ==0.4.0.1 2202 - - sendfile ==0.7.11.4 2202 + - sendfile ==0.7.11.5 2203 2203 - sendgrid-v3 ==1.0.0.1 2204 2204 - seqalign ==0.2.0.4 2205 2205 - seqid ==0.6.3 ··· 2577 2577 - these-optics ==1.0.1.2 2578 2578 - these-skinny ==0.7.5 2579 2579 - th-expand-syns ==0.4.11.0 2580 - - th-lego ==0.3.0.2 2580 + - th-lego ==0.3.0.3 2581 2581 - th-lift ==0.8.4 2582 2582 - th-lift-instances ==0.1.20 2583 2583 - th-nowq ==0.1.0.5 ··· 2595 2595 - th-utilities ==0.2.5.0 2596 2596 - thyme ==0.4 2597 2597 - tidal ==1.9.4 2598 - - tidal-link ==1.0.1 2598 + - tidal-link ==1.0.2 2599 2599 - tile ==0.3.0.0 2600 2600 - time-compat ==1.9.6.1 2601 2601 - time-domain ==0.1.0.2 ··· 2724 2724 - universe-some ==1.2.1 2725 2725 - universum ==1.8.2 2726 2726 - unix-bytestring ==0.4.0 2727 - - unix-compat ==0.7 2727 + - unix-compat ==0.7.1 2728 2728 - unix-time ==0.4.11 2729 2729 - unjson ==0.15.4 2730 2730 - unliftio ==0.2.25.0 ··· 2772 2772 - vector-algorithms ==0.9.0.1 2773 2773 - vector-binary-instances ==0.2.5.2 2774 2774 - vector-buffer ==0.4.1 2775 - - vector-builder ==0.3.8.4 2775 + - vector-builder ==0.3.8.5 2776 2776 - vector-bytes-instances ==0.1.1 2777 2777 - vector-extras ==0.2.8.1 2778 - - vector-hashtables ==0.1.1.3 2778 + - vector-hashtables ==0.1.1.4 2779 2779 - vector-instances ==3.4.2 2780 2780 - vector-mmap ==0.0.3 2781 2781 - vector-rotcev ==0.1.0.2 ··· 2796 2796 - vivid-supercollider ==0.4.1.2 2797 2797 - void ==0.7.3 2798 2798 - vty ==5.38 2799 - - wai ==3.2.3 2799 + - wai ==3.2.4 2800 2800 - wai-app-static ==3.1.8 2801 2801 - wai-cli ==0.2.3 2802 2802 - wai-conduit ==3.0.0.4 ··· 2913 2913 - xss-sanitize ==0.3.7.2 2914 2914 - xxhash-ffi ==0.2.0.0 2915 2915 - yaml ==0.11.11.2 2916 - - yaml-unscrambler ==0.1.0.17 2917 - - Yampa ==0.14.5 2916 + - yaml-unscrambler ==0.1.0.18 2917 + - Yampa ==0.14.6 2918 2918 - yarn-lock ==0.6.5 2919 2919 - yeshql-core ==4.2.0.0 2920 2920 - yesod ==1.6.2.1
+20 -11
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 806 806 - chart-svg 807 807 - chart-svg-various 808 808 - chart-unit 809 + - chassis 809 810 - cheapskate-highlight 810 811 - cheapskate-lucid 811 812 - cheapskate-terminal ··· 911 912 - comonad-random 912 913 - compaREST 913 914 - compact-mutable 915 + - compdoc 916 + - compdoc-dhall-decoder 914 917 - complexity 918 + - composite-aeson 919 + - composite-aeson-cofree-list 920 + - composite-aeson-throw 921 + - composite-aeson-writeonly 922 + - composite-binary 923 + - composite-hashable 924 + - composite-ix 925 + - composite-lens-extra 926 + - composite-tuple 927 + - composite-xml 928 + - composite-xstep 915 929 - comprehensions-ghc 916 930 - computational-algebra 917 931 - concraft ··· 1071 1085 - definitive-parser 1072 1086 - definitive-reactive 1073 1087 - definitive-sound 1088 + - defun 1074 1089 - deka-tests 1075 1090 - delaunay 1076 1091 - delicious ··· 1983 1998 - hcg-minus-cairo 1984 1999 - hcheat 1985 2000 - hcheckers 1986 - - hcount 1987 2001 - hcube 1988 2002 - hdbi 1989 2003 - hdbi-conduit ··· 2161 2175 - hslogstash 2162 2176 - hsparql 2163 2177 - hspec-expectations-pretty 2178 + - hspec-formatter-github 2164 2179 - hspec-pg-transact 2165 2180 - hspec-setup 2166 2181 - hspec-shouldbe ··· 2242 2257 - hyena 2243 2258 - hylotab 2244 2259 - hyloutils 2260 + - hyperbole 2245 2261 - hyperpublic 2246 2262 - i 2247 2263 - iException ··· 2529 2545 - linearscan-hoopl 2530 2546 - linkchk 2531 2547 - linkcore 2532 - - linnet 2533 2548 - linnet-aeson 2534 2549 - linnet-conduit 2535 2550 - linux-ptrace ··· 2715 2730 - modular-prelude-classy 2716 2731 - modularity 2717 2732 - modulo 2733 + - moffy-samples-gtk4 2734 + - moffy-samples-gtk4-run 2718 2735 - mole 2719 2736 - monad-exception 2720 2737 - monad-http ··· 2745 2762 - mpretty 2746 2763 - mprover 2747 2764 - mps 2748 - - mptcp 2749 2765 - mptcp-pm 2750 2766 - mptcpanalyzer 2751 2767 - msgpack-aeson ··· 2947 2963 - overload 2948 2964 - package-o-tron 2949 2965 - padKONTROL 2950 - - pagerduty 2951 2966 - pairing 2952 2967 - panda 2953 2968 - pandoc-highlighting-extensions ··· 3229 3244 - quiver-interleave 3230 3245 - quiver-sort 3231 3246 - qux 3232 - - rabocsv2qif 3233 3247 - rail-compiler-editor 3234 3248 - rails-session 3235 3249 - rainbow-tests ··· 3281 3295 - redHandlers 3282 3296 - reddit 3283 3297 - redis-io 3284 - - redis-resp 3285 3298 - rediscaching-haxl 3286 3299 - reduce-equations 3287 3300 - refh ··· 3524 3537 - serpentine 3525 3538 - serv 3526 3539 - serv-wai 3540 + - servant-aeson-generics-typescript 3527 3541 - servant-auth-hmac 3528 3542 - servant-auth-token 3529 3543 - servant-auth-token-acid ··· 3540 3554 - servant-haxl-client 3541 3555 - servant-http2-client 3542 3556 - servant-matrix-param 3543 - - servant-mock 3544 3557 - servant-oauth2 3545 3558 - servant-oauth2-examples 3546 3559 - servant-openapi3 ··· 3596 3609 - silvi 3597 3610 - simgi 3598 3611 - simple-c-value 3599 - - simple-cairo 3600 3612 - simple-firewire 3601 3613 - simple-log-syslog 3602 3614 - simple-logging 3603 3615 - simple-nix 3604 - - simple-pango 3605 3616 - simple-pascal 3606 3617 - simple-postgresql-orm 3607 3618 - simpleirc-lens ··· 4127 4138 - wai-middleware-route 4128 4139 - wai-middleware-validation 4129 4140 - wai-middleware-verbs 4130 - - wai-predicates 4131 4141 - wai-route 4132 4142 - wai-routing 4133 4143 - wai-session-alt ··· 4157 4167 - webcrank-wai 4158 4168 - webdriver-w3c 4159 4169 - webgear-openapi 4160 - - webgear-server 4161 4170 - webify 4162 4171 - webserver 4163 4172 - websockets-rpc
+40 -16
pkgs/development/haskell-modules/configuration-nix.nix
··· 114 114 })) 115 115 super) 116 116 hls-brittany-plugin 117 + hls-stan-plugin 117 118 hls-floskell-plugin 118 119 hls-fourmolu-plugin 119 120 hls-overloaded-record-dot-plugin ··· 328 329 # Heist's test suite requires system pandoc 329 330 heist = addTestToolDepend pkgs.pandoc super.heist; 330 331 332 + # Use Nixpkgs' double-conversion library 333 + double-conversion = disableCabalFlag "embedded_double_conversion" ( 334 + addBuildDepends [ pkgs.double-conversion ] super.double-conversion 335 + ); 336 + 331 337 # https://github.com/NixOS/cabal2nix/issues/136 and https://github.com/NixOS/cabal2nix/issues/216 332 338 gio = lib.pipe super.gio 333 339 [ (disableHardening ["fortify"]) ··· 422 428 hasql-interpolate = dontCheck super.hasql-interpolate; 423 429 hasql-notifications = dontCheck super.hasql-notifications; 424 430 hasql-pool = dontCheck super.hasql-pool; 425 - hasql-pool_0_10 = dontCheck super.hasql-pool_0_10; 431 + hasql-pool_0_10_0_1 = doDistribute (dontCheck super.hasql-pool_0_10_0_1); 426 432 hasql-transaction = dontCheck super.hasql-transaction; 427 433 428 434 # Test suite requires a running postgresql server, ··· 447 453 mime-mail = appendConfigureFlag "--ghc-option=-DMIME_MAIL_SENDMAIL_PATH=\"sendmail\"" super.mime-mail; 448 454 449 455 # Help the test suite find system timezone data. 450 - tz = overrideCabal (drv: { 451 - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; 452 - }) super.tz; 456 + tz = addBuildDepends [ pkgs.tzdata ] super.tz; 457 + tzdata = addBuildDepends [ pkgs.tzdata ] super.tzdata; 453 458 454 459 # https://hydra.nixos.org/build/128665302/nixlog/3 455 460 # Disable tests because they require a running dbus session ··· 490 495 # requires llvm 9 specifically https://github.com/llvm-hs/llvm-hs/#building-from-source 491 496 llvm-hs = super.llvm-hs.override { llvm-config = pkgs.llvm_9; }; 492 497 498 + # llvm-ffi needs a specific version of LLVM which we hard code here. Since we 499 + # can't use pkg-config (LLVM has no official .pc files), we need to pass the 500 + # `dev` and `lib` output in, or Cabal will have trouble finding the library. 501 + # Since it looks a bit neater having it in a list, we circumvent the singular 502 + # LLVM input here. 503 + llvm-ffi = 504 + addBuildDepends [ 505 + pkgs.llvmPackages_16.llvm.lib 506 + pkgs.llvmPackages_16.llvm.dev 507 + ] (super.llvm-ffi.override { LLVM = null; }); 508 + 493 509 # Needs help finding LLVM. 494 510 spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe; 495 511 ··· 814 830 815 831 # Tests require internet 816 832 http-download = dontCheck super.http-download; 833 + http-download_0_2_1_0 = doDistribute (dontCheck super.http-download_0_2_1_0); 817 834 pantry = dontCheck super.pantry; 818 - pantry_0_5_2_1 = dontCheck super.pantry_0_5_2_1; 835 + pantry_0_9_3_1 = dontCheck super.pantry_0_9_3_1; 819 836 820 837 # gtk2hs-buildtools is listed in setupHaskellDepends, but we 821 838 # need it during the build itself, too. ··· 1199 1216 }) super.procex; 1200 1217 1201 1218 # Test suite wants to run main executable 1202 - fourmolu = overrideCabal (drv: { 1203 - preCheck = drv.preCheck or "" + '' 1204 - export PATH="$PWD/dist/build/fourmolu:$PATH" 1205 - ''; 1206 - }) super.fourmolu; 1219 + # https://github.com/fourmolu/fourmolu/issues/231 1220 + inherit ( 1221 + let 1222 + fourmoluTestFix = overrideCabal (drv: { 1223 + preCheck = drv.preCheck or "" + '' 1224 + export PATH="$PWD/dist/build/fourmolu:$PATH" 1225 + ''; 1226 + }); 1227 + in 1207 1228 1208 - # Test suite wants to run main executable 1209 - fourmolu_0_10_1_0 = overrideCabal (drv: { 1210 - preCheck = drv.preCheck or "" + '' 1211 - export PATH="$PWD/dist/build/fourmolu:$PATH" 1212 - ''; 1213 - }) super.fourmolu_0_10_1_0; 1229 + { 1230 + fourmolu = fourmoluTestFix super.fourmolu; 1231 + fourmolu_0_14_0_0 = fourmoluTestFix super.fourmolu_0_14_0_0; 1232 + fourmolu_0_14_1_0 = fourmoluTestFix super.fourmolu_0_14_1_0; 1233 + }) 1234 + fourmolu 1235 + fourmolu_0_14_0_0 1236 + fourmolu_0_14_1_0 1237 + ; 1214 1238 1215 1239 # Test suite needs to execute 'disco' binary 1216 1240 disco = overrideCabal (drv: {
+1153 -797
pkgs/development/haskell-modules/hackage-packages.nix
··· 1172 1172 }: 1173 1173 mkDerivation { 1174 1174 pname = "AsyncRattus"; 1175 - version = "0.1.0.2"; 1176 - sha256 = "1vbkhk99m8gxdfldh3fz1ls5cpc27hj6fal6jyls6fzxlws5arkn"; 1175 + version = "0.1.0.3"; 1176 + sha256 = "19f915akipzx94qvd5p6dm2wvr6l07fl1qgql2xz0m8axbl6083r"; 1177 1177 setupHaskellDepends = [ base Cabal ]; 1178 1178 libraryHaskellDepends = [ 1179 1179 base containers ghc ghc-boot hashtables simple-affine-space ··· 5962 5962 license = lib.licenses.bsd3; 5963 5963 hydraPlatforms = lib.platforms.none; 5964 5964 mainProgram = "FTPLine"; 5965 + }) {}; 5966 + 5967 + "FULE" = callPackage 5968 + ({ mkDerivation, base, containers, deepseq, mtl, transformers }: 5969 + mkDerivation { 5970 + pname = "FULE"; 5971 + version = "0.3.0"; 5972 + sha256 = "1ir8kq8mndvbm99jm9wdd967b3424i4cpj5m56qd1052xi47q8vl"; 5973 + libraryHaskellDepends = [ 5974 + base containers deepseq mtl transformers 5975 + ]; 5976 + testHaskellDepends = [ base containers deepseq mtl transformers ]; 5977 + description = "Functional UI Layout Engine"; 5978 + license = lib.licenses.bsd3; 5965 5979 }) {}; 5966 5980 5967 5981 "Facebook-Password-Hacker-Online-Latest-Version" = callPackage ··· 19143 19157 pname = "ShellCheck"; 19144 19158 version = "0.9.0"; 19145 19159 sha256 = "071k2gc8rzpg9lwq9g10c9xx0zm1wcgsf8v4n1csj9fm56vy7gmb"; 19146 - revision = "1"; 19147 - editedCabalFile = "0gs8q9dijsxzz6chq1gwzn34b2l2iskh72j10n47qqf598dwbjgm"; 19160 + revision = "2"; 19161 + editedCabalFile = "1bc552vfv76jq1zmqywv7a2z322v9ncz3sc69xpj0w6qwb3sd224"; 19148 19162 isLibrary = true; 19149 19163 isExecutable = true; 19150 19164 libraryHaskellDepends = [ ··· 23005 23019 }: 23006 23020 mkDerivation { 23007 23021 pname = "Yampa"; 23008 - version = "0.14.5"; 23009 - sha256 = "1pr9g5rhxx9v54f4d0cjwy9yr6wd32ssi23wms8kmf9avjbi0gms"; 23022 + version = "0.14.6"; 23023 + sha256 = "1qinizrhqqwx5wws1iqyxxj77b1mv7svj61sfs851sxlbnp32pll"; 23010 23024 isLibrary = true; 23011 23025 isExecutable = true; 23012 23026 libraryHaskellDepends = [ ··· 25027 25041 }) {}; 25028 25042 25029 25043 "acquire" = callPackage 25030 - ({ mkDerivation, base, transformers }: 25044 + ({ mkDerivation, base, mtl, transformers }: 25031 25045 mkDerivation { 25032 25046 pname = "acquire"; 25033 - version = "0.3.1.1"; 25034 - sha256 = "12bcywg52gyh5zhf2iljy1yb1g8l52v1sjbg8bffifgh0bmnzkws"; 25035 - libraryHaskellDepends = [ base transformers ]; 25047 + version = "0.3.4"; 25048 + sha256 = "1sf35mmf1dsl6ridzcrs1fajrjd9ic60fbx2356iggm2sn5bi7k5"; 25049 + libraryHaskellDepends = [ base mtl transformers ]; 25036 25050 description = "Abstraction over management of resources"; 25037 25051 license = lib.licenses.mit; 25052 + hydraPlatforms = lib.platforms.none; 25053 + broken = true; 25038 25054 }) {}; 25039 25055 25040 25056 "action-permutations" = callPackage ··· 25054 25070 }: 25055 25071 mkDerivation { 25056 25072 pname = "active"; 25057 - version = "0.2.0.18"; 25058 - sha256 = "1fn3cyf43x18p2phs8bhacbp8zl8aifrh7ndzs0qi6n6g9sw95qn"; 25073 + version = "0.2.1"; 25074 + sha256 = "150kwir36aj9q219qi80mlqd0vxm4941dh6x4xp58rbd5a3mhmv1"; 25059 25075 libraryHaskellDepends = [ 25060 25076 base lens linear semigroupoids semigroups vector 25061 25077 ]; ··· 25271 25287 }: 25272 25288 mkDerivation { 25273 25289 pname = "adblock2privoxy"; 25274 - version = "2.1.0"; 25275 - sha256 = "0w4yhpsl92wbijfkm37y3wl17vpsrf50mrgcllvd77ycak5w4nhw"; 25290 + version = "2.1.1"; 25291 + sha256 = "0vax5x1d2lf10fdrbp11n5gg0gp6qbsshrdm12f6smv8vw4sk5nv"; 25276 25292 isLibrary = false; 25277 25293 isExecutable = true; 25278 25294 enableSeparateDataOutput = true; ··· 25537 25553 }: 25538 25554 mkDerivation { 25539 25555 pname = "advent-of-code-api"; 25540 - version = "0.2.8.4"; 25541 - sha256 = "1l7bl0aqn5d6ph730jpwb5h0lwhvrkcw4vla0l73sxrm52j9ma58"; 25556 + version = "0.2.9.1"; 25557 + sha256 = "05sfpapaf7mg0lkqwsabspazfmczw25bv7n51skbgr5qprlmfi8r"; 25542 25558 libraryHaskellDepends = [ 25543 25559 aeson base bytestring containers deepseq directory filepath 25544 25560 finite-typelits http-api-data http-client http-client-tls ··· 26228 26244 license = lib.licenses.bsd3; 26229 26245 }) {}; 26230 26246 26247 + "aeson-generics-typescript" = callPackage 26248 + ({ mkDerivation, aeson, base, bytestring, containers, directory 26249 + , filepath, hspec, process, QuickCheck, random, split 26250 + , string-interpolate, text, time 26251 + }: 26252 + mkDerivation { 26253 + pname = "aeson-generics-typescript"; 26254 + version = "0.0.0.1"; 26255 + sha256 = "1rhm37ppiqq3zl9ml1gpvzrjizpbix9vvb7ffcsvimfnwqjk2k4c"; 26256 + isLibrary = true; 26257 + isExecutable = true; 26258 + libraryHaskellDepends = [ 26259 + base containers string-interpolate text time 26260 + ]; 26261 + executableHaskellDepends = [ 26262 + aeson base bytestring containers directory filepath hspec process 26263 + QuickCheck random split string-interpolate text time 26264 + ]; 26265 + description = "Generates TypeScript definitions that match Generic Aeson encodings"; 26266 + license = lib.licenses.bsd3; 26267 + hydraPlatforms = lib.platforms.none; 26268 + mainProgram = "tests"; 26269 + broken = true; 26270 + }) {}; 26271 + 26231 26272 "aeson-helper" = callPackage 26232 26273 ({ mkDerivation, aeson, base, text, vector }: 26233 26274 mkDerivation { ··· 26727 26768 }: 26728 26769 mkDerivation { 26729 26770 pname = "aeson-typescript"; 26730 - version = "0.6.0.0"; 26731 - sha256 = "1dlbxma80vjw19c8b5b0msmsd55rpnxxqb147ppy1w4d4yvsmrr3"; 26771 + version = "0.6.1.0"; 26772 + sha256 = "1ylxh4fbx01rwv1ipk1a6yfziwp1v3hy9wmpbml0s9613bwqxdvl"; 26732 26773 libraryHaskellDepends = [ 26733 - aeson base containers mtl string-interpolate template-haskell text 26734 - th-abstraction transformers unordered-containers 26774 + aeson base bytestring containers mtl string-interpolate 26775 + template-haskell text th-abstraction transformers 26776 + unordered-containers 26735 26777 ]; 26736 26778 testHaskellDepends = [ 26737 26779 aeson base bytestring containers directory filepath hspec mtl ··· 26779 26821 }: 26780 26822 mkDerivation { 26781 26823 pname = "aeson-value-parser"; 26782 - version = "0.19.7.1"; 26783 - sha256 = "1w62li1g1hfdc9hf45x49fgdqs6jap06pq6nq9wr9vlmcnrzb34i"; 26824 + version = "0.19.7.2"; 26825 + sha256 = "1c7275wcsg7v0hfgf93dqbyrvm2ai8kmc45g7mbrgr2qjws3yign"; 26784 26826 libraryHaskellDepends = [ 26785 26827 aeson attoparsec base bytestring hashable megaparsec mtl scientific 26786 26828 text transformers unordered-containers vector ··· 26813 26855 }: 26814 26856 mkDerivation { 26815 26857 pname = "aeson-warning-parser"; 26816 - version = "0.1.0"; 26817 - sha256 = "19n5pnvkingw086i9adhakhj42fmp7nrphf4g6gq4y1xwa1afiry"; 26858 + version = "0.1.1"; 26859 + sha256 = "1r478ksq80594pk6mvzygs9a5b1igvszncw46lby6a3y4shdyzib"; 26818 26860 libraryHaskellDepends = [ 26819 26861 aeson base containers generic-deriving rio rio-prettyprint text 26820 26862 transformers unordered-containers ··· 27117 27159 }) {}; 27118 27160 27119 27161 "agda2hs" = callPackage 27120 - ({ mkDerivation, Agda, base, bytestring, containers, deepseq 27121 - , directory, filepath, haskell-src-exts, mtl, process, syb, text 27122 - , unordered-containers, yaml-light 27162 + ({ mkDerivation, aeson, Agda, base, bytestring, containers, deepseq 27163 + , directory, filepath, haskell-src-exts, mtl, syb, text 27164 + , unordered-containers, yaml 27123 27165 }: 27124 27166 mkDerivation { 27125 27167 pname = "agda2hs"; 27126 - version = "1.1"; 27127 - sha256 = "1wwrvsbpa0hmmqv5d4k348v3j67v46qv8hyx31y01ycxlz2dz72v"; 27168 + version = "1.2"; 27169 + sha256 = "0xd9ngvymr1wix1hhf6i3qm2sc1n2zgf6gpc2ss4plhbaw60idpx"; 27128 27170 isLibrary = false; 27129 27171 isExecutable = true; 27130 - enableSeparateDataOutput = true; 27131 27172 executableHaskellDepends = [ 27132 - Agda base bytestring containers deepseq directory filepath 27133 - haskell-src-exts mtl process syb text unordered-containers 27134 - yaml-light 27173 + aeson Agda base bytestring containers deepseq directory filepath 27174 + haskell-src-exts mtl syb text unordered-containers yaml 27135 27175 ]; 27136 27176 description = "Compiling Agda code to readable Haskell"; 27137 27177 license = lib.licenses.bsd3; 27138 27178 hydraPlatforms = lib.platforms.none; 27179 + mainProgram = "agda2hs"; 27139 27180 broken = true; 27140 27181 }) {}; 27141 27182 ··· 28614 28655 ({ mkDerivation, alsa-core, alsa-lib, base, c2hs, unix }: 28615 28656 mkDerivation { 28616 28657 pname = "alsa-mixer"; 28617 - version = "0.3.0"; 28618 - sha256 = "00ny2p3276jilidjs44npc8zmbhynz3f2lpmlwwl6swwx5yijsnb"; 28658 + version = "0.3.0.1"; 28659 + sha256 = "0bxxmsnh2cx63gb19mzwslslwxqhz5m26pd19xnhgs9yyc3jhp57"; 28619 28660 libraryHaskellDepends = [ alsa-core base unix ]; 28620 28661 librarySystemDepends = [ alsa-lib ]; 28621 28662 libraryToolDepends = [ c2hs ]; ··· 30355 30396 pname = "amazonka-core"; 30356 30397 version = "2.0"; 30357 30398 sha256 = "1lsd9nzyvwwp7j4kii6fp7n98x1qa6999ggwwia5sa06fgqz39bm"; 30399 + revision = "1"; 30400 + editedCabalFile = "1w8il9lg9nm71zjh050apiwvwjflmas13mp4n66g8xwpbc5wm0gp"; 30358 30401 libraryHaskellDepends = [ 30359 30402 aeson attoparsec base bytestring case-insensitive conduit 30360 30403 conduit-extra containers crypton deepseq hashable http-client ··· 33909 33952 pname = "amazonka-s3-encryption"; 33910 33953 version = "2.0"; 33911 33954 sha256 = "1cxv36nkaqp30dm89f9bfqmh7dh0nyw4i4n0apdj7p3gckhl3jb9"; 33955 + revision = "1"; 33956 + editedCabalFile = "0b8xbcjrdh9v304i94mdkhvlhg61zmylhf6jq88kjbavlc3g2q0x"; 33912 33957 libraryHaskellDepends = [ 33913 33958 aeson amazonka amazonka-core amazonka-kms amazonka-s3 base 33914 33959 bytestring case-insensitive conduit crypton http-client lens memory ··· 41393 41438 }: 41394 41439 mkDerivation { 41395 41440 pname = "attoparsec-data"; 41396 - version = "1.0.5.3"; 41397 - sha256 = "00clpsv9ggkz34csdwx17fhz6sirvy71g897fwi33qzdv7sb2fx0"; 41441 + version = "1.0.5.4"; 41442 + sha256 = "1wiqdjxl7sg0lbsngmpksl1nflpip8wrjryaq5bvrpyyfdsq8cma"; 41398 41443 libraryHaskellDepends = [ 41399 41444 attoparsec attoparsec-time base bytestring scientific text time 41400 41445 uuid ··· 41596 41641 ({ mkDerivation, attoparsec, base, bytestring, text, time }: 41597 41642 mkDerivation { 41598 41643 pname = "attoparsec-time"; 41599 - version = "1.0.3"; 41600 - sha256 = "1zjr27ajqigl9nlmfrh7ypry36simcbxw61is73157pg0wjb7qyr"; 41644 + version = "1.0.3.1"; 41645 + sha256 = "12x2wi90sh2g58nknbfmci1b3ncivg7rhxfp7d6w4rqd2xj1lgjr"; 41601 41646 libraryHaskellDepends = [ attoparsec base bytestring text time ]; 41602 41647 description = "Attoparsec parsers of time"; 41603 41648 license = lib.licenses.mit; ··· 41972 42017 ({ mkDerivation, base, reflection }: 41973 42018 mkDerivation { 41974 42019 pname = "auto-lift-classes"; 41975 - version = "1.0.1"; 41976 - sha256 = "031nrlghi8xmfx5wc32bcvy1fngrsd7jcjc99kfvxqyzi12ym74k"; 42020 + version = "1.1"; 42021 + sha256 = "1r0pmrj31nb0n2jhz0pzxhxmmwy6q82kxsclwpjgfvhxjn67lq5j"; 41977 42022 libraryHaskellDepends = [ base reflection ]; 41978 42023 testHaskellDepends = [ base ]; 41979 42024 description = "Deriving (Show|Read)(1|2)"; ··· 44451 44496 ({ mkDerivation, barbies, base, split, template-haskell }: 44452 44497 mkDerivation { 44453 44498 pname = "barbies-th"; 44454 - version = "0.1.10"; 44455 - sha256 = "0h16ywwf6dgazwnsqxl82l28vjx51gmh2xn8idlvc7kkl8ylgq54"; 44499 + , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 44500 + sha256 = "0sg3c8m3jl1vifd60a5yac7lm4mygmdgg77z0idjik3cndijxdd8"; 44456 44501 libraryHaskellDepends = [ barbies base split template-haskell ]; 44457 44502 testHaskellDepends = [ barbies base ]; 44458 44503 description = "Create strippable HKD via TH"; ··· 46558 46603 }) {}; 46559 46604 46560 46605 "benc" = callPackage 46561 - ({ mkDerivation, AttoBencode, base, bencode, bencoding, bytestring 46562 - , containers, deepseq, primitive, tasty, tasty-bench, tasty-hunit 46563 - , tasty-quickcheck, text, transformers, vector 46606 + ({ mkDerivation, base, bytestring, containers, deepseq, primitive 46607 + , tasty, tasty-bench, tasty-hunit, tasty-quickcheck, text 46608 + , transformers, vector 46564 46609 }: 46565 46610 mkDerivation { 46566 46611 pname = "benc"; 46567 - version = "0.1.0.0"; 46568 - sha256 = "1nwzd89kgzc7zcswicrv848igf7p1gpgli1pj8h1dc5jnlikz3ka"; 46612 + version = "0.1.1.0"; 46613 + sha256 = "12hp6qpz9wg0myyf9sv0izhd096ilqg0xgw0i96pildlx2cfzgpi"; 46569 46614 libraryHaskellDepends = [ 46570 46615 base bytestring containers primitive text transformers vector 46571 46616 ]; ··· 46574 46619 vector 46575 46620 ]; 46576 46621 benchmarkHaskellDepends = [ 46577 - AttoBencode base bencode bencoding bytestring containers deepseq 46578 - tasty tasty-bench tasty-hunit text transformers vector 46622 + base bytestring containers deepseq tasty tasty-bench tasty-hunit 46623 + text vector 46579 46624 ]; 46580 46625 description = "Bencode encoding and decoding library"; 46581 46626 license = lib.licenses.mit; ··· 47807 47852 }: 47808 47853 mkDerivation { 47809 47854 pname = "binary-parser"; 47810 - version = "0.5.7.4"; 47811 - sha256 = "06lkx75q6ffbdjl442l035xf5rl5ykjzw4488w0xnxzlmyl4v0ms"; 47855 + version = "0.5.7.5"; 47856 + sha256 = "07ywb3z9k0hcs38617470h2y2gwgi49wp4m6a0fzvs7mnxv46bj7"; 47812 47857 libraryHaskellDepends = [ base bytestring mtl text transformers ]; 47813 47858 testHaskellDepends = [ 47814 47859 base-prelude bytestring tasty tasty-hunit tasty-quickcheck ··· 52981 53026 }: 52982 53027 mkDerivation { 52983 53028 pname = "box"; 52984 - version = "0.9.2.0"; 52985 - sha256 = "1gwxbhi6w4h7p1ccd7s8ay78dabg3zj129wl0bhsmn0i6axb0yik"; 53029 + version = "0.9.2.1"; 53030 + sha256 = "0qw7byh3a3zxwkkfm31ng4dl4gfg8w8c998r62ba43z9an61y8di"; 52986 53031 libraryHaskellDepends = [ 52987 53032 async base bytestring containers contravariant dlist exceptions 52988 53033 kan-extensions mtl profunctors semigroupoids stm text time ··· 54503 54548 license = lib.licenses.mit; 54504 54549 }) {}; 54505 54550 54551 + "bugsnag_1_1_0_0" = callPackage 54552 + ({ mkDerivation, aeson, annotated-exception, base, bugsnag-hs 54553 + , bytestring, containers, Glob, hspec, http-client, http-client-tls 54554 + , parsec, template-haskell, text, th-lift-instances, ua-parser 54555 + , unliftio, unordered-containers 54556 + }: 54557 + mkDerivation { 54558 + pname = "bugsnag"; 54559 + version = "1.1.0.0"; 54560 + sha256 = "17iard7dzydyc9gin0b3jk9k55sr20hck71smpzyr8dfs2d3wa3z"; 54561 + isLibrary = true; 54562 + isExecutable = true; 54563 + libraryHaskellDepends = [ 54564 + aeson annotated-exception base bugsnag-hs bytestring containers 54565 + Glob http-client http-client-tls parsec template-haskell text 54566 + th-lift-instances ua-parser unliftio unordered-containers 54567 + ]; 54568 + testHaskellDepends = [ annotated-exception base hspec unliftio ]; 54569 + description = "Bugsnag error reporter for Haskell"; 54570 + license = lib.licenses.mit; 54571 + hydraPlatforms = lib.platforms.none; 54572 + }) {}; 54573 + 54506 54574 "bugsnag-haskell" = callPackage 54507 54575 ({ mkDerivation, aeson, aeson-qq, base, bytestring 54508 54576 , case-insensitive, containers, doctest, Glob, hspec, http-client ··· 55553 55621 }: 55554 55622 mkDerivation { 55555 55623 pname = "byteslice"; 55556 - version = "0.2.11.1"; 55557 - sha256 = "0sp96a2qd6n48nndwfzmp6gcz1lvs488sdrf3vz4lnskris2ghaj"; 55624 + version = "0.2.12.0"; 55625 + sha256 = "1r6ad6ib1fk4bhld3vkzwm1z74px562h7dwsz5gl8582igi9z2mk"; 55558 55626 libraryHaskellDepends = [ 55559 55627 base bytestring natural-arithmetic primitive primitive-addr 55560 55628 primitive-unlifted run-st text text-short tuples vector ··· 55712 55780 ]; 55713 55781 description = "Type-classes to convert values to and from ByteString"; 55714 55782 license = lib.licenses.mpl20; 55715 - hydraPlatforms = lib.platforms.none; 55716 - broken = true; 55717 55783 }) {}; 55718 55784 55719 55785 "bytestring-csv" = callPackage ··· 58473 58539 }: 58474 58540 mkDerivation { 58475 58541 pname = "cairo-image"; 58476 - version = "0.1.0.0"; 58477 - sha256 = "138aihpvys624c1kksg2d7vn7m74vilrfl3w05rgdfl2l6icgcvn"; 58542 + version = "0.1.0.2"; 58543 + sha256 = "1wslqg3gg4iiw8fjrk6nf6kfskjis8n2cxd5ksp2nw487ydijfim"; 58478 58544 libraryHaskellDepends = [ base c-enum primitive template-haskell ]; 58479 58545 libraryPkgconfigDepends = [ cairo ]; 58480 58546 testHaskellDepends = [ base c-enum primitive template-haskell ]; 58481 58547 description = "Image for Cairo"; 58482 58548 license = lib.licenses.bsd3; 58483 - hydraPlatforms = lib.platforms.none; 58484 - broken = true; 58485 58549 }) {inherit (pkgs) cairo;}; 58486 58550 58487 58551 "cake" = callPackage ··· 58857 58921 }: 58858 58922 mkDerivation { 58859 58923 pname = "call-plantuml"; 58860 - version = "0.0.1.2"; 58861 - sha256 = "1n4b079nj637djar5a7jdmqjr1mk2b4x2r0iipzrf2iwhvcw3mfk"; 58862 - revision = "1"; 58863 - editedCabalFile = "1ry3v6kdb76kbvcariwly91b9fjw4660m8piqak3xkgv743ybvgb"; 58924 + version = "0.0.1.3"; 58925 + sha256 = "0g6k5ajfdnhdni2ml31mhlgdvpkdnjsdyrppj15q8v964h68cjxk"; 58864 58926 enableSeparateDataOutput = true; 58865 58927 libraryHaskellDepends = [ async base bytestring filepath process ]; 58866 58928 testHaskellDepends = [ ··· 60493 60555 broken = true; 60494 60556 }) {}; 60495 60557 60558 + "cassava-th" = callPackage 60559 + ({ mkDerivation, base, bytestring, cassava, hspec, template-haskell 60560 + , text, vector 60561 + }: 60562 + mkDerivation { 60563 + pname = "cassava-th"; 60564 + version = "0.1.0.0"; 60565 + sha256 = "1vq64yl6g3knk0vl1100q4w2hiz5pxharx1c6kf3xflcc2252cxh"; 60566 + libraryHaskellDepends = [ 60567 + base bytestring cassava template-haskell text vector 60568 + ]; 60569 + testHaskellDepends = [ 60570 + base bytestring cassava hspec template-haskell text vector 60571 + ]; 60572 + description = "`TemplateHaskell` helpers for `cassava`"; 60573 + license = lib.licenses.bsd3; 60574 + }) {}; 60575 + 60496 60576 "cassette" = callPackage 60497 60577 ({ mkDerivation, base }: 60498 60578 mkDerivation { ··· 61508 61588 ({ mkDerivation, base, cereal, hashable, unordered-containers }: 61509 61589 mkDerivation { 61510 61590 pname = "cereal-unordered-containers"; 61511 - version = "0.1"; 61512 - sha256 = "1gwg67r8z2jzlnks4pki9lwy4hghpynlrmd504mrnw28ahfmp9wn"; 61591 + version = "0.1.0.1"; 61592 + sha256 = "07gngl4m9bzp6izlawfnxa1jbqj6c4zb0w94mdzhxr786bsgnn4k"; 61513 61593 libraryHaskellDepends = [ 61514 61594 base cereal hashable unordered-containers 61515 61595 ]; ··· 62382 62462 ]; 62383 62463 description = "Polykinded Prelude Kernel"; 62384 62464 license = lib.licenses.mit; 62465 + hydraPlatforms = lib.platforms.none; 62385 62466 }) {}; 62386 62467 62387 62468 "chatter" = callPackage ··· 67029 67110 }: 67030 67111 mkDerivation { 67031 67112 pname = "cobot-io"; 67032 - version = "0.1.5.2"; 67033 - sha256 = "1pyr9f30bc3nl777a41ddnfb78bx4y44rbrs3kcxrd5j7nn5n3gv"; 67113 + version = "0.1.5.3"; 67114 + sha256 = "0zjvv8k928q9cdsqvwmgpypjinwrxsia6qzxmga8q2xg9rdgx9fc"; 67034 67115 libraryHaskellDepends = [ 67035 67116 array attoparsec base binary bytestring cobot containers 67036 67117 data-msgpack deepseq filepath http-conduit hyraxAbif lens linear ··· 68747 68828 }: 68748 68829 mkDerivation { 68749 68830 pname = "commonmark"; 68750 - version = "0.2.4"; 68751 - sha256 = "0mhxk8znkjmc17dr7ssikijjgis19mrp4xwc0r1c3vki4vwwwzsm"; 68831 + version = "0.2.4.1"; 68832 + sha256 = "11h4vjxr0zlqp59ap0146byc2ixkmkn77rf05dw3j122g8a1akz1"; 68752 68833 libraryHaskellDepends = [ 68753 68834 base bytestring containers parsec text transformers unicode-data 68754 68835 unicode-transforms ··· 68769 68850 }: 68770 68851 mkDerivation { 68771 68852 pname = "commonmark-cli"; 68772 - version = "0.2"; 68773 - sha256 = "1g3i01acaqfqiqkl5xyxvzrh0alfx3il4r4rcjs4ii1nwaljdg6j"; 68853 + version = "0.2.1"; 68854 + sha256 = "0gc11zz604qsjrdip3cwb8rpz2j73md9014nvmr5wzb8ds6cjnwf"; 68774 68855 isLibrary = false; 68775 68856 isExecutable = true; 68776 68857 executableHaskellDepends = [ ··· 68812 68893 }: 68813 68894 mkDerivation { 68814 68895 pname = "commonmark-extensions"; 68815 - version = "0.2.4"; 68816 - sha256 = "1yrz32lbipzwvxmy4i3vkvs735jfd9jvlhfzh6xm2nx2rjapnx9n"; 68896 + version = "0.2.5.1"; 68897 + sha256 = "070ziwjdgmi36h5asvss0shkay0fbpmfs210i3dq587i0v45d6zp"; 68817 68898 libraryHaskellDepends = [ 68818 68899 base commonmark containers emojis filepath network-uri parsec text 68819 68900 transformers ··· 68832 68913 }: 68833 68914 mkDerivation { 68834 68915 pname = "commonmark-pandoc"; 68835 - version = "0.2.1.3"; 68836 - sha256 = "08bzi6q3jma7xy1ygbpj8li06zwsykmmgl01i4qmp6i9fj8czbbp"; 68916 + version = "0.2.2"; 68917 + sha256 = "12xw0mwwh87zw4m8g10z4xk1c1nhlaqkp8q2vdvsv2r5xdfvvd30"; 68837 68918 libraryHaskellDepends = [ 68838 68919 base commonmark commonmark-extensions pandoc-types text 68839 68920 ]; ··· 68857 68938 ]; 68858 68939 description = "Simple interface to commonmark-hs"; 68859 68940 license = lib.licenses.mit; 68941 + hydraPlatforms = lib.platforms.none; 68942 + broken = true; 68860 68943 }) {}; 68861 68944 68862 68945 "commonmark-wikilink" = callPackage ··· 69408 69491 ]; 69409 69492 description = "Parse a Pandoc to a composite value"; 69410 69493 license = lib.licenses.mit; 69494 + hydraPlatforms = lib.platforms.none; 69411 69495 }) {}; 69412 69496 69413 69497 "compdoc-dhall-decoder" = callPackage ··· 69426 69510 ]; 69427 69511 description = "Allows you to write FromDhall instances for Compdoc"; 69428 69512 license = lib.licenses.bsd3; 69513 + hydraPlatforms = lib.platforms.none; 69429 69514 }) {}; 69430 69515 69431 69516 "compendium-client" = callPackage ··· 69651 69736 }: 69652 69737 mkDerivation { 69653 69738 pname = "composite-aeson"; 69654 - version = "0.8.2.1"; 69655 - sha256 = "0glzqkd0vxrbajx76gfwqvrdg2q6648x64x5fm876899dr9cbss7"; 69739 + version = "0.8.2.2"; 69740 + sha256 = "1psza7v7hqarwjyagij3ishrw5wfxsrchp9jp6w7dwfj8ls2gkgb"; 69656 69741 libraryHaskellDepends = [ 69657 69742 aeson aeson-better-errors base composite-base containers 69658 69743 contravariant generic-deriving hashable lens mmorph mtl profunctors ··· 69667 69752 ]; 69668 69753 description = "JSON for Vinyl records"; 69669 69754 license = lib.licenses.bsd3; 69755 + hydraPlatforms = lib.platforms.none; 69670 69756 }) {}; 69671 69757 69672 69758 "composite-aeson-cofree-list" = callPackage ··· 69682 69768 ]; 69683 69769 description = "Print a Cofree [] as a JSON value"; 69684 69770 license = lib.licenses.mit; 69771 + hydraPlatforms = lib.platforms.none; 69685 69772 }) {}; 69686 69773 69687 69774 "composite-aeson-path" = callPackage 69688 69775 ({ mkDerivation, base, composite-aeson, path }: 69689 69776 mkDerivation { 69690 69777 pname = "composite-aeson-path"; 69691 - version = "0.8.2.1"; 69692 - sha256 = "096k8wg3r4rfn4yyqpn8higglllk4mq3iwy57x33mnqgxqbdc1lm"; 69778 + version = "0.8.2.2"; 69779 + sha256 = "0xw9b0fhr44v61rzn5vi9bz859arb33irsgs7xnf3s0d6xspjdvp"; 69693 69780 libraryHaskellDepends = [ base composite-aeson path ]; 69694 69781 description = "Formatting data for the path library"; 69695 69782 license = lib.licenses.bsd3; ··· 69703 69790 }: 69704 69791 mkDerivation { 69705 69792 pname = "composite-aeson-refined"; 69706 - version = "0.8.2.1"; 69707 - sha256 = "1k1hvhczrpx13z0zryih56dhnajmsrspaslrrbir7kbr9c3mc1jq"; 69793 + version = "0.8.2.2"; 69794 + sha256 = "0rm08bslz2nphr4ip3ljfizvjjf84fl7hd1gfq7b1q3jr5fn8jfp"; 69708 69795 libraryHaskellDepends = [ 69709 69796 aeson-better-errors base composite-aeson mtl refined 69710 69797 ]; ··· 69727 69814 ]; 69728 69815 description = "MonadThrow behaviour for composite-aeson"; 69729 69816 license = lib.licenses.mit; 69817 + hydraPlatforms = lib.platforms.none; 69730 69818 }) {}; 69731 69819 69732 69820 "composite-aeson-writeonly" = callPackage ··· 69741 69829 ]; 69742 69830 description = "WriteOnly indicators for composite-aeson"; 69743 69831 license = lib.licenses.mit; 69832 + hydraPlatforms = lib.platforms.none; 69744 69833 }) {}; 69745 69834 69746 69835 "composite-base" = callPackage ··· 69750 69839 }: 69751 69840 mkDerivation { 69752 69841 pname = "composite-base"; 69753 - version = "0.8.2.1"; 69754 - sha256 = "0i2mamh5gz7ay1cm5nkmdbh2lnaph42pfi2aa9jb2baxi0jgxdri"; 69755 - revision = "1"; 69756 - editedCabalFile = "1fww7f7z583vp7kfrf6xi6y0plpm4jsh3j72xbgarprlz25j1aip"; 69842 + version = "0.8.2.2"; 69843 + sha256 = "1ykicnm8wc18bg3w0jyg943rpnssmi58ksv25mww653c4z5kx7cp"; 69757 69844 libraryHaskellDepends = [ 69758 69845 base deepseq exceptions lens monad-control mtl profunctors 69759 69846 template-haskell text transformers transformers-base unliftio-core ··· 69766 69853 ]; 69767 69854 description = "Shared utilities for composite-* packages"; 69768 69855 license = lib.licenses.bsd3; 69856 + hydraPlatforms = lib.platforms.none; 69857 + broken = true; 69769 69858 }) {}; 69770 69859 69771 69860 "composite-binary" = callPackage 69772 69861 ({ mkDerivation, base, binary, composite-base }: 69773 69862 mkDerivation { 69774 69863 pname = "composite-binary"; 69775 - version = "0.8.2.1"; 69776 - sha256 = "0bxnzxvw5mjhz3kh6x265l70hp1z3z1y9fbdwhrgv6bhhinxb3hq"; 69864 + version = "0.8.2.2"; 69865 + sha256 = "0w5kwhdqq83312kn0w8119fin8rld9wxkjsp3yz2yg35w06nmv8d"; 69777 69866 libraryHaskellDepends = [ base binary composite-base ]; 69778 69867 description = "Orphan binary instances"; 69779 69868 license = lib.licenses.bsd3; 69869 + hydraPlatforms = lib.platforms.none; 69780 69870 }) {}; 69781 69871 69782 69872 "composite-cassava" = callPackage ··· 69823 69913 }: 69824 69914 mkDerivation { 69825 69915 pname = "composite-ekg"; 69826 - version = "0.8.2.1"; 69827 - sha256 = "0c0rxa30r19wcvqrw20xk96652mxknbs1lqpnzdj9kz77al3k1kl"; 69916 + version = "0.8.2.2"; 69917 + sha256 = "0r4bf228irgnvp8b38kqd763idxqzdfavs0v9rpzwpgxb3f1xya5"; 69828 69918 libraryHaskellDepends = [ 69829 69919 base composite-base ekg-core lens text vinyl 69830 69920 ]; ··· 69838 69928 ({ mkDerivation, base, composite-base, hashable }: 69839 69929 mkDerivation { 69840 69930 pname = "composite-hashable"; 69841 - version = "0.8.2.1"; 69842 - sha256 = "1ynsmb9rw93n4dyrrfipb9glg5argh0xsbrb59jhgqi8ajfr7gwv"; 69931 + version = "0.8.2.2"; 69932 + sha256 = "10iih8jq6wz7p7qaywxhyh5pfm0jlbw51z1x2s7n12qci5sl64gj"; 69843 69933 libraryHaskellDepends = [ base composite-base hashable ]; 69844 69934 description = "Orphan hashable instances"; 69845 69935 license = lib.licenses.bsd3; 69936 + hydraPlatforms = lib.platforms.none; 69846 69937 }) {}; 69847 69938 69848 69939 "composite-ix" = callPackage ··· 69861 69952 ]; 69862 69953 description = "Indexing utilities for composite records"; 69863 69954 license = lib.licenses.bsd3; 69955 + hydraPlatforms = lib.platforms.none; 69864 69956 }) {}; 69865 69957 69866 69958 "composite-lens-extra" = callPackage ··· 69872 69964 libraryHaskellDepends = [ base composite-base lens vinyl ]; 69873 69965 description = "Extra lens functions for composite"; 69874 69966 license = lib.licenses.mit; 69967 + hydraPlatforms = lib.platforms.none; 69875 69968 }) {}; 69876 69969 69877 69970 "composite-opaleye" = callPackage ··· 69881 69974 }: 69882 69975 mkDerivation { 69883 69976 pname = "composite-opaleye"; 69884 - version = "0.8.2.1"; 69885 - sha256 = "0w62s1cd6izkvc9ycb6rz6cbc7pa8mic9rbbmwjbn9xxfcbk2xph"; 69977 + version = "0.8.2.2"; 69978 + sha256 = "0b5qi1d4l0ckcr3klfhak1r9q2y0qhx76ph56sd3jhgdi4lqqkhx"; 69886 69979 libraryHaskellDepends = [ 69887 69980 base bytestring composite-base lens opaleye postgresql-simple 69888 69981 product-profunctors profunctors split template-haskell text vinyl ··· 69905 69998 }: 69906 69999 mkDerivation { 69907 70000 pname = "composite-swagger"; 69908 - version = "0.8.2.1"; 69909 - sha256 = "0sbjb60ghd86q3hxgmq4anc81ww4v4ny1ans0r9a5chp3bqvbi6a"; 70001 + version = "0.8.2.2"; 70002 + sha256 = "0csb93svrzzcj3csbixjb668jhdvlwkvx1ax14p6bmv250khqlw6"; 69910 70003 libraryHaskellDepends = [ 69911 70004 base composite-base insert-ordered-containers lens swagger2 69912 70005 template-haskell text vinyl ··· 69932 70025 libraryHaskellDepends = [ base composite-base ]; 69933 70026 description = "Tuple functions for composite records"; 69934 70027 license = lib.licenses.mit; 70028 + hydraPlatforms = lib.platforms.none; 69935 70029 }) {}; 69936 70030 69937 70031 "composite-xml" = callPackage ··· 69951 70045 ]; 69952 70046 description = "RecXML Type"; 69953 70047 license = lib.licenses.mit; 70048 + hydraPlatforms = lib.platforms.none; 69954 70049 }) {}; 69955 70050 69956 70051 "composite-xstep" = callPackage ··· 69962 70057 libraryHaskellDepends = [ base composite-base vinyl ]; 69963 70058 description = "ReaderT transformer pattern for higher kinded composite data"; 69964 70059 license = lib.licenses.mit; 70060 + hydraPlatforms = lib.platforms.none; 69965 70061 }) {}; 69966 70062 69967 70063 "composition" = callPackage ··· 70922 71018 70923 71019 "conduino" = callPackage 70924 71020 ({ mkDerivation, base, bytestring, containers, exceptions, free 70925 - , list-transformer, mtl, transformers 71021 + , list-transformer, mtl, text, transformers 70926 71022 }: 70927 71023 mkDerivation { 70928 71024 pname = "conduino"; 70929 - version = "0.2.2.0"; 70930 - sha256 = "0jdhj71nva9v8f40wzkd2wzikpgwlzqid0inyfdlj4wnn83qwwk2"; 71025 + version = "0.2.4.0"; 71026 + sha256 = "0xxjcm8kccmfmy5sljw89lpy3wma7sbd3hq1lpx7232rr3qxj8pj"; 71027 + revision = "2"; 71028 + editedCabalFile = "1zyyv43zcwicabyjyp0xp4v91sy7f4c02xdw7ha5qhh28hgrckq7"; 70931 71029 libraryHaskellDepends = [ 70932 71030 base bytestring containers exceptions free list-transformer mtl 70933 - transformers 71031 + text transformers 70934 71032 ]; 70935 71033 description = "Lightweight composable continuation-based stream processors"; 70936 71034 license = lib.licenses.bsd3; ··· 72111 72209 }: 72112 72210 mkDerivation { 72113 72211 pname = "configurator-pg"; 72114 - version = "0.2.7"; 72115 - sha256 = "17ik5vl6zriqgp7fxkv60l6jcfnh842rw5254ly3wy2c13nk9h4f"; 72212 + version = "0.2.9"; 72213 + sha256 = "137kp7720k8xwxdgpyjd5lrrlmg7p03jb5p60rszy34pfr3zv8v9"; 72116 72214 libraryHaskellDepends = [ 72117 72215 base containers megaparsec protolude scientific text 72118 72216 ]; ··· 73026 73124 }: 73027 73125 mkDerivation { 73028 73126 pname = "context"; 73029 - version = "0.2.0.2"; 73030 - sha256 = "0wrqjpdiwpv3gcxqbfn0ixqfxfp6d1xnj6slkkz744bl1dmxdhaf"; 73127 + version = "0.2.0.3"; 73128 + sha256 = "0hgpnv3bbyhksb8klb5cxalgj8p52az7gk3zpim85x9fymsplwp0"; 73031 73129 libraryHaskellDepends = [ base containers exceptions ]; 73032 73130 testHaskellDepends = [ async base ghc-prim hspec ]; 73033 73131 testToolDepends = [ hspec-discover ]; ··· 78403 78501 mainProgram = "currycarbon"; 78404 78502 }) {}; 78405 78503 78406 - "currycarbon_0_3_0_0" = callPackage 78407 - ({ mkDerivation, base, filepath, hspec, math-functions, MonadRandom 78408 - , optparse-applicative, parsec, process, random, vector 78504 + "currycarbon_0_3_0_1" = callPackage 78505 + ({ mkDerivation, base, filepath, hspec, hspec-core, math-functions 78506 + , MonadRandom, optparse-applicative, parsec, process, random 78507 + , vector 78409 78508 }: 78410 78509 mkDerivation { 78411 78510 pname = "currycarbon"; 78412 - version = "0.3.0.0"; 78413 - sha256 = "0vdalraqcwvn2w530y7yzwvjrq7f7l727xsnx7k8ajwrvs13dfng"; 78511 + version = "0.3.0.1"; 78512 + sha256 = "0bgak5yamhqprrjqjslr0w7acmzgz65scm67nnqmga1yf6klz5jk"; 78414 78513 isLibrary = true; 78415 78514 isExecutable = true; 78416 78515 libraryHaskellDepends = [ 78417 78516 base filepath math-functions MonadRandom parsec random vector 78418 78517 ]; 78419 78518 executableHaskellDepends = [ base filepath optparse-applicative ]; 78420 - testHaskellDepends = [ base hspec process ]; 78519 + testHaskellDepends = [ base hspec hspec-core process ]; 78421 78520 description = "A package for simple, fast radiocarbon calibration"; 78422 78521 license = lib.licenses.mit; 78423 78522 hydraPlatforms = lib.platforms.none; ··· 78610 78709 }: 78611 78710 mkDerivation { 78612 78711 pname = "curve25519"; 78613 - version = "0.2.7"; 78614 - sha256 = "1p8b1lppkvc19974hr43lcqdi4nj55j2nf7gsnp8dn7gyf23aayq"; 78712 + version = "0.2.8"; 78713 + sha256 = "1v621hk9lkz7p8p521jvsa9hi7ssynj9fy1x16lhfnr18gzi789i"; 78615 78714 libraryHaskellDepends = [ base bytestring crypto-api ]; 78616 78715 testHaskellDepends = [ 78617 78716 base bytestring crypto-api HUnit QuickCheck tagged test-framework ··· 83617 83716 }: 83618 83717 mkDerivation { 83619 83718 pname = "deferred-folds"; 83620 - version = "0.9.18.5"; 83621 - sha256 = "1riczgknn87b7cqpk8crq33zwkq80gv5ha9ang5ib5rlg6fmckn4"; 83719 + version = "0.9.18.6"; 83720 + sha256 = "00lg3f50pp5nj6lr0ia2xkfag7g7nxdg8wzfmcmpvis0010wxzzb"; 83622 83721 libraryHaskellDepends = [ 83623 83722 base bytestring containers foldl hashable primitive text 83624 83723 transformers unordered-containers vector ··· 83749 83848 hydraPlatforms = lib.platforms.none; 83750 83849 }) {}; 83751 83850 83851 + "defun" = callPackage 83852 + ({ mkDerivation, base, defun-bool, defun-core, defun-sop, sop-core 83853 + }: 83854 + mkDerivation { 83855 + pname = "defun"; 83856 + version = "0.1"; 83857 + sha256 = "1h9lihmqnqkr70br04f6vppzdm3q8k5l8n7sk1h4x3rvkykf4mly"; 83858 + libraryHaskellDepends = [ defun-bool defun-core defun-sop ]; 83859 + testHaskellDepends = [ base sop-core ]; 83860 + description = "Defunctionalization helpers"; 83861 + license = lib.licenses.bsd3; 83862 + hydraPlatforms = lib.platforms.none; 83863 + }) {}; 83864 + 83865 + "defun-bool" = callPackage 83866 + ({ mkDerivation, base, defun-core, singleton-bool }: 83867 + mkDerivation { 83868 + pname = "defun-bool"; 83869 + version = "0.1"; 83870 + sha256 = "0w7g66w7vc2mli713frf959g2pysjr5xaagggjfq699fyscyad3k"; 83871 + libraryHaskellDepends = [ base defun-core singleton-bool ]; 83872 + description = "Defunctionalization helpers: booleans"; 83873 + license = lib.licenses.bsd3; 83874 + hydraPlatforms = lib.platforms.none; 83875 + broken = true; 83876 + }) {}; 83877 + 83878 + "defun-core" = callPackage 83879 + ({ mkDerivation, base }: 83880 + mkDerivation { 83881 + pname = "defun-core"; 83882 + version = "0.1"; 83883 + sha256 = "1vxkasxvkkk0x11r850h14fh37pfyavd0pib5zgnj4w0ddmqx00g"; 83884 + libraryHaskellDepends = [ base ]; 83885 + description = "Defunctionalization helpers: core definitions"; 83886 + license = lib.licenses.bsd3; 83887 + }) {}; 83888 + 83889 + "defun-sop" = callPackage 83890 + ({ mkDerivation, base, defun-core, sop-core }: 83891 + mkDerivation { 83892 + pname = "defun-sop"; 83893 + version = "0.1"; 83894 + sha256 = "1zd8laprbmaaxgj21n8bnrax2m9l67y950d1fs8b2bdlsc33llc8"; 83895 + libraryHaskellDepends = [ base defun-core sop-core ]; 83896 + description = "Defunctionalization helpers: lists"; 83897 + license = lib.licenses.bsd3; 83898 + }) {}; 83899 + 83752 83900 "deiko-config" = callPackage 83753 83901 ({ mkDerivation, array, base, containers, exceptions, mtl, parsec 83754 83902 , text, transformers ··· 84385 84533 license = lib.licenses.publicDomain; 84386 84534 }) {}; 84387 84535 84388 - "dependent-sum-template_0_2_0_0" = callPackage 84536 + "dependent-sum-template_0_2_0_1" = callPackage 84389 84537 ({ mkDerivation, base, constraints-extras, containers, mtl, some 84390 84538 , template-haskell, th-abstraction 84391 84539 }: 84392 84540 mkDerivation { 84393 84541 pname = "dependent-sum-template"; 84394 - version = "0.2.0.0"; 84395 - sha256 = "10as7ywsm83xaz6glxqpghla1zsqxqy980i1rdiiia1k3j1jsqy9"; 84542 + version = "0.2.0.1"; 84543 + sha256 = "0rba7jf9hpn73gcqqkxvfk8j5mifb49glp6gjc8k93pg78zy7yqf"; 84396 84544 libraryHaskellDepends = [ 84397 84545 base containers mtl some template-haskell th-abstraction 84398 84546 ]; ··· 85242 85390 }: 85243 85391 mkDerivation { 85244 85392 pname = "df1-html"; 85245 - version = "0.1"; 85246 - sha256 = "0qjwnh959621jm3y3hi54s2chcchflj9cmlrfysvb80ycyj6fs8x"; 85393 + version = "0.1.1"; 85394 + sha256 = "1ghqwfyv720qffvf0dmg9c4wclljzlkd9r8p5jafl96cfqqbjphb"; 85247 85395 libraryHaskellDepends = [ 85248 85396 attoparsec base bytestring containers df1 text time xmlbf 85249 85397 ]; ··· 85354 85502 broken = true; 85355 85503 }) {}; 85356 85504 85357 - "dhall_1_29_0" = callPackage 85358 - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 85359 - , base, bytestring, case-insensitive, cborg, cborg-json, containers 85360 - , contravariant, cryptonite, data-fix, deepseq, Diff, directory 85361 - , doctest, dotgen, either, exceptions, filepath, foldl, gauge 85362 - , generic-random, hashable, haskeline, http-client, http-client-tls 85363 - , http-types, lens-family-core, megaparsec, memory, mockery, mtl 85364 - , network-uri, optparse-applicative, parsers, pretty-simple 85365 - , prettyprinter, prettyprinter-ansi-terminal, profunctors 85366 - , QuickCheck, quickcheck-instances, repline, scientific, semigroups 85367 - , serialise, special-values, spoon, tasty, tasty-expected-failure 85368 - , tasty-hunit, tasty-quickcheck, template-haskell, text 85369 - , th-lift-instances, transformers, transformers-compat, turtle 85370 - , unordered-containers, uri-encode, vector 85371 - }: 85372 - mkDerivation { 85373 - pname = "dhall"; 85374 - version = "1.29.0"; 85375 - sha256 = "1xp76wv36rfffym71gwdqsmwg3znmpsq5x9zgz3hfmzigxqmjgn7"; 85376 - revision = "2"; 85377 - editedCabalFile = "1qksvk63vmypqcd9hasacmqw7gsqcggs5lk85x7w2731mh3c3sa8"; 85378 - isLibrary = true; 85379 - isExecutable = true; 85380 - libraryHaskellDepends = [ 85381 - aeson aeson-pretty ansi-terminal atomic-write base bytestring 85382 - case-insensitive cborg cborg-json containers contravariant 85383 - cryptonite data-fix deepseq Diff directory dotgen either exceptions 85384 - filepath hashable haskeline http-client http-client-tls http-types 85385 - lens-family-core megaparsec memory mtl network-uri 85386 - optparse-applicative parsers pretty-simple prettyprinter 85387 - prettyprinter-ansi-terminal profunctors repline scientific 85388 - serialise template-haskell text th-lift-instances transformers 85389 - transformers-compat unordered-containers uri-encode vector 85390 - ]; 85391 - executableHaskellDepends = [ base ]; 85392 - testHaskellDepends = [ 85393 - base bytestring cborg containers data-fix deepseq directory doctest 85394 - either filepath foldl generic-random lens-family-core megaparsec 85395 - mockery prettyprinter QuickCheck quickcheck-instances scientific 85396 - semigroups serialise special-values spoon tasty 85397 - tasty-expected-failure tasty-hunit tasty-quickcheck text 85398 - transformers turtle unordered-containers vector 85399 - ]; 85400 - benchmarkHaskellDepends = [ 85401 - base bytestring containers directory gauge serialise text 85402 - ]; 85403 - doCheck = false; 85404 - description = "A configuration language guaranteed to terminate"; 85405 - license = lib.licenses.bsd3; 85406 - hydraPlatforms = lib.platforms.none; 85407 - mainProgram = "dhall"; 85408 - maintainers = [ lib.maintainers.Gabriella439 ]; 85409 - }) {}; 85410 - 85411 - "dhall_1_38_1" = callPackage 85412 - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 85413 - , base, bytestring, case-insensitive, cborg, cborg-json, containers 85414 - , contravariant, cryptonite, data-fix, deepseq, Diff, directory 85415 - , doctest, dotgen, either, exceptions, filepath, foldl, gauge 85416 - , generic-random, half, hashable, haskeline, http-client 85417 - , http-client-tls, http-types, lens-family-core, megaparsec, memory 85418 - , mmorph, mockery, mtl, network-uri, optparse-applicative 85419 - , parser-combinators, parsers, pretty-simple, prettyprinter 85420 - , prettyprinter-ansi-terminal, profunctors, QuickCheck 85421 - , quickcheck-instances, repline, scientific, serialise 85422 - , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit 85423 - , tasty-quickcheck, tasty-silver, template-haskell, text 85424 - , text-manipulate, th-lift-instances, transformers 85425 - , transformers-compat, turtle, unordered-containers, uri-encode 85426 - , vector 85427 - }: 85428 - mkDerivation { 85429 - pname = "dhall"; 85430 - version = "1.38.1"; 85431 - sha256 = "0g70x2crdrkwf41gvwr718am25dmbn9bg4cml9f9va7i1vx5rsgk"; 85432 - revision = "2"; 85433 - editedCabalFile = "02z0jmzzp20yj46iz6i384xwc6k2anxb33smvc4yhpmhqjs0aq8a"; 85434 - isLibrary = true; 85435 - isExecutable = true; 85436 - enableSeparateDataOutput = true; 85437 - libraryHaskellDepends = [ 85438 - aeson aeson-pretty ansi-terminal atomic-write base bytestring 85439 - case-insensitive cborg cborg-json containers contravariant 85440 - cryptonite data-fix deepseq Diff directory dotgen either exceptions 85441 - filepath half hashable haskeline http-client http-client-tls 85442 - http-types lens-family-core megaparsec memory mmorph mtl 85443 - network-uri optparse-applicative parser-combinators parsers 85444 - pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 85445 - repline scientific serialise template-haskell text text-manipulate 85446 - th-lift-instances transformers transformers-compat 85447 - unordered-containers uri-encode vector 85448 - ]; 85449 - executableHaskellDepends = [ base ]; 85450 - testHaskellDepends = [ 85451 - base bytestring cborg containers data-fix deepseq directory doctest 85452 - either filepath foldl generic-random http-client http-client-tls 85453 - lens-family-core megaparsec mockery prettyprinter QuickCheck 85454 - quickcheck-instances scientific serialise special-values spoon 85455 - tasty tasty-expected-failure tasty-hunit tasty-quickcheck 85456 - tasty-silver template-haskell text transformers turtle 85457 - unordered-containers vector 85458 - ]; 85459 - benchmarkHaskellDepends = [ 85460 - base bytestring containers directory gauge text 85461 - ]; 85462 - doCheck = false; 85463 - description = "A configuration language guaranteed to terminate"; 85464 - license = lib.licenses.bsd3; 85465 - hydraPlatforms = lib.platforms.none; 85466 - mainProgram = "dhall"; 85467 - maintainers = [ lib.maintainers.Gabriella439 ]; 85468 - }) {}; 85469 - 85470 85505 "dhall" = callPackage 85471 85506 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 85472 85507 , base, base16-bytestring, bytestring, case-insensitive, cborg ··· 87271 87306 ({ mkDerivation, base, bytestring, zlib }: 87272 87307 mkDerivation { 87273 87308 pname = "digest"; 87274 - version = "0.0.1.7"; 87275 - sha256 = "02jzw0bsng87y1n2kgpy7vb30lvqsnpbfd8dpg4hmvbg9s06qgdj"; 87276 - revision = "1"; 87277 - editedCabalFile = "0wh34kyag2vhwvsdwv8qmvm13gy32nc94yfyqfdnl67nyc2sx8wl"; 87309 + version = "0.0.2.0"; 87310 + sha256 = "0ha4f0jckngqy558shd08yp99wj87c5wazp5zr5y6as608zb7wx8"; 87278 87311 libraryHaskellDepends = [ base bytestring ]; 87279 87312 libraryPkgconfigDepends = [ zlib ]; 87280 - description = "Various hashes for bytestrings; CRC32 and Adler32 for now"; 87313 + description = "CRC32 and Adler32 hashes for bytestrings"; 87281 87314 license = lib.licenses.bsd2; 87282 87315 }) {inherit (pkgs) zlib;}; 87283 87316 ··· 88001 88034 hydraPlatforms = lib.platforms.none; 88002 88035 }) {}; 88003 88036 88004 - "directory_1_3_8_1" = callPackage 88037 + "directory_1_3_8_2" = callPackage 88005 88038 ({ mkDerivation, base, filepath, time, unix }: 88006 88039 mkDerivation { 88007 88040 pname = "directory"; 88008 - version = "1.3.8.1"; 88009 - sha256 = "174fkmss6yxvnyd0wawkc1l1f5rqkpl2s387ad2jvlw7flcm70mx"; 88010 - revision = "1"; 88011 - editedCabalFile = "1yd7hqs70486gbf7yms6gbx2zm34m1hakx5rh3dd4rd38w4hlfxx"; 88041 + version = "1.3.8.2"; 88042 + sha256 = "1zx0833zdalz131vwr7vckara0plm16mb86ilpj3mvd5yyvrwzkp"; 88012 88043 libraryHaskellDepends = [ base filepath time unix ]; 88013 88044 testHaskellDepends = [ base filepath time unix ]; 88014 88045 description = "Platform-agnostic library for filesystem operations"; ··· 88228 88259 ({ mkDerivation, algebraic-graphs, arithmoi, base, bytestring 88229 88260 , containers, directory, exact-combinatorics, exceptions, fgl 88230 88261 , filepath, haskeline, integer-logarithms, lens, megaparsec, mtl 88231 - , oeis, optparse-applicative, parser-combinators, polysemy 88232 - , polysemy-plugin, polysemy-zoo, pretty, pretty-show, process 88233 - , QuickCheck, simple-enumeration, split, splitmix, tasty 88262 + , optparse-applicative, parser-combinators, polysemy 88263 + , polysemy-plugin, polysemy-zoo, pretty-show, prettyprinter 88264 + , process, QuickCheck, simple-enumeration, split, splitmix, tasty 88234 88265 , tasty-golden, transformers, unbound-generics 88235 88266 }: 88236 88267 mkDerivation { 88237 88268 pname = "disco"; 88238 - version = "0.1.5"; 88239 - sha256 = "023pa9jgvxk1p56aydki91c8xmxx63m5w0v6bdyy1dqnwcgqlzzy"; 88269 + version = "0.1.6"; 88270 + sha256 = "15p8md2lssmk4fc2lzbsg0qp0zvzq4d8gxkwrrwaqjwj982cz0fz"; 88240 88271 isLibrary = true; 88241 88272 isExecutable = true; 88242 88273 enableSeparateDataOutput = true; 88243 88274 libraryHaskellDepends = [ 88244 88275 algebraic-graphs arithmoi base containers directory 88245 88276 exact-combinatorics exceptions fgl filepath haskeline 88246 - integer-logarithms lens megaparsec mtl oeis optparse-applicative 88247 - parser-combinators polysemy polysemy-plugin polysemy-zoo pretty 88248 - pretty-show QuickCheck simple-enumeration split splitmix 88249 - transformers unbound-generics 88277 + integer-logarithms lens megaparsec mtl optparse-applicative 88278 + parser-combinators polysemy polysemy-plugin polysemy-zoo 88279 + pretty-show prettyprinter QuickCheck simple-enumeration split 88280 + splitmix transformers unbound-generics 88250 88281 ]; 88251 88282 executableHaskellDepends = [ 88252 88283 base containers directory filepath haskeline lens megaparsec mtl 88253 - oeis optparse-applicative transformers unbound-generics 88284 + optparse-applicative transformers unbound-generics 88254 88285 ]; 88255 88286 testHaskellDepends = [ 88256 88287 base bytestring directory filepath process tasty tasty-golden ··· 91051 91082 91052 91083 "domain" = callPackage 91053 91084 ({ mkDerivation, attoparsec, base, bytestring, domain-core, foldl 91054 - , hashable, parser-combinators, QuickCheck, quickcheck-instances 91055 - , rerebase, tasty, tasty-hunit, tasty-quickcheck, template-haskell 91056 - , template-haskell-compat-v0208, text, th-lego, th-orphans 91057 - , yaml-unscrambler 91085 + , hashable, parser-combinators, rerebase, tasty, tasty-hunit 91086 + , template-haskell, template-haskell-compat-v0208, text, th-lego 91087 + , th-orphans, yaml-unscrambler 91058 91088 }: 91059 91089 mkDerivation { 91060 91090 pname = "domain"; 91061 - version = "0.1.1.4"; 91062 - sha256 = "0fdpbcn2cyfpkp8qln87b27fqrsy95n7sb2x3bpwhbr5dzz55ih2"; 91091 + version = "0.1.1.5"; 91092 + sha256 = "17a49jrq967xvwkzk01rjwhp9vvhkjq9d1z3vxwbsmg4a02q1rlx"; 91063 91093 libraryHaskellDepends = [ 91064 91094 attoparsec base bytestring domain-core foldl hashable 91065 - parser-combinators template-haskell template-haskell-compat-v0208 91066 - text th-lego yaml-unscrambler 91095 + parser-combinators template-haskell text th-lego yaml-unscrambler 91067 91096 ]; 91068 91097 testHaskellDepends = [ 91069 - base domain-core QuickCheck quickcheck-instances rerebase tasty 91070 - tasty-hunit tasty-quickcheck template-haskell 91098 + base domain-core rerebase tasty tasty-hunit template-haskell 91071 91099 template-haskell-compat-v0208 text th-orphans 91072 91100 ]; 91073 91101 description = "Codegen helping you define domain models"; ··· 91082 91110 }: 91083 91111 mkDerivation { 91084 91112 pname = "domain-aeson"; 91085 - version = "0.1.1.1"; 91086 - sha256 = "0g363qyri9s6qbp52znah3qgnrqh0cn4xlfyp7hmjjwmllnm8dsn"; 91113 + version = "0.1.1.2"; 91114 + sha256 = "01jg6psmpywkw76yf8gasiivkxigfnr2r3hapqrig34wl9ns3ags"; 91087 91115 libraryHaskellDepends = [ 91088 91116 aeson base domain-core template-haskell 91089 91117 template-haskell-compat-v0208 text th-lego vector ··· 91121 91149 }: 91122 91150 mkDerivation { 91123 91151 pname = "domain-cereal"; 91124 - version = "0.1"; 91125 - sha256 = "0ap4rrkhp5ggwy5fjwhg0v4ii1ayxf6w7ary2k8jc82v46bpl5is"; 91152 + version = "0.1.0.1"; 91153 + sha256 = "1wpmiwyn4aki5z0idizznaq94yy0nd7c32ns5m54b9lhakb2wlg8"; 91126 91154 libraryHaskellDepends = [ 91127 91155 base cereal domain-core leb128-cereal template-haskell 91128 91156 template-haskell-compat-v0208 text th-lego ··· 91133 91161 }) {}; 91134 91162 91135 91163 "domain-core" = callPackage 91136 - ({ mkDerivation, base, template-haskell 91137 - , template-haskell-compat-v0208, text, th-lego, th-lift-instances 91164 + ({ mkDerivation, base, template-haskell, text, th-lego 91165 + , th-lift-instances 91138 91166 }: 91139 91167 mkDerivation { 91140 91168 pname = "domain-core"; 91141 - version = "0.1.0.3"; 91142 - sha256 = "0wpi5qks29ij8m1s6x3kc66dw706xn28l6vlwfrccqw77603g85a"; 91169 + version = "0.1.0.4"; 91170 + sha256 = "043f2lj3yxk42dxid2z768bnaw7v6sw08j2sp4cxj59jzzcvhn15"; 91143 91171 libraryHaskellDepends = [ 91144 - base template-haskell template-haskell-compat-v0208 text th-lego 91145 - th-lift-instances 91172 + base template-haskell text th-lego th-lift-instances 91146 91173 ]; 91147 91174 description = "Low-level API of \"domain\""; 91148 91175 license = lib.licenses.mit; 91149 91176 }) {}; 91150 91177 91151 91178 "domain-optics" = callPackage 91152 - ({ mkDerivation, base, domain, domain-core, optics, optics-core 91153 - , rerebase, template-haskell, template-haskell-compat-v0208, text 91154 - , th-lego, unordered-containers 91179 + ({ mkDerivation, base, domain, domain-core, optics-core, rerebase 91180 + , template-haskell, template-haskell-compat-v0208, text, th-lego 91155 91181 }: 91156 91182 mkDerivation { 91157 91183 pname = "domain-optics"; 91158 - version = "0.1.0.3"; 91159 - sha256 = "0bfp6vidn10p0jjzmag0cdxncb5mq1qlp0v851hqps5cl9qshnbk"; 91184 + version = "0.1.0.4"; 91185 + sha256 = "1sjjdb0w7cl30wyz2gi0z9cgsky5lifps7kvhnlg0fgl7yvgnf9w"; 91160 91186 libraryHaskellDepends = [ 91161 91187 base domain-core optics-core template-haskell 91162 - template-haskell-compat-v0208 text th-lego unordered-containers 91188 + template-haskell-compat-v0208 text th-lego 91163 91189 ]; 91164 - testHaskellDepends = [ domain optics rerebase ]; 91190 + testHaskellDepends = [ domain rerebase ]; 91165 91191 description = "Integration of domain with optics"; 91166 91192 license = lib.licenses.mit; 91167 91193 hydraPlatforms = lib.platforms.none; ··· 94026 94052 }: 94027 94053 mkDerivation { 94028 94054 pname = "ebird-api"; 94029 - version = "0.1.0.0"; 94030 - sha256 = "1b50rdg3d3cam7g4xiklanamrfxhm8dl8kcg4h5nb4yj5f75dsad"; 94055 + version = "0.2.0.0"; 94056 + sha256 = "1p0dzm0wvkrfl64z6lk3r2y4pc02rjszxjff7lddglh2ys554hg5"; 94031 94057 libraryHaskellDepends = [ 94032 94058 aeson attoparsec attoparsec-iso8601 base optics servant text time 94033 94059 ]; ··· 94042 94068 }: 94043 94069 mkDerivation { 94044 94070 pname = "ebird-cli"; 94045 - version = "0.2.0.0"; 94046 - sha256 = "0vla1xz74qjpfa0qjfkvlp19mdv58dp1kr0m0g9jg07aqjwa4r92"; 94071 + version = "0.3.0.0"; 94072 + sha256 = "1l0pm1ha2shrm1b2qp8b9c0jrbsg8qjmq0srval1y9bxxzp2wls9"; 94047 94073 isLibrary = true; 94048 94074 isExecutable = true; 94049 94075 libraryHaskellDepends = [ ··· 94062 94088 }: 94063 94089 mkDerivation { 94064 94090 pname = "ebird-client"; 94065 - version = "0.1.0.0"; 94066 - sha256 = "0gvrq86gj3ss74x3vnw9das8m6xzlblhfc25vphgzbywzwcrmvrk"; 94091 + version = "0.2.0.0"; 94092 + sha256 = "14pxbpwszfmvndck9xd124g3mqj117nvdzsvqbpkm9mh68zxkvaz"; 94067 94093 libraryHaskellDepends = [ 94068 94094 base data-default ebird-api http-client-tls optics servant 94069 94095 servant-client text ··· 96315 96341 }: 96316 96342 mkDerivation { 96317 96343 pname = "elm2nix"; 96318 - version = "0.3.0"; 96319 - sha256 = "1xixflxi0yw4y9r1hqs54rajz429gf0dy22mr7bw450yqlj9ih1d"; 96344 + version = "0.3.1"; 96345 + sha256 = "05jnn1wwarq877azw5ba222gcs4g3zijxq7lr2i21088kbl2wcg9"; 96320 96346 isLibrary = true; 96321 96347 isExecutable = true; 96322 96348 libraryHaskellDepends = [ ··· 102019 102045 ]; 102020 102046 description = "Parse Haskell Language Extensions"; 102021 102047 license = lib.licenses.mpl20; 102022 - hydraPlatforms = lib.platforms.none; 102023 102048 mainProgram = "extensions"; 102024 - broken = true; 102025 102049 }) {}; 102026 102050 102027 102051 "external-sort" = callPackage ··· 105211 105235 ({ mkDerivation, base, bytestring, filepath, unix }: 105212 105236 mkDerivation { 105213 105237 pname = "file-io"; 105214 - version = "0.1.0.1"; 105215 - sha256 = "1kxr2cdv3zmml7v3gmk2zrd2kwvph46fzv3r2ia5brq5qvm2s544"; 105216 - revision = "1"; 105217 - editedCabalFile = "0kfisk0vrjviw194rg2ildzr0qlg45wk4cwa4s3qpl3hp4zag1lj"; 105238 + version = "0.1.0.2"; 105239 + sha256 = "0ifgxiq0qzwdb9zlch0hjz4iq9r0nghmprvl1arf7b10mck618fl"; 105218 105240 libraryHaskellDepends = [ base bytestring filepath unix ]; 105219 105241 description = "Basic file IO operations via 'OsPath'"; 105220 105242 license = lib.licenses.bsd3; ··· 109065 109087 ({ mkDerivation, base, containers, QuickCheck, text }: 109066 109088 mkDerivation { 109067 109089 pname = "formatn"; 109068 - version = "0.3.0"; 109069 - sha256 = "01mbdnm6ryb7jyzpqwdjj0bnh6lqc3w5mxkl78fi3hqsmnksky22"; 109090 + version = "0.3.0.1"; 109091 + sha256 = "1w1isqk9mxrzl0sfj10kqfr2z8wkxvx5dmacig4k415cbaf4dqs3"; 109070 109092 libraryHaskellDepends = [ base containers QuickCheck text ]; 109071 109093 description = "Formatting of doubles"; 109072 109094 license = lib.licenses.bsd3; ··· 109593 109615 pname = "fourmolu"; 109594 109616 version = "0.14.1.0"; 109595 109617 sha256 = "1wqrs5fl72br5mlkf1dyna0946kxscjfgb4956mksr2fgcdqmdxl"; 109618 + revision = "1"; 109619 + editedCabalFile = "0rpfsfhz9a5bjh6hn38jnl3k46blb5cqih9zpqgcdzfq6nfz2k46"; 109596 109620 isLibrary = true; 109597 109621 isExecutable = true; 109598 109622 libraryHaskellDepends = [ ··· 110002 110026 , hspec-core, hspec-expectations-lifted, hspec-junit-formatter 110003 110027 , http-client, http-conduit, http-link-header, http-types 110004 110028 , hw-kafka-client, immortal, lens, lens-aeson, memcache 110005 - , monad-control, monad-validate, MonadRandom, mtl, network-uri 110006 - , nonempty-containers, path-pieces, persistent 110029 + , monad-control, monad-logger-aeson, monad-validate, MonadRandom 110030 + , mtl, network-uri, nonempty-containers, path-pieces, persistent 110007 110031 , persistent-postgresql, postgresql-simple, primitive, pureMD5 110008 110032 , QuickCheck, resource-pool, resourcet, retry, safe, scientist 110009 110033 , semigroupoids, serialise, template-haskell, text, time ··· 110013 110037 }: 110014 110038 mkDerivation { 110015 110039 pname = "freckle-app"; 110016 - version = "1.10.5.1"; 110017 - sha256 = "0ska32n9cx7q3hn92kk2lwxwlp7yg0qgr8pjlxfpbkp9r4hp5r4s"; 110040 + version = "1.12.0.0"; 110041 + sha256 = "06c7wx5kkim4mxba9rksmw5vdf3pqj0j23yvnzd1fi58f2gjwdzk"; 110018 110042 libraryHaskellDepends = [ 110019 110043 aeson annotated-exception aws-xray-client-persistent 110020 110044 aws-xray-client-wai base bcp47 Blammo bugsnag bytestring ··· 110026 110050 hs-opentelemetry-propagator-datadog hs-opentelemetry-sdk hspec 110027 110051 hspec-core hspec-expectations-lifted hspec-junit-formatter 110028 110052 http-client http-conduit http-link-header http-types 110029 - hw-kafka-client immortal lens memcache monad-control monad-validate 110030 - MonadRandom mtl network-uri nonempty-containers path-pieces 110031 - persistent persistent-postgresql postgresql-simple primitive 110032 - pureMD5 resource-pool resourcet retry safe scientist semigroupoids 110033 - serialise template-haskell text time transformers transformers-base 110034 - typed-process unliftio unliftio-core unordered-containers vector 110035 - wai wai-extra yaml yesod-core yesod-test 110053 + hw-kafka-client immortal lens memcache monad-control 110054 + monad-logger-aeson monad-validate MonadRandom mtl network-uri 110055 + nonempty-containers path-pieces persistent persistent-postgresql 110056 + postgresql-simple primitive pureMD5 resource-pool resourcet retry 110057 + safe scientist semigroupoids serialise template-haskell text time 110058 + transformers transformers-base typed-process unliftio unliftio-core 110059 + unordered-containers vector wai wai-extra yaml yesod-core 110060 + yesod-test 110036 110061 ]; 110037 110062 testHaskellDepends = [ 110038 110063 aeson base Blammo bugsnag bytestring cassava conduit errors hspec 110039 110064 http-types lens lens-aeson memcache monad-validate 110040 - nonempty-containers postgresql-simple QuickCheck vector wai 110065 + nonempty-containers postgresql-simple QuickCheck text vector wai 110041 110066 wai-extra 110042 110067 ]; 110043 110068 description = "Haskell application toolkit used at Freckle"; ··· 112444 112469 }: 112445 112470 mkDerivation { 112446 112471 pname = "futhark"; 112447 - version = "0.25.9"; 112448 - sha256 = "13zanshqqfjik37ax5bfg5xi52zldrl0hywk2v6wik9gmniik7nc"; 112472 + version = "0.25.10"; 112473 + sha256 = "1da69xzxfsmkfhclm8vz6kkn6glr06kcjjag3rjydz7yz7gdi0xv"; 112449 112474 isLibrary = true; 112450 112475 isExecutable = true; 112451 112476 libraryHaskellDepends = [ ··· 118562 118587 }: 118563 118588 mkDerivation { 118564 118589 pname = "ghcide"; 118565 - version = "2.4.0.0"; 118566 - sha256 = "1pscx95wmykrrlycpavh1j8vwp3x0k1cfvq9ndpz3qmj8djyyxb6"; 118590 + version = "2.5.0.0"; 118591 + sha256 = "1p4nm8qv1sx4r7mg52nkxv6rymngn9h7kfxg20yyb8wx170zx5cy"; 118567 118592 isLibrary = true; 118568 118593 isExecutable = true; 118569 118594 libraryHaskellDepends = [ ··· 118607 118632 }: 118608 118633 mkDerivation { 118609 118634 pname = "ghcide-bench"; 118610 - version = "2.4.0.0"; 118611 - sha256 = "0glpjp3qrnbmbn8xi78lgx88v3lppljny9lxyi45dzf71hzab2yc"; 118635 + version = "2.5.0.0"; 118636 + sha256 = "1sryj91j5wmck67njbwjjz5nigajblmygrrgl7b1zf3rv44x621i"; 118612 118637 isLibrary = true; 118613 118638 isExecutable = true; 118614 118639 libraryHaskellDepends = [ ··· 127707 127732 license = lib.licenses.mit; 127708 127733 }) {}; 127709 127734 127735 + "graphula_2_1_0_0" = callPackage 127736 + ({ mkDerivation, base, containers, directory, generic-arbitrary 127737 + , generics-eot, hspec, HUnit, markdown-unlit, monad-logger, mtl 127738 + , persistent, persistent-sqlite, QuickCheck, random, resourcet 127739 + , semigroups, temporary, text, transformers, unliftio 127740 + , unliftio-core 127741 + }: 127742 + mkDerivation { 127743 + pname = "graphula"; 127744 + version = "2.1.0.0"; 127745 + sha256 = "1xiafr59a91r8avyns6nbmm2aq4wkf1s9z8xqkzapnz82wj3xkh4"; 127746 + libraryHaskellDepends = [ 127747 + base containers directory generics-eot HUnit mtl persistent 127748 + QuickCheck random semigroups temporary text unliftio unliftio-core 127749 + ]; 127750 + testHaskellDepends = [ 127751 + base generic-arbitrary hspec markdown-unlit monad-logger persistent 127752 + persistent-sqlite QuickCheck resourcet transformers unliftio-core 127753 + ]; 127754 + testToolDepends = [ markdown-unlit ]; 127755 + description = "A simple interface for generating persistent data and linking its dependencies"; 127756 + license = lib.licenses.mit; 127757 + hydraPlatforms = lib.platforms.none; 127758 + }) {}; 127759 + 127710 127760 "graphula-core" = callPackage 127711 127761 ({ mkDerivation, aeson, base, bytestring, containers, directory 127712 127762 , generics-eot, hspec, http-api-data, HUnit, markdown-unlit ··· 127746 127796 }: 127747 127797 mkDerivation { 127748 127798 pname = "graphviz"; 127749 - version = "2999.20.1.0"; 127750 - sha256 = "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s"; 127751 - revision = "3"; 127752 - editedCabalFile = "16smnwf63z96myfw6yscxf1gpq3yn15634xh9xjkv4mf0zdl4f82"; 127799 + version = "2999.20.2.0"; 127800 + sha256 = "18kh6b5hgm8qfca2fiqzcyh7ysx8c1i72cchdmb16r3idpnyrkpw"; 127753 127801 isLibrary = true; 127754 127802 isExecutable = true; 127755 127803 libraryHaskellDepends = [ ··· 130922 130970 , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 130923 130971 version = "0.1.0.1"; 130924 130972 , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 130925 - revision = "4"; 130926 - , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 130973 + revision = "5"; 130974 + editedCabalFile = "1sgl8i9k7by80c7h5w4gvj1cbdd2lv88b70whlkri9as53n61pv9"; 130927 130975 isLibrary = false; 130928 130976 isExecutable = true; 130929 130977 libraryHaskellDepends = [ ··· 132679 132727 }: 132680 132728 mkDerivation { 132681 132729 , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 132682 - version = "1.0.0.1"; 132683 - , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 132730 + version = "1.0.1"; 132731 + sha256 = "1fapccpb6mfrwq96s2hnra4zvl34c8qflwwhzr5y5c8ankna8924"; 132684 132732 revision = "1"; 132685 - , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 132733 + editedCabalFile = "151nqdl4ivn3ljrmfqxf84gv07krn0dcwpr5fchm56mqikia1di5"; 132686 132734 libraryHaskellDepends = [ 132687 132735 aeson base base64-bytestring bytestring case-insensitive conduit 132688 132736 , containers, directory, filepath, gd, gtk3, hashable, hoodle-types ··· 134144 134192 license = lib.licenses.bsd3; 134145 134193 }) {}; 134146 134194 134195 + "happstack-server_7_9_0" = callPackage 134196 + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring 134197 + , containers, directory, exceptions, extensible-exceptions 134198 + , filepath, hslogger, html, HUnit, monad-control, mtl, network 134199 + , network-uri, old-locale, parsec, process, sendfile, syb 134200 + , system-filepath, text, threads, time, transformers 134201 + , transformers-base, transformers-compat, unix, utf8-string, xhtml 134202 + , zlib 134203 + }: 134204 + mkDerivation { 134205 + pname = "happstack-server"; 134206 + version = "7.9.0"; 134207 + sha256 = "1chia8km9pd6ys1vgy6ybsqj48zmvhb2iqs60lmizdyhc5yxk0c6"; 134208 + libraryHaskellDepends = [ 134209 + base base64-bytestring blaze-html bytestring containers directory 134210 + exceptions extensible-exceptions filepath hslogger html 134211 + monad-control mtl network network-uri old-locale parsec process 134212 + sendfile syb system-filepath text threads time transformers 134213 + transformers-base transformers-compat unix utf8-string xhtml zlib 134214 + ]; 134215 + testHaskellDepends = [ 134216 + base bytestring containers HUnit parsec zlib 134217 + ]; 134218 + description = "Web related tools and services"; 134219 + license = lib.licenses.bsd3; 134220 + hydraPlatforms = lib.platforms.none; 134221 + }) {}; 134222 + 134147 134223 "happstack-server-tls" = callPackage 134148 134224 ({ mkDerivation, base, bytestring, extensible-exceptions 134149 134225 , happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile ··· 134741 134817 }: 134742 134818 mkDerivation { 134743 134819 pname = "hasbolt"; 134744 - version = "0.1.6.3"; 134745 - sha256 = "0ji2kk89sprw95c2p5i8m763jik1ibzgpbwif3vmr2idmmpjilz0"; 134820 + version = "0.1.7.0"; 134821 + sha256 = "08df7wxybqyjmk13haq8g72f658s1cskf2vvp25hgly0gcqy57d4"; 134746 134822 libraryHaskellDepends = [ 134747 134823 base binary bytestring connection containers data-binary-ieee754 134748 134824 data-default deepseq deepseq-generics mtl network text ··· 136567 136643 , hls-overloaded-record-dot-plugin, hls-plugin-api 136568 136644 , hls-pragmas-plugin, hls-qualify-imported-names-plugin 136569 136645 , hls-refactor-plugin, hls-rename-plugin, hls-retrie-plugin 136570 - , hls-splice-plugin, hls-stylish-haskell-plugin, hls-test-utils 136571 - , hp2pretty, hspec-expectations, implicit-hie, lens, lens-aeson 136572 - , lsp, lsp-test, lsp-types, mtl, optparse-applicative 136646 + , hls-splice-plugin, hls-stan-plugin, hls-stylish-haskell-plugin 136647 + , hls-test-utils, hp2pretty, hspec-expectations, implicit-hie, lens 136648 + , lens-aeson, lsp, lsp-test, lsp-types, mtl, optparse-applicative 136573 136649 , optparse-simple, prettyprinter, process, regex-tdfa, row-types 136574 136650 , safe-exceptions, shake, shake-bench, sqlite-simple, stm 136575 136651 , temporary, text, transformers, unix, unliftio-core ··· 136577 136653 }: 136578 136654 mkDerivation { 136579 136655 pname = "haskell-language-server"; 136580 - version = "2.4.0.0"; 136581 - sha256 = "0jzbvss1ayvq43cljvn5j2bnyrmbgwv12ik81ivqsa6dnf3xbiqg"; 136656 + version = "2.5.0.0"; 136657 + sha256 = "0b9dy247izga3vdp80dmj4pykilscdbr9xs04iamcm2kqyrjc84n"; 136582 136658 isLibrary = true; 136583 136659 isExecutable = true; 136584 136660 libraryHaskellDepends = [ ··· 136594 136670 hls-overloaded-record-dot-plugin hls-plugin-api hls-pragmas-plugin 136595 136671 hls-qualify-imported-names-plugin hls-refactor-plugin 136596 136672 hls-rename-plugin hls-retrie-plugin hls-splice-plugin 136597 - hls-stylish-haskell-plugin lsp optparse-applicative optparse-simple 136598 - prettyprinter process safe-exceptions sqlite-simple text 136599 - unordered-containers 136673 + hls-stan-plugin hls-stylish-haskell-plugin lsp optparse-applicative 136674 + optparse-simple prettyprinter process safe-exceptions sqlite-simple 136675 + text unordered-containers 136600 136676 ]; 136601 136677 executableHaskellDepends = [ 136602 136678 aeson async base base16-bytestring binary bytestring containers ··· 138928 139004 }: 138929 139005 mkDerivation { 138930 139006 pname = "haskoin-store"; 138931 - version = "1.2.2"; 138932 - sha256 = "0jz4y90lp54wh2crlxvvc21gfiwdf0rmcj8f712wbgb648lyzha8"; 139007 + version = "1.2.3"; 139008 + sha256 = "0v4v1fzhwnv7srpkcjfwvnm94yllsikisbvf721y8x0sixc1wgpz"; 138933 139009 isLibrary = true; 138934 139010 isExecutable = true; 138935 139011 libraryHaskellDepends = [ ··· 140128 140204 pname = "hasql-interpolate"; 140129 140205 version = "0.2.1.0"; 140130 140206 sha256 = "1gmi552pkjbsxxqjprnq6696xqzh1swcib73p6892q65irgnhd5x"; 140207 + revision = "1"; 140208 + editedCabalFile = "08hr4fgxpyr663s12ihs77cqnn3hh2hlxy2n47gqp72jxj8ih8kj"; 140131 140209 libraryHaskellDepends = [ 140132 140210 aeson array base bytestring containers haskell-src-meta hasql 140133 140211 megaparsec mtl scientific template-haskell text time transformers ··· 140260 140338 license = lib.licenses.mit; 140261 140339 }) {}; 140262 140340 140263 - "hasql-pool_0_10" = callPackage 140341 + "hasql-pool_0_10_0_1" = callPackage 140264 140342 ({ mkDerivation, async, base, hasql, hspec, random, rerebase, stm 140265 140343 , time 140266 140344 }: 140267 140345 mkDerivation { 140268 140346 pname = "hasql-pool"; 140269 - , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 140270 - sha256 = "15h5ashflq55rk42yc5dh6r3gsrj31a0vfx7px5r08jgffiqmv0i"; 140347 + version = "0.10.0.1"; 140348 + sha256 = "03sdmna7hjspskza8gld4iys4pdzj968fzl8q7qs9a3wjqcnbqwy"; 140271 140349 libraryHaskellDepends = [ base hasql stm time ]; 140272 140350 testHaskellDepends = [ async hasql hspec random rerebase ]; 140273 140351 description = "Pool of connections for Hasql"; ··· 140509 140587 }: 140510 140588 mkDerivation { 140511 140589 pname = "hasql-th"; 140512 - version = "0.4.0.18"; 140513 - sha256 = "0z88skdk0i6rnwdqpy06yrhandaldll468kbkd4ilcf7fbwwk06v"; 140590 + version = "0.4.0.19"; 140591 + sha256 = "170cs69747kxnbj67acl2had47656i0bslvagh0f0mfdya1lsrmc"; 140514 140592 libraryHaskellDepends = [ 140515 140593 base bytestring containers contravariant foldl hasql 140516 140594 postgresql-syntax template-haskell template-haskell-compat-v0208 ··· 141867 141945 license = lib.licenses.bsd3; 141868 141946 hydraPlatforms = lib.platforms.none; 141869 141947 mainProgram = "hcount"; 141948 + broken = true; 141870 141949 }) {}; 141871 141950 141872 141951 "hcron" = callPackage ··· 142437 142516 }: 142438 142517 mkDerivation { 142439 142518 pname = "headed-megaparsec"; 142440 - version = "0.2.1.2"; 142441 - sha256 = "1k89p1kpsf6hgd2z9b9alza0ha8xxwmwn9pwd4iih0211l8bs2c1"; 142519 + version = "0.2.1.3"; 142520 + sha256 = "00h5fakxbla6g2d0j2m7sndnsp8fpyqki0f0glv3139sfs47cv3b"; 142442 142521 libraryHaskellDepends = [ 142443 142522 base case-insensitive megaparsec parser-combinators selective 142444 142523 ]; ··· 143000 143079 pname = "hedgehog-extras"; 143001 143080 version = "0.5.0.0"; 143002 143081 sha256 = "07i2pgmrpnffip5ng3fszhc8xlcvmzl02myw2m66kj3hmp5pps03"; 143082 + revision = "1"; 143083 + editedCabalFile = "1dqw5wfl83gs43b7wnqzys1izrr5nqg5k8cj28ppl4qylhvqdar0"; 143003 143084 libraryHaskellDepends = [ 143004 143085 aeson aeson-pretty async base bytestring deepseq Diff directory 143005 143086 exceptions filepath hedgehog http-conduit mmorph mtl network ··· 148458 148539 ]; 148459 148540 }) {}; 148460 148541 148461 - "hledger_1_32" = callPackage 148542 + "hledger_1_32_1" = callPackage 148462 148543 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs 148463 148544 , containers, data-default, Decimal, Diff, directory, extra 148464 148545 , filepath, githash, hashable, haskeline, hledger-lib, lucid ··· 148469 148550 }: 148470 148551 mkDerivation { 148471 148552 pname = "hledger"; 148472 - version = "1.32"; 148473 - sha256 = "0vgz7fv66bq7q1dc83na6jx2ihi8xvp69rj88n002hzssv8cnyjk"; 148553 + version = "1.32.1"; 148554 + sha256 = "02himlkcb3imvm7h7d09hqbi0rrlq4cl41sc6gnc20dmd4xps7fc"; 148555 + revision = "1"; 148556 + editedCabalFile = "0kx818p2f3785g0ac102nl4zrhm3xygx4lxj7ndqvrqkqr13zh8f"; 148474 148557 isLibrary = true; 148475 148558 isExecutable = true; 148476 148559 libraryHaskellDepends = [ ··· 148608 148691 pname = "hledger-iadd"; 148609 148692 version = "1.3.19"; 148610 148693 sha256 = "12x9qdn0p2sq0z1q1gnxnajkvdlyk25xywq7yi7il1hqdrz1mkmf"; 148694 + revision = "1"; 148695 + editedCabalFile = "1vkjjdmcn0gxgz9fmy1bvn76kf77krrgpvawydc5rvgwyvmmvnsp"; 148611 148696 isLibrary = true; 148612 148697 isExecutable = true; 148613 148698 libraryHaskellDepends = [ ··· 148640 148725 pname = "hledger-interest"; 148641 148726 version = "1.6.6"; 148642 148727 sha256 = "0hklpg9sgghrcvkrgz7kfr8jc6kwsv8zzpbbg0c3idhbdxwg74d8"; 148643 - revision = "1"; 148644 - editedCabalFile = "17l6skwg9s598r7k8y6fmqa44vmk2yqrbgkf3g39xiygf1hn6ags"; 148728 + revision = "2"; 148729 + editedCabalFile = "0bb1bhybiaih7fc54y3n24xrcpxv6k6iccv2c6byypbcv4jx8m8d"; 148645 148730 isLibrary = false; 148646 148731 isExecutable = true; 148647 148732 executableHaskellDepends = [ ··· 148715 148800 license = lib.licenses.gpl3Only; 148716 148801 }) {}; 148717 148802 148718 - "hledger-lib_1_32" = callPackage 148803 + "hledger-lib_1_32_1" = callPackage 148719 148804 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array, base 148720 148805 , base-compat, blaze-markup, bytestring, call-stack, cassava 148721 148806 , cassava-megaparsec, cmdargs, colour, containers, data-default ··· 148728 148813 }: 148729 148814 mkDerivation { 148730 148815 pname = "hledger-lib"; 148731 - version = "1.32"; 148732 - sha256 = "09yhnkwd40b86mpn38y390wznxhr18fhfp9vqhs6iglfcyqwa7wf"; 148816 + version = "1.32.1"; 148817 + sha256 = "0dy69cwy06kdzfpg26fpdn50vq1ln1li34r23gyr6z78rj39dwbs"; 148818 + revision = "1"; 148819 + editedCabalFile = "0qzkgdv0n8vhjg17pw1al0x49is4f4x4c2ls3lr8dmkb87qgjj1i"; 148733 148820 libraryHaskellDepends = [ 148734 148821 aeson aeson-pretty ansi-terminal array base base-compat 148735 148822 blaze-markup bytestring call-stack cassava cassava-megaparsec ··· 148836 148923 maintainers = [ lib.maintainers.maralorn ]; 148837 148924 }) {}; 148838 148925 148839 - "hledger-ui_1_32" = callPackage 148926 + "hledger-ui_1_32_1" = callPackage 148840 148927 ({ mkDerivation, ansi-terminal, async, base, brick, cmdargs 148841 148928 , containers, data-default, directory, doclayout, extra, filepath 148842 148929 , fsnotify, hledger, hledger-lib, megaparsec, microlens ··· 148845 148932 }: 148846 148933 mkDerivation { 148847 148934 pname = "hledger-ui"; 148848 - version = "1.32"; 148849 - sha256 = "1my838nxyrm2751n6p8nxq7q8rkg4p7vwiqzig2z65r3fixqyj6g"; 148935 + version = "1.32.1"; 148936 + sha256 = "0ldawz7xcrrb0z6aldblixp5jrhfg47hzznzz8d5yw63idqbgkbh"; 148850 148937 isLibrary = true; 148851 148938 isExecutable = true; 148852 148939 libraryHaskellDepends = [ ··· 148922 149009 maintainers = [ lib.maintainers.maralorn ]; 148923 149010 }) {}; 148924 149011 148925 - "hledger-web_1_32" = callPackage 149012 + "hledger-web_1_32_1" = callPackage 148926 149013 ({ mkDerivation, aeson, base, base64, blaze-html, blaze-markup 148927 149014 , bytestring, case-insensitive, clientsession, cmdargs, conduit 148928 149015 , conduit-extra, containers, data-default, Decimal, directory ··· 148935 149022 }: 148936 149023 mkDerivation { 148937 149024 pname = "hledger-web"; 148938 - version = "1.32"; 148939 - sha256 = "1wikhzvv3s71nlpkfpxy7df8crdmvfhh5s1zy4x9xvd3ryv901h1"; 149025 + version = "1.32.1"; 149026 + sha256 = "1y4ahgxgj93pg4ycxv5phiwic5b4n8474ia2wxa221jav056b37z"; 149027 + revision = "1"; 149028 + editedCabalFile = "1v48mcbjig0y8qq15p53ndccj44b6syhkgb45dbzmwy6nypx1bzl"; 148940 149029 isLibrary = true; 148941 149030 isExecutable = true; 148942 149031 libraryHaskellDepends = [ ··· 149327 149416 }: 149328 149417 mkDerivation { 149329 149418 pname = "hls-alternate-number-format-plugin"; 149330 - version = "2.4.0.0"; 149331 - sha256 = "0w3hk0cnrj7llchfrr3zdqh8m3bfz8xkax6r6a6vr3gcmyl7cwim"; 149419 + version = "2.5.0.0"; 149420 + sha256 = "17splsfhi130cxq84947261r9b2f3x9rxb2kx1jqv99qf91g11h9"; 149332 149421 libraryHaskellDepends = [ 149333 149422 aeson base containers extra ghc-boot-th ghcide hie-compat hls-graph 149334 149423 hls-plugin-api lens lsp mtl regex-tdfa syb text ··· 149361 149450 }: 149362 149451 mkDerivation { 149363 149452 pname = "hls-cabal-fmt-plugin"; 149364 - version = "2.4.0.0"; 149365 - sha256 = "1gv3jb6i7q2bwi6fzxl7gc9rjkws924l7nybkaj8m2zjzpchqqvr"; 149453 + version = "2.5.0.0"; 149454 + sha256 = "0vzljivyd0pba03rbx8n07zajs7mn6jf8qd9mr28w2wc8lqzwy39"; 149366 149455 libraryHaskellDepends = [ 149367 149456 base directory filepath ghcide hls-plugin-api lens lsp-types mtl 149368 149457 process-extras text transformers ··· 149381 149470 }: 149382 149471 mkDerivation { 149383 149472 pname = "hls-cabal-plugin"; 149384 - version = "2.4.0.0"; 149385 - sha256 = "17mmf5dsgsi08gvv6lalg2w92vsb6vx0vrl5n905wvngij3vydr3"; 149473 + version = "2.5.0.0"; 149474 + sha256 = "1q0wsngvngx9hkssvkfyvwvp243rw9z31ay7rgpy4nmv3j4sf47q"; 149386 149475 libraryHaskellDepends = [ 149387 149476 base bytestring Cabal-syntax containers deepseq directory extra 149388 149477 filepath ghcide hashable hls-graph hls-plugin-api lens lsp ··· 149405 149494 }: 149406 149495 mkDerivation { 149407 149496 pname = "hls-call-hierarchy-plugin"; 149408 - version = "2.4.0.0"; 149409 - sha256 = "03zjkx2i89yn5xlw4y8vdm8b7l40y04g0shck4cl9vj7sixfbpl0"; 149497 + version = "2.5.0.0"; 149498 + sha256 = "15wdl6r8www7najnvamgbxp4rjbvwrfp0hk5f8wmsklfr5y4xqcs"; 149410 149499 libraryHaskellDepends = [ 149411 149500 aeson base containers extra ghcide hiedb hls-plugin-api lens lsp 149412 149501 sqlite-simple text unordered-containers ··· 149426 149515 }: 149427 149516 mkDerivation { 149428 149517 pname = "hls-change-type-signature-plugin"; 149429 - version = "2.4.0.0"; 149430 - sha256 = "1hz96bklyzhs625hhyzs3vzq2a5rvvdik22ijz3ixd7wgp2nqw18"; 149518 + version = "2.5.0.0"; 149519 + sha256 = "1q7gnyg6pxzgp917z9rybp0736ssz6xiviqcnsnvr4ifvrzhnc2m"; 149431 149520 libraryHaskellDepends = [ 149432 149521 base containers ghcide hls-plugin-api lsp-types regex-tdfa syb text 149433 149522 transformers unordered-containers ··· 149447 149536 }: 149448 149537 mkDerivation { 149449 149538 pname = "hls-class-plugin"; 149450 - version = "2.4.0.0"; 149451 - sha256 = "1qk332msaj7lhin5dc8fyc319ls74i1f5mac118bhsz8ikrsdd64"; 149539 + version = "2.5.0.0"; 149540 + sha256 = "0v33bgv52y43d5n8fd7clllxra4hmrviqi9ymxjkx6zj0vh5i3as"; 149452 149541 libraryHaskellDepends = [ 149453 149542 aeson base containers deepseq extra ghc ghc-boot-th ghc-exactprint 149454 149543 ghcide hls-graph hls-plugin-api lens lsp mtl text transformers ··· 149469 149558 }: 149470 149559 mkDerivation { 149471 149560 pname = "hls-code-range-plugin"; 149472 - version = "2.4.0.0"; 149473 - sha256 = "0lif9fg273i84w0nxslq2c8x62p5i8ymff1nhdqhmqac391agjka"; 149561 + version = "2.5.0.0"; 149562 + sha256 = "129c2y3jpibn2lh8j9y310jxrzicw47dks40jacc9qvicyw1amz3"; 149474 149563 libraryHaskellDepends = [ 149475 149564 aeson base containers deepseq extra ghcide hashable hls-plugin-api 149476 149565 lens lsp mtl semigroupoids text transformers vector ··· 149495 149584 }: 149496 149585 mkDerivation { 149497 149586 pname = "hls-eval-plugin"; 149498 - version = "2.4.0.0"; 149499 - sha256 = "0qqhbwwj66ysgnfnl7fahv9mhfxxj46p37633hn142fhzr8vmp51"; 149587 + version = "2.5.0.0"; 149588 + sha256 = "16a5wblz1pp7l1n211a8l6vm2cizmlnrgqlxfhpwpyvsglgw2nqc"; 149500 149589 libraryHaskellDepends = [ 149501 149590 aeson base bytestring containers data-default deepseq Diff 149502 149591 directory dlist extra filepath ghc ghc-boot-th ghc-paths ghcide ··· 149537 149626 }: 149538 149627 mkDerivation { 149539 149628 pname = "hls-explicit-fixity-plugin"; 149540 - version = "2.4.0.0"; 149541 - sha256 = "0vd04sym8490briy8fpmbqy49vp70zw5c3r41kc9d65pglj8ph2y"; 149629 + version = "2.5.0.0"; 149630 + sha256 = "0v4l3jlh5kx7qfwr3sssfpi4q4sjg064h1svlgwdci02pax43zmf"; 149542 149631 libraryHaskellDepends = [ 149543 149632 base containers deepseq extra ghc ghcide hashable hls-plugin-api 149544 149633 lsp text transformers ··· 149556 149645 }: 149557 149646 mkDerivation { 149558 149647 pname = "hls-explicit-imports-plugin"; 149559 - version = "2.4.0.0"; 149560 - sha256 = "175whhrpngi1pi86xb2rkgbnv9kd8gwwy6d80xc0jrx62nv6q0na"; 149648 + version = "2.5.0.0"; 149649 + sha256 = "0lxdr210k02qqmqx54gni4m1jfv1lab4kayn19k1lrbwdw95nnfz"; 149561 149650 libraryHaskellDepends = [ 149562 149651 aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api 149563 149652 lens lsp mtl text transformers unordered-containers ··· 149577 149666 }: 149578 149667 mkDerivation { 149579 149668 pname = "hls-explicit-record-fields-plugin"; 149580 - version = "2.4.0.0"; 149581 - sha256 = "165c7knyr926ypcsyq3yafmahzn6hcnk0a6j3n0nx24wmv1912ww"; 149669 + version = "2.5.0.0"; 149670 + sha256 = "0945p1rg7dz9bfj9q72as1f43bgfsz3wigcngz3i5z94qwfjdcqb"; 149582 149671 libraryHaskellDepends = [ 149583 149672 aeson base containers ghc ghc-boot-th ghcide hls-graph 149584 149673 hls-plugin-api lens lsp syb text transformers unordered-containers ··· 149596 149685 }: 149597 149686 mkDerivation { 149598 149687 pname = "hls-floskell-plugin"; 149599 - version = "2.4.0.0"; 149600 - sha256 = "1pj61iximld14qkbjk4icbxrnnys7gmq03y4whr9qxdh93ij7b0q"; 149688 + version = "2.5.0.0"; 149689 + sha256 = "0z8cad7zjqr4wyl9pc4l3ixwhg8yqxv6ryrwg0pyqg38wh2bkya3"; 149601 149690 libraryHaskellDepends = [ 149602 149691 base floskell ghcide hls-plugin-api lsp-types mtl text transformers 149603 149692 ]; ··· 149613 149702 }: 149614 149703 mkDerivation { 149615 149704 pname = "hls-fourmolu-plugin"; 149616 - version = "2.4.0.0"; 149617 - sha256 = "113xfdv9f83z5sbcra6065j2snhf6h964858rcj1xw6jb5sjhfrb"; 149705 + version = "2.5.0.0"; 149706 + sha256 = "008fp1frkrh7plk2hs4g41xn29dcjndmj4inyh5qzp5kyqqpyl3s"; 149618 149707 libraryHaskellDepends = [ 149619 149708 base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens 149620 149709 lsp mtl process-extras text transformers ··· 149636 149725 }: 149637 149726 mkDerivation { 149638 149727 pname = "hls-gadt-plugin"; 149639 - version = "2.4.0.0"; 149640 - sha256 = "1hhvgw8k216m1cw50q5lsgl0zm5a6bp18ycpmpi4nwggazzr3hpj"; 149728 + version = "2.5.0.0"; 149729 + sha256 = "1i5w1lch8r0b93qwwxbm10q88gi9ppwjxpypc8bm96k8kfgnp53i"; 149641 149730 libraryHaskellDepends = [ 149642 149731 aeson base containers extra ghc ghc-boot-th ghc-exactprint ghcide 149643 149732 hls-plugin-api hls-refactor-plugin lens lsp mtl text transformers ··· 149659 149748 }: 149660 149749 mkDerivation { 149661 149750 pname = "hls-graph"; 149662 - version = "2.4.0.0"; 149663 - sha256 = "0h9sf9416mg2wrgq1jmwjbm1bm9hav1qp6jn1imhlwg59ck99j25"; 149751 + version = "2.5.0.0"; 149752 + sha256 = "1w35z067cdbj5addz3qslg7494gzvv2gfn1y3ximg3y2y5z8xfgr"; 149664 149753 enableSeparateDataOutput = true; 149665 149754 libraryHaskellDepends = [ 149666 149755 aeson async base bytestring containers deepseq directory exceptions ··· 149699 149788 }: 149700 149789 mkDerivation { 149701 149790 pname = "hls-hlint-plugin"; 149702 - version = "2.4.0.0"; 149703 - sha256 = "136fjmsm6anjxp30ysii0n63fz895k273xwn6i85s6vl3bvlyvxk"; 149791 + version = "2.5.0.0"; 149792 + sha256 = "15hggsv0z1xj21bq04chdvp0ksb6887hhbn5nlb7w0lvs3g7di18"; 149704 149793 libraryHaskellDepends = [ 149705 149794 aeson apply-refact base binary bytestring containers data-default 149706 149795 deepseq Diff directory extra filepath ghc-exactprint ghc-lib-parser ··· 149723 149812 }: 149724 149813 mkDerivation { 149725 149814 pname = "hls-module-name-plugin"; 149726 - version = "2.4.0.0"; 149727 - sha256 = "01mj0g5nghhkbhannvh45rsxnb0sffdhx6ly98im4y19xmx50gkr"; 149815 + version = "2.5.0.0"; 149816 + sha256 = "0fcpm4qb0wwy4svqa8rjxld4swahgnsbyg8gcmrc3669q4jmcy0x"; 149728 149817 libraryHaskellDepends = [ 149729 149818 aeson base containers directory filepath ghcide hls-plugin-api lsp 149730 149819 text transformers unordered-containers ··· 149741 149830 }: 149742 149831 mkDerivation { 149743 149832 pname = "hls-ormolu-plugin"; 149744 - version = "2.4.0.0"; 149745 - sha256 = "0xi6qds51ds6z2l6h53d16krjc19wibcpkbxhb9v6ar0fdffbnvx"; 149833 + version = "2.5.0.0"; 149834 + sha256 = "0llg94i4v12v88zlgnqzb1qimni4kipn61pgp5ahimsh3g6gw66d"; 149746 149835 libraryHaskellDepends = [ 149747 149836 base extra filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp 149748 149837 mtl ormolu process-extras text transformers ··· 149764 149853 }: 149765 149854 mkDerivation { 149766 149855 pname = "hls-overloaded-record-dot-plugin"; 149767 - version = "2.4.0.0"; 149768 - sha256 = "02frs42fx0snvwld950yk039c7m5m66fgz92rpkhbrnm225i0084"; 149856 + version = "2.5.0.0"; 149857 + sha256 = "11w9fqw8rqivk0scqs4r64z2khhlhamfs212yf35m6xd50cq7ss6"; 149769 149858 libraryHaskellDepends = [ 149770 149859 aeson base containers deepseq ghc-boot-th ghcide hls-graph 149771 149860 hls-plugin-api lens lsp syb text transformers unordered-containers ··· 149790 149879 }: 149791 149880 mkDerivation { 149792 149881 pname = "hls-plugin-api"; 149793 - version = "2.4.0.0"; 149794 - sha256 = "1yqnxsh9n5dk1kky5j36sm6lsb1zvk5r28mb3p99a9yvhcqp0zqy"; 149882 + version = "2.5.0.0"; 149883 + sha256 = "0p1hx160sb26fnzdsq5x5n8lb750m95fmjgz3k0sysdfljkpw0b7"; 149795 149884 libraryHaskellDepends = [ 149796 149885 aeson base co-log-core containers data-default dependent-map 149797 149886 dependent-sum Diff dlist extra filepath ghc hashable hls-graph ··· 149800 149889 time transformers unix unliftio unordered-containers 149801 149890 ]; 149802 149891 testHaskellDepends = [ 149803 - base containers lsp-types tasty tasty-hunit tasty-quickcheck 149804 - tasty-rerun text 149892 + base containers data-default lens lsp-types tasty tasty-hunit 149893 + tasty-quickcheck tasty-rerun text 149805 149894 ]; 149806 149895 benchmarkHaskellDepends = [ 149807 149896 base criterion deepseq lsp-types random random-fu ··· 149817 149906 }: 149818 149907 mkDerivation { 149819 149908 pname = "hls-pragmas-plugin"; 149820 - version = "2.4.0.0"; 149821 - sha256 = "04cy5530227m1hr62h76w7918315sxq8iqvhd9igllwh3ackyx9j"; 149909 + version = "2.5.0.0"; 149910 + sha256 = "0f8qdqsgkdra1pin7rbnwg9jbkg6m9g066bg8xakm0px2mdfl2ml"; 149822 149911 libraryHaskellDepends = [ 149823 149912 base containers extra fuzzy ghc ghcide hls-plugin-api lens lsp text 149824 149913 transformers unordered-containers ··· 149837 149926 }: 149838 149927 mkDerivation { 149839 149928 pname = "hls-qualify-imported-names-plugin"; 149840 - version = "2.4.0.0"; 149841 - sha256 = "1zianxwdvbm49s9bvzk0wji4i2zyy36i5g9isdzv70hw5rl82jvx"; 149929 + version = "2.5.0.0"; 149930 + sha256 = "04qmkz68mmp0407libdb7k53a3m9i6ykcp0izp386l6r2sgqrhjx"; 149842 149931 libraryHaskellDepends = [ 149843 149932 aeson base containers deepseq dlist ghc ghcide hls-graph 149844 149933 hls-plugin-api lens lsp text transformers unordered-containers ··· 149860 149949 }: 149861 149950 mkDerivation { 149862 149951 pname = "hls-refactor-plugin"; 149863 - version = "2.4.0.0"; 149864 - sha256 = "02s6n5wy46kfsy91vsfkk92qi23ji525n7g5f3nbnvmmpvd4kn8y"; 149952 + version = "2.5.0.0"; 149953 + sha256 = "12zgy7dm8xvj5r8wkxbpb2ksszlp3w2aps3yfyz6j7np7y6c776s"; 149865 149954 libraryHaskellDepends = [ 149866 149955 aeson base bytestring containers data-default deepseq dlist extra 149867 149956 ghc ghc-boot ghc-exactprint ghcide hls-graph hls-plugin-api lens ··· 149908 149997 }: 149909 149998 mkDerivation { 149910 149999 pname = "hls-rename-plugin"; 149911 - version = "2.4.0.0"; 149912 - sha256 = "0ydnrmxq5ix0ly0mwsl3nxxrbwr6r975fcdw7cwz0bmyrma48w3h"; 150000 + version = "2.5.0.0"; 150001 + sha256 = "0aaxvvvib34lz59ha097rx9kzf8s6cyycsmgn97c2da62hikyf3d"; 149913 150002 libraryHaskellDepends = [ 149914 150003 base containers extra ghc ghc-exactprint ghcide hashable hie-compat 149915 150004 hiedb hls-plugin-api hls-refactor-plugin lens lsp lsp-types mod mtl ··· 149931 150020 }: 149932 150021 mkDerivation { 149933 150022 pname = "hls-retrie-plugin"; 149934 - version = "2.4.0.0"; 149935 - sha256 = "15llh584scavr6snr8bjc8kp8dz7vyh3vclsz2pzpkdcbr8ifhri"; 150023 + version = "2.5.0.0"; 150024 + sha256 = "0j0gg3cma80kr6ip83v5yb22n3l6h8iqdn9rk30h8g45xyngydmb"; 149936 150025 libraryHaskellDepends = [ 149937 150026 aeson base bytestring containers deepseq directory extra ghc ghcide 149938 150027 hashable hls-plugin-api hls-refactor-plugin lens lsp lsp-types mtl ··· 149980 150069 }: 149981 150070 mkDerivation { 149982 150071 pname = "hls-splice-plugin"; 149983 - version = "2.4.0.0"; 149984 - sha256 = "0d42bjq4iyk5376rg4s97rv8j19y6cc9w1s7i0qm8zcbkp8vkgmc"; 150072 + version = "2.5.0.0"; 150073 + sha256 = "1lygi715cvnkxx5ajk1k15w6rbjb50jaa0ryfbxq56ngddfxnd0h"; 149985 150074 libraryHaskellDepends = [ 149986 150075 aeson base containers dlist extra foldl ghc ghc-exactprint ghcide 149987 150076 hls-plugin-api hls-refactor-plugin lens lsp mtl retrie syb text ··· 149995 150084 }) {}; 149996 150085 149997 150086 "hls-stan-plugin" = callPackage 149998 - ({ mkDerivation }: 150087 + ({ mkDerivation, aeson, base, containers, data-default, deepseq 150088 + , filepath, ghc, ghcide, hashable, hie-compat, hls-plugin-api 150089 + , hls-test-utils, lens, lsp-types, stan, text, transformers 150090 + , unordered-containers 150091 + }: 149999 150092 mkDerivation { 150000 150093 pname = "hls-stan-plugin"; 150001 - version = "2.2.0.0"; 150002 - sha256 = "0y4s6m3kw4ab0g6h7dgbsxjm61ryk1i7skdvr8h8w5m39lm46hkw"; 150094 + version = "2.5.0.0"; 150095 + sha256 = "15xfgqg24qbnzlj3pkf5qvpxmiwf5a3wzh6gznwg502fcm98i1yh"; 150096 + libraryHaskellDepends = [ 150097 + base containers data-default deepseq ghc ghcide hashable hie-compat 150098 + hls-plugin-api lsp-types stan text transformers 150099 + unordered-containers 150100 + ]; 150101 + testHaskellDepends = [ 150102 + aeson base containers filepath hls-plugin-api hls-test-utils lens 150103 + lsp-types text 150104 + ]; 150003 150105 description = "Stan integration plugin with Haskell Language Server"; 150004 150106 license = lib.licenses.asl20; 150005 - hydraPlatforms = lib.platforms.none; 150006 - broken = true; 150007 150107 }) {}; 150008 150108 150009 150109 "hls-stylish-haskell-plugin" = callPackage ··· 150013 150113 }: 150014 150114 mkDerivation { 150015 150115 pname = "hls-stylish-haskell-plugin"; 150016 - version = "2.4.0.0"; 150017 - sha256 = "0dz6wmj9qdccdhpdz4qa8c68a8hx8p6h9ycnj6fg2yihg9j33qqb"; 150116 + version = "2.5.0.0"; 150117 + sha256 = "19zf5lm9sdcpzyvffwq92am9yfbi060sprj57s085a4f08ng1f2d"; 150018 150118 libraryHaskellDepends = [ 150019 150119 base directory filepath ghc ghc-boot-th ghcide hls-plugin-api 150020 150120 lsp-types mtl stylish-haskell text ··· 150045 150145 }: 150046 150146 mkDerivation { 150047 150147 pname = "hls-test-utils"; 150048 - version = "2.4.0.0"; 150049 - sha256 = "0flb9sjaf3pbyr23a4399ygvf8ii692w9axbskfx9mwqndgc1jlw"; 150148 + version = "2.5.0.0"; 150149 + sha256 = "1m9kp80wsq6yjjvam9cdpbzb1j20kp2w3fgvmd7mrivkbwlblzz0"; 150050 150150 libraryHaskellDepends = [ 150051 150151 aeson async base blaze-markup bytestring containers data-default 150052 150152 directory extra filepath ghcide hls-graph hls-plugin-api lens lsp ··· 153885 153985 153886 153986 "hprox" = callPackage 153887 153987 ({ mkDerivation, async, base, base64-bytestring, binary, bytestring 153888 - , case-insensitive, conduit, conduit-extra, dns, fast-logger 153889 - , http-client, http-client-tls, http-reverse-proxy, http-types 153890 - , http2, optparse-applicative, random, tls, tls-session-manager 153891 - , wai, wai-extra, warp, warp-tls 153988 + , case-insensitive, conduit, conduit-extra, crypton, dns 153989 + , fast-logger, http-client, http-client-tls, http-reverse-proxy 153990 + , http-types, http2, optparse-applicative, random, tls 153991 + , tls-session-manager, unordered-containers, wai, wai-extra, warp 153992 + , warp-tls 153892 153993 }: 153893 153994 mkDerivation { 153894 153995 pname = "hprox"; 153895 - version = "0.5.4"; 153896 - sha256 = "15hlf6mhm2wpgmafnr4jqqxgr83cpfp1dk48a41q3sdf2l8h4pkx"; 153996 + version = "0.6.0"; 153997 + sha256 = "1m9n0z7yjd81kn13ps5bgnw7zfpz4p832wwidqhqbv9yc3m6sjfy"; 153897 153998 isLibrary = true; 153898 153999 isExecutable = true; 153899 154000 libraryHaskellDepends = [ 153900 154001 async base base64-bytestring binary bytestring case-insensitive 153901 - conduit conduit-extra dns fast-logger http-client http-client-tls 153902 - http-reverse-proxy http-types http2 optparse-applicative random tls 153903 - tls-session-manager wai wai-extra warp warp-tls 154002 + conduit conduit-extra crypton dns fast-logger http-client 154003 + http-client-tls http-reverse-proxy http-types http2 154004 + optparse-applicative random tls tls-session-manager 154005 + unordered-containers wai wai-extra warp warp-tls 153904 154006 ]; 153905 154007 executableHaskellDepends = [ 153906 154008 async base base64-bytestring binary bytestring case-insensitive 153907 - conduit conduit-extra dns fast-logger http-client http-client-tls 153908 - http-reverse-proxy http-types http2 optparse-applicative random tls 153909 - tls-session-manager wai wai-extra warp warp-tls 154009 + conduit conduit-extra crypton dns fast-logger http-client 154010 + http-client-tls http-reverse-proxy http-types http2 154011 + optparse-applicative random tls tls-session-manager 154012 + unordered-containers wai wai-extra warp warp-tls 153910 154013 ]; 153911 154014 description = "a lightweight HTTP proxy server, and more"; 153912 154015 license = lib.licenses.asl20; ··· 158781 158884 broken = true; 158782 158885 }) {}; 158783 158886 158887 + "hspec-formatter-github" = callPackage 158888 + ({ mkDerivation, base, hspec, hspec-api, hspec-core }: 158889 + mkDerivation { 158890 + pname = "hspec-formatter-github"; 158891 + version = "0.1.0.0"; 158892 + sha256 = "10a9czdhi7ib08qrkvds5q4s1pz9v5ccq63j2fggy5038jpgw8gb"; 158893 + libraryHaskellDepends = [ base hspec-api hspec-core ]; 158894 + testHaskellDepends = [ base hspec hspec-api hspec-core ]; 158895 + description = "A Formatter for hspec that provides Github Actions Annotations"; 158896 + license = lib.licenses.bsd3; 158897 + hydraPlatforms = lib.platforms.none; 158898 + }) {}; 158899 + 158784 158900 "hspec-golden_0_1_0_3" = callPackage 158785 158901 ({ mkDerivation, base, directory, hspec, hspec-core 158786 158902 , optparse-applicative, silently ··· 160751 160867 }: 160752 160868 mkDerivation { 160753 160869 pname = "html-parse"; 160754 - version = "0.2.0.2"; 160755 - sha256 = "0dm771lrrqc87ygbr3dzyl1vsyi30jgr7l0isvsbqyah7s4zyg38"; 160756 - revision = "3"; 160757 - editedCabalFile = "1qx04ipdx16a4xg3idfziv8d9xpjzcska49wigfsxl6injahmra4"; 160870 + version = "0.2.1.0"; 160871 + sha256 = "1vjy8bmxg0dsmq74hahmn1mkkgf7jm5qwhcfc8bsmm82c6jg08xx"; 160872 + isLibrary = true; 160873 + isExecutable = true; 160758 160874 libraryHaskellDepends = [ 160759 160875 attoparsec base containers deepseq text 160760 160876 ]; ··· 162288 162404 }: 162289 162405 mkDerivation { 162290 162406 pname = "http-reverse-proxy"; 162291 - version = "0.6.0.1"; 162292 - sha256 = "0a0fc9rqr1crbb1sbq3gzbkwjcfff662d4bgmy3vzspk7ky697ld"; 162407 + version = "0.6.0.2"; 162408 + sha256 = "13ln90didwh4r0jb77i05csmimrl9p1mv71c7ygz9bi3zk8mvl7l"; 162293 162409 libraryHaskellDepends = [ 162294 162410 base blaze-builder bytestring case-insensitive conduit 162295 162411 conduit-extra containers http-client http-types network resourcet ··· 165941 166057 broken = true; 165942 166058 }) {}; 165943 166059 166060 + "hyperbole" = callPackage 166061 + ({ mkDerivation, base, bytestring, casing, containers, effectful 166062 + , file-embed, http-api-data, http-types, string-conversions 166063 + , string-interpolate, text, wai, wai-middleware-static, warp 166064 + , web-view 166065 + }: 166066 + mkDerivation { 166067 + pname = "hyperbole"; 166068 + version = "0.1.2"; 166069 + sha256 = "0jg0dmidcc8l0j932xy5qmfcih15i2dgxgz5s5w0mamwx96apr82"; 166070 + isLibrary = true; 166071 + isExecutable = true; 166072 + libraryHaskellDepends = [ 166073 + base bytestring casing containers effectful file-embed 166074 + http-api-data http-types string-conversions string-interpolate text 166075 + wai warp web-view 166076 + ]; 166077 + executableHaskellDepends = [ 166078 + base bytestring casing containers effectful file-embed 166079 + http-api-data http-types string-conversions string-interpolate text 166080 + wai wai-middleware-static warp web-view 166081 + ]; 166082 + description = "Web Framework inspired by HTMX"; 166083 + license = lib.licenses.bsd3; 166084 + hydraPlatforms = lib.platforms.none; 166085 + mainProgram = "example"; 166086 + }) {}; 166087 + 165944 166088 "hyperdrive" = callPackage 165945 166089 ({ mkDerivation, base, bytestring, bytestring-lexing 165946 166090 , extensible-exceptions, mtl, network, pipes, pretty ··· 166196 166340 166197 166341 "hyraxAbif" = callPackage 166198 166342 ({ mkDerivation, base, binary, bytestring, directory, filepath 166199 - , hedgehog, hscolour, pretty-show, protolude, text 166343 + , hedgehog, hscolour, pretty-show, text, verset 166200 166344 }: 166201 166345 mkDerivation { 166202 166346 pname = "hyraxAbif"; 166203 - version = "0.2.4.2"; 166204 - sha256 = "0k0pwvcsdmjr8vynz61hja35k1bpny6d3j2wppqf9jwgl031nh13"; 166347 + version = "0.2.4.5"; 166348 + sha256 = "1pghbrvpjvlapgc8j3bm8gjrd16n47400g4jgbalzydmkpki2x2q"; 166205 166349 isLibrary = true; 166206 166350 isExecutable = true; 166207 166351 libraryHaskellDepends = [ 166208 - base binary bytestring directory filepath hscolour pretty-show 166209 - protolude text 166352 + base binary bytestring directory filepath hscolour pretty-show text 166353 + verset 166210 166354 ]; 166211 166355 executableHaskellDepends = [ 166212 - base bytestring hscolour pretty-show protolude text 166356 + base bytestring hscolour pretty-show text verset 166213 166357 ]; 166214 166358 testHaskellDepends = [ 166215 - base binary bytestring hedgehog protolude text 166359 + base binary bytestring hedgehog text verset 166216 166360 ]; 166217 166361 description = "Modules for parsing, generating and manipulating AB1 files"; 166218 166362 license = "(BSD-3-Clause OR Apache-2.0)"; ··· 172173 172317 }: 172174 172318 mkDerivation { 172175 172319 pname = "irc"; 172176 - version = "0.6.1.0"; 172177 - sha256 = "1q9p2qwfy9rsfyaja4x3gjr8ql2ka2ja5qv56b062bdkvzafl5iq"; 172320 + version = "0.6.1.1"; 172321 + sha256 = "06gzmiwisa46nbkvj7ydk97krrrxh8m2lkbsjr0w3xdqwn8j0l86"; 172178 172322 libraryHaskellDepends = [ attoparsec base bytestring ]; 172179 172323 testHaskellDepends = [ 172180 172324 base bytestring HUnit QuickCheck test-framework ··· 172393 172537 }: 172394 172538 mkDerivation { 172395 172539 pname = "ircbot"; 172396 - version = "0.6.6.1"; 172397 - sha256 = "00dw9ay5x4hb8p2jvxwgcxqlny7cpm6lk5kqaw9yc9c6m6705fqc"; 172540 + version = "0.6.6.2"; 172541 + sha256 = "085w7svvbb1caajjh815rg35cafxw398qshmsf0b1q15la1va0zy"; 172398 172542 isLibrary = true; 172399 172543 isExecutable = true; 172400 172544 libraryHaskellDepends = [ ··· 172404 172548 executableHaskellDepends = [ base ]; 172405 172549 description = "A library for writing IRC bots"; 172406 172550 license = lib.licenses.bsd3; 172407 - hydraPlatforms = lib.platforms.none; 172408 172551 mainProgram = "ircbot-demo"; 172409 - broken = true; 172410 172552 }) {}; 172411 172553 172412 172554 "ircbouncer" = callPackage ··· 172837 172979 }: 172838 172980 mkDerivation { 172839 172981 pname = "isomorphism-class"; 172840 - version = "0.1.0.11"; 172841 - sha256 = "1z9p9pgqdqcljdmknvxhh3mmlj28i8186mavfi52fkxz05mc85z3"; 172842 - libraryHaskellDepends = [ 172843 - base bytestring containers hashable primitive text 172844 - unordered-containers vector 172845 - ]; 172846 - testHaskellDepends = [ 172847 - bytestring primitive QuickCheck quickcheck-instances rebase tasty 172848 - tasty-quickcheck text vector 172849 - ]; 172850 - description = "Isomorphism typeclass solving the conversion problem"; 172851 - license = lib.licenses.mit; 172852 - }) {}; 172853 - 172854 - "isomorphism-class_0_1_0_12" = callPackage 172855 - ({ mkDerivation, base, bytestring, containers, hashable, primitive 172856 - , QuickCheck, quickcheck-instances, rebase, tasty, tasty-quickcheck 172857 - , text, unordered-containers, vector 172858 - }: 172859 - mkDerivation { 172860 - pname = "isomorphism-class"; 172861 172982 version = "0.1.0.12"; 172862 172983 sha256 = "1ffcjf2lic1mvvxfrfi0cc9qnz5qh73yjd3dsaq5p0h0amp8gppr"; 172863 172984 libraryHaskellDepends = [ ··· 172870 172991 ]; 172871 172992 description = "Isomorphism typeclass solving the conversion problem"; 172872 172993 license = lib.licenses.mit; 172873 - hydraPlatforms = lib.platforms.none; 172874 172994 }) {}; 172875 172995 172876 172996 "isotope" = callPackage ··· 174148 174268 broken = true; 174149 174269 }) {}; 174150 174270 174271 + "java-adt_1_0_20231204" = callPackage 174272 + ({ mkDerivation, alex, array, base, happy, pretty }: 174273 + mkDerivation { 174274 + pname = "java-adt"; 174275 + version = "1.0.20231204"; 174276 + sha256 = "055yrn1pvv35sl79djm4c7yb4354dmwisj5whcpynn20caq9nsy5"; 174277 + isLibrary = false; 174278 + isExecutable = true; 174279 + enableSeparateDataOutput = true; 174280 + executableHaskellDepends = [ array base pretty ]; 174281 + executableToolDepends = [ alex happy ]; 174282 + description = "Create immutable algebraic data structures for Java"; 174283 + license = "unknown"; 174284 + hydraPlatforms = lib.platforms.none; 174285 + mainProgram = "java-adt"; 174286 + broken = true; 174287 + }) {}; 174288 + 174151 174289 "java-bridge" = callPackage 174152 174290 ({ mkDerivation, base, bimap, containers, cpphs, directory 174153 174291 , filepath, hinduce-missingh, hint, mtl, multimap, named-records ··· 176262 176400 176263 176401 "json-spec-openapi" = callPackage 176264 176402 ({ mkDerivation, aeson, base, bytestring, hspec, json-spec, lens 176265 - , openapi3, scientific, text, time 176403 + , openapi3, text, time 176266 176404 }: 176267 176405 mkDerivation { 176268 176406 pname = "json-spec-openapi"; 176269 - version = "0.1.0.2"; 176270 - sha256 = "1y2w13py1jlmzh9wr37hc9mw16fh4lw25sfilxagqhm69fkglk8w"; 176407 + version = "0.1.0.3"; 176408 + sha256 = "07yiglfkf6alqwidkq4mqcp449mxf2461zrclh90bxix5agk5ppc"; 176271 176409 libraryHaskellDepends = [ 176272 176410 aeson base json-spec lens openapi3 text 176273 176411 ]; 176274 176412 testHaskellDepends = [ 176275 - aeson base bytestring hspec json-spec lens openapi3 scientific text 176276 - time 176413 + aeson base bytestring hspec json-spec lens openapi3 text time 176277 176414 ]; 176278 176415 description = "json-spec-openapi"; 176279 176416 license = lib.licenses.mit; ··· 176626 176763 license = lib.licenses.mit; 176627 176764 }) {}; 176628 176765 176766 + "jsonifier_0_2_1_3" = callPackage 176767 + ({ mkDerivation, aeson, base, bytestring, criterion, hedgehog 176768 + , numeric-limits, ptr-poker, rerebase, scientific, text 176769 + , text-builder 176770 + }: 176771 + mkDerivation { 176772 + pname = "jsonifier"; 176773 + version = "0.2.1.3"; 176774 + sha256 = "1qpci8fmmlxf98d6fmsnsxmkx4rgrx73fad8ii738hgrnp0n7hwn"; 176775 + libraryHaskellDepends = [ 176776 + base bytestring ptr-poker scientific text 176777 + ]; 176778 + testHaskellDepends = [ aeson hedgehog numeric-limits rerebase ]; 176779 + benchmarkHaskellDepends = [ 176780 + aeson criterion rerebase text-builder 176781 + ]; 176782 + description = "Fast and simple JSON encoding toolkit"; 176783 + license = lib.licenses.mit; 176784 + hydraPlatforms = lib.platforms.none; 176785 + }) {}; 176786 + 176629 176787 "jsonl" = callPackage 176630 176788 ({ mkDerivation, aeson, base, bytestring }: 176631 176789 mkDerivation { ··· 188331 188489 }: 188332 188490 mkDerivation { 188333 188491 pname = "linear-programming"; 188334 - version = "0.0"; 188335 - sha256 = "0bpsm47g6knpwh4gqg2myljrivpk716ip41g3cpxvpsnq0qqz57i"; 188492 + version = "0.0.0.1"; 188493 + sha256 = "0m485xdivj08c4nygfi5d27448f12mcdiq03l170mk2jhx8ncmfx"; 188336 188494 libraryHaskellDepends = [ 188337 188495 base comfort-array non-empty QuickCheck random transformers 188338 188496 utility-ht ··· 188728 188886 description = "Lightweight library for building HTTP API"; 188729 188887 license = lib.licenses.asl20; 188730 188888 hydraPlatforms = lib.platforms.none; 188889 + broken = true; 188731 188890 }) {}; 188732 188891 188733 188892 "linnet-aeson" = callPackage ··· 189238 189397 }: 189239 189398 mkDerivation { 189240 189399 pname = "liquid-fixpoint"; 189241 - version = "0.9.2.5"; 189242 - sha256 = "0i9487xz1cfmn3nv58wlm685ljvqq1iqfyz1rkx549wa5h4zmdjq"; 189400 + version = "0.9.4.7"; 189401 + sha256 = "0q1h3ih7k8h6q9ly32122zmv81yr5kn1xb22434afi7dbpq5i7kc"; 189243 189402 configureFlags = [ "-fbuild-external" ]; 189244 189403 isLibrary = true; 189245 189404 isExecutable = true; ··· 189351 189510 }) {}; 189352 189511 189353 189512 "liquidhaskell" = callPackage 189354 - ({ mkDerivation, base, bytestring, Cabal, containers, ghc-prim 189355 - , liquidhaskell-boot, z3 189513 + ({ mkDerivation, base, bytestring, Cabal, containers, ghc-bignum 189514 + , ghc-prim, liquidhaskell-boot, z3 189356 189515 }: 189357 189516 mkDerivation { 189358 189517 pname = "liquidhaskell"; 189359 - version = "0.9.2.8.0"; 189360 - sha256 = "1n4dkahiaci6j502w5ksqpb1g7v8rwf3hbhqqprjmcc6cl5ppyzn"; 189518 + version = "0.9.4.7.0"; 189519 + sha256 = "0lqrq500nqvnh4s69s3xwz76z5v6wljdg2w74z88q208skm3ba6b"; 189361 189520 setupHaskellDepends = [ base Cabal liquidhaskell-boot ]; 189362 189521 libraryHaskellDepends = [ 189363 - base bytestring containers ghc-prim liquidhaskell-boot 189522 + base bytestring containers ghc-bignum ghc-prim liquidhaskell-boot 189364 189523 ]; 189365 189524 testSystemDepends = [ z3 ]; 189366 189525 description = "Liquid Types for Haskell"; ··· 189380 189539 }: 189381 189540 mkDerivation { 189382 189541 pname = "liquidhaskell-boot"; 189383 - version = "0.9.2.8.0"; 189384 - sha256 = "0q1rknlqi4x9gpkl9yvrzxfkbkcs6m883dhpvlymqpvsp2qs22b1"; 189542 + version = "0.9.4.7.0"; 189543 + sha256 = "02z6bm4nkdq7k0ki6xfkrdm3kqfdaag9hy28ii4mk48awj80h3f4"; 189385 189544 enableSeparateDataOutput = true; 189386 189545 libraryHaskellDepends = [ 189387 189546 aeson base binary bytestring Cabal cereal cmdargs containers ··· 190350 190509 librarySystemDepends = [ LLVM ]; 190351 190510 description = "FFI bindings to the LLVM compiler toolkit"; 190352 190511 license = lib.licenses.bsd3; 190353 - hydraPlatforms = lib.platforms.none; 190354 - broken = true; 190512 + maintainers = [ lib.maintainers.thielema ]; 190355 190513 }) {LLVM = null;}; 190356 190514 190357 190515 "llvm-ffi-tools" = callPackage ··· 195838 195996 }: 195839 195997 mkDerivation { 195840 195998 pname = "mappings"; 195841 - version = "0.2.2.0"; 195842 - sha256 = "1jsv6w8bm0zp8j03r0348aikpn73f7rh49hcildihxal24jkl5kc"; 195999 + version = "0.3.0.0"; 196000 + sha256 = "0ljjai9b46d6gsd1w99daincnvs0ckbx81z3y2z1sljn7nay88np"; 195843 196001 isLibrary = true; 195844 196002 isExecutable = true; 195845 196003 libraryHaskellDepends = [ ··· 202718 202876 }: 202719 202877 mkDerivation { 202720 202878 pname = "moffy"; 202721 - version = "0.1.0.0"; 202722 - sha256 = "131dxjsqqcpm3x5y34k311bnz8fnlaqkf65qzywv3dph1slsqqkm"; 202879 + version = "0.1.1.0"; 202880 + sha256 = "1wiz0m1qjvld5c0pdfcs9difx0n085wxqxldhj64c6snjcycbj2w"; 202723 202881 libraryHaskellDepends = [ 202724 202882 base extra-data-yj freer-par-monad time type-flip type-set 202725 202883 ]; ··· 202730 202888 license = lib.licenses.bsd3; 202731 202889 }) {}; 202732 202890 202891 + "moffy-samples" = callPackage 202892 + ({ mkDerivation, aeson, base, bytestring, extra-data-yj, hashable 202893 + , JuicyPixels, moffy, moffy-samples-events, text, time 202894 + , transformers, type-flip, type-set, unordered-containers 202895 + }: 202896 + mkDerivation { 202897 + pname = "moffy-samples"; 202898 + version = "0.1.0.2"; 202899 + sha256 = "162c8crnj3946fa5d4cgfbqai5pxgai67q3kcl3nyf29knlmivi4"; 202900 + libraryHaskellDepends = [ 202901 + aeson base bytestring extra-data-yj hashable JuicyPixels moffy 202902 + moffy-samples-events text time transformers type-flip type-set 202903 + unordered-containers 202904 + ]; 202905 + testHaskellDepends = [ 202906 + aeson base bytestring extra-data-yj hashable JuicyPixels moffy 202907 + moffy-samples-events text time transformers type-flip type-set 202908 + unordered-containers 202909 + ]; 202910 + description = "Samples of moffy"; 202911 + license = lib.licenses.bsd3; 202912 + }) {}; 202913 + 202914 + "moffy-samples-events" = callPackage 202915 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 202916 + , http-conduit, JuicyPixels, moffy, monads-tf, process, random, stm 202917 + , text, time, type-flip, type-set, union-color 202918 + }: 202919 + mkDerivation { 202920 + pname = "moffy-samples-events"; 202921 + version = "0.2.2.4"; 202922 + sha256 = "0bsfp0rjm6dqnbnp8q62r1qf1d2v8h03a2j09cvcrc97sw61gqa7"; 202923 + libraryHaskellDepends = [ 202924 + aeson base bytestring containers deepseq http-conduit JuicyPixels 202925 + moffy monads-tf process random stm text time type-flip type-set 202926 + union-color 202927 + ]; 202928 + testHaskellDepends = [ 202929 + aeson base bytestring containers deepseq http-conduit JuicyPixels 202930 + moffy monads-tf process random stm text time type-flip type-set 202931 + union-color 202932 + ]; 202933 + description = "Events for sample codes of moffy"; 202934 + license = lib.licenses.bsd3; 202935 + }) {}; 202936 + 202937 + "moffy-samples-gtk4" = callPackage 202938 + ({ mkDerivation, base, moffy, moffy-samples, moffy-samples-gtk4-run 202939 + }: 202940 + mkDerivation { 202941 + pname = "moffy-samples-gtk4"; 202942 + version = "0.1.0.1"; 202943 + sha256 = "0bbr88gbq8yxr5jrimyyrxmlar3v88knnc7cn3bq84r9fggj78yx"; 202944 + isLibrary = false; 202945 + isExecutable = true; 202946 + executableHaskellDepends = [ 202947 + base moffy moffy-samples moffy-samples-gtk4-run 202948 + ]; 202949 + testHaskellDepends = [ base ]; 202950 + description = "Sample executables of moffy - GTK4 version"; 202951 + license = lib.licenses.bsd3; 202952 + hydraPlatforms = lib.platforms.none; 202953 + mainProgram = "moffy_samples_gtk4"; 202954 + }) {}; 202955 + 202956 + "moffy-samples-gtk4-run" = callPackage 202957 + ({ mkDerivation, base, c-enum, c-struct, containers 202958 + , exception-hierarchy, gtk4, moffy, moffy-samples-events, random 202959 + , simple-cairo, simple-pango, stm, text, time, type-flip, type-set 202960 + , union-color 202961 + }: 202962 + mkDerivation { 202963 + pname = "moffy-samples-gtk4-run"; 202964 + version = "0.2.1.2"; 202965 + sha256 = "15vmkwc72w9ir7kqa0mhypa6x8y5mxi2lg1fylbcckv5i42kb7n1"; 202966 + libraryHaskellDepends = [ 202967 + base c-enum c-struct containers exception-hierarchy moffy 202968 + moffy-samples-events random simple-cairo simple-pango stm text time 202969 + type-flip type-set union-color 202970 + ]; 202971 + libraryPkgconfigDepends = [ gtk4 ]; 202972 + testHaskellDepends = [ 202973 + base c-enum c-struct containers exception-hierarchy moffy 202974 + moffy-samples-events random simple-cairo simple-pango stm text time 202975 + type-flip type-set union-color 202976 + ]; 202977 + description = "Package to run moffy samples - Gtk4 version"; 202978 + license = lib.licenses.bsd3; 202979 + hydraPlatforms = lib.platforms.none; 202980 + }) {inherit (pkgs) gtk4;}; 202981 + 202733 202982 "mohws" = callPackage 202734 202983 ({ mkDerivation, base, bytestring, containers, data-accessor 202735 202984 , directory, explicit-exception, fail, filepath, html, HTTP ··· 203380 203629 }: 203381 203630 mkDerivation { 203382 203631 pname = "monad-logger-aeson"; 203383 - version = "0.4.1.1"; 203384 - sha256 = "17kz1qbf5n1sdznsyvk3lfc7w6sad5b32143w3kr2gni3p0ms3ln"; 203632 + version = "0.4.1.2"; 203633 + sha256 = "0laajzbmzyf7717m0ikirkkxcsrhiwd7l3yn5cchk7rzb92z4yzx"; 203385 203634 isLibrary = true; 203386 203635 isExecutable = true; 203387 203636 libraryHaskellDepends = [ ··· 205094 205343 "monomer" = callPackage 205095 205344 ({ mkDerivation, async, attoparsec, base, bytestring 205096 205345 , bytestring-to-vector, c2hs, containers, data-default, exceptions 205097 - , extra, formatting, glew, hspec, http-client, JuicyPixels, lens 205098 - , mtl, nanovg, OpenGLRaw, process, sdl2, stm, text, text-show, time 205099 - , transformers, vector, wreq 205346 + , extra, foreign-store, formatting, glew, hspec, http-client 205347 + , JuicyPixels, lens, mtl, nanovg, OpenGLRaw, process, sdl2, stm 205348 + , text, text-show, time, transformers, vector, wreq 205100 205349 }: 205101 205350 mkDerivation { 205102 205351 pname = "monomer"; 205103 - version = "1.5.1.0"; 205104 - sha256 = "13z6ls2y8d4r98dwxl8d65xf0rcs4i0v65zlq93i7yk5zcyw0s8i"; 205105 - revision = "2"; 205106 - editedCabalFile = "0lqkppaak0bxmnihrjpxbav2p9pdcsyybb5sshan0wbwfvxyqh84"; 205352 + version = "1.6.0.0"; 205353 + sha256 = "15cpybwdsh3yq9xhcrk0fpa0dcc805p9q6kn6qcz86khkvmp5qpc"; 205107 205354 isLibrary = true; 205108 205355 isExecutable = true; 205109 205356 libraryHaskellDepends = [ 205110 205357 async attoparsec base bytestring bytestring-to-vector containers 205111 - data-default exceptions extra formatting http-client JuicyPixels 205112 - lens mtl nanovg OpenGLRaw process sdl2 stm text text-show time 205113 - transformers vector wreq 205358 + data-default exceptions extra foreign-store formatting http-client 205359 + JuicyPixels lens mtl nanovg OpenGLRaw process sdl2 stm text 205360 + text-show time transformers vector wreq 205114 205361 ]; 205115 205362 librarySystemDepends = [ glew ]; 205116 205363 libraryPkgconfigDepends = [ glew ]; 205117 205364 libraryToolDepends = [ c2hs ]; 205118 205365 executableHaskellDepends = [ 205119 205366 async attoparsec base bytestring bytestring-to-vector containers 205120 - data-default exceptions extra formatting http-client JuicyPixels 205121 - lens mtl nanovg OpenGLRaw process sdl2 stm text text-show time 205122 - transformers vector wreq 205367 + data-default exceptions extra foreign-store formatting http-client 205368 + JuicyPixels lens mtl nanovg OpenGLRaw process sdl2 stm text 205369 + text-show time transformers vector wreq 205123 205370 ]; 205124 205371 testHaskellDepends = [ 205125 205372 async attoparsec base bytestring bytestring-to-vector containers 205126 - data-default exceptions extra formatting hspec http-client 205127 - JuicyPixels lens mtl nanovg OpenGLRaw process sdl2 stm text 205128 - text-show time transformers vector wreq 205373 + data-default exceptions extra foreign-store formatting hspec 205374 + http-client JuicyPixels lens mtl nanovg OpenGLRaw process sdl2 stm 205375 + text text-show time transformers vector wreq 205129 205376 ]; 205130 205377 description = "A GUI library for writing native Haskell applications"; 205131 205378 license = lib.licenses.bsd3; ··· 205165 205412 }: 205166 205413 mkDerivation { 205167 205414 pname = "monomer-hagrid"; 205168 - version = "0.3.1.1"; 205169 - sha256 = "1akfgsz0j0ybgs2zynp9hbssbn8v457az2g6z094fylgcg2s3aix"; 205415 + version = "0.3.1.2"; 205416 + sha256 = "0x5x57x9vh5jk13qj9946qhcz4kw99r5g3qr7cpyarqclzmp65wl"; 205170 205417 isLibrary = true; 205171 205418 isExecutable = true; 205172 205419 libraryHaskellDepends = [ ··· 206614 206861 testHaskellDepends = [ base hspec ip text ]; 206615 206862 description = "Datastructures to describe TCP and MPTCP connections"; 206616 206863 license = lib.licenses.gpl3Only; 206617 - hydraPlatforms = lib.platforms.none; 206618 206864 }) {}; 206619 206865 206620 206866 "mptcp-pm" = callPackage ··· 207857 208103 }: 207858 208104 mkDerivation { 207859 208105 pname = "mueval"; 207860 - version = "0.9.3"; 207861 - sha256 = "1xqydvz8riz40d4q542akyxfhfq7hbhi306pcxdvbbpczyx8napp"; 208106 + version = "0.9.4"; 208107 + sha256 = "1r6gm1drfkblf6vl36z1kbjpvz5dmcjn4hnlm8r59m794palwzzk"; 207862 208108 isLibrary = true; 207863 208109 isExecutable = true; 207864 - enableSeparateDataOutput = true; 207865 208110 libraryHaskellDepends = [ 207866 208111 base Cabal containers directory extensible-exceptions filepath hint 207867 208112 mtl process QuickCheck show simple-reflect unix 207868 208113 ]; 207869 - executableHaskellDepends = [ base ]; 208114 + executableHaskellDepends = [ 208115 + base Cabal containers directory extensible-exceptions filepath hint 208116 + mtl process QuickCheck show simple-reflect unix 208117 + ]; 208118 + testHaskellDepends = [ 208119 + base Cabal containers directory extensible-exceptions filepath hint 208120 + mtl process QuickCheck show simple-reflect unix 208121 + ]; 207870 208122 description = "Safely evaluate pure Haskell expressions"; 207871 208123 license = lib.licenses.bsd3; 208124 + mainProgram = "mueval"; 207872 208125 }) {}; 207873 208126 207874 208127 "mulang" = callPackage ··· 213204 213457 license = lib.licenses.bsd3; 213205 213458 }) {}; 213206 213459 213460 + "network-simple-tls_0_4_2" = callPackage 213461 + ({ mkDerivation, base, bytestring, crypton-x509, crypton-x509-store 213462 + , crypton-x509-system, crypton-x509-validation, data-default 213463 + , network, network-simple, safe-exceptions, tls 213464 + , tls-session-manager, transformers 213465 + }: 213466 + mkDerivation { 213467 + pname = "network-simple-tls"; 213468 + version = "0.4.2"; 213469 + sha256 = "0m49w5qvfx8b44a4i77zirlxa109pihmymdrr8diy62dlxwvqi5d"; 213470 + libraryHaskellDepends = [ 213471 + base bytestring crypton-x509 crypton-x509-store crypton-x509-system 213472 + crypton-x509-validation data-default network network-simple 213473 + safe-exceptions tls tls-session-manager transformers 213474 + ]; 213475 + description = "Simple interface to TLS secured network sockets"; 213476 + license = lib.licenses.bsd3; 213477 + hydraPlatforms = lib.platforms.none; 213478 + }) {}; 213479 + 213207 213480 "network-simple-ws" = callPackage 213208 213481 ({ mkDerivation, async, base, bytestring, case-insensitive 213209 213482 , network-simple, safe-exceptions, websockets ··· 214128 214401 }: 214129 214402 mkDerivation { 214130 214403 pname = "ngx-export"; 214131 - version = "1.7.7.1"; 214132 - sha256 = "1ynsqhyb8y0rqj2bzwl4pffbwv2cdfxc133ic2lpprjy2hrz5pz5"; 214404 + version = "1.7.8"; 214405 + sha256 = "16a7dq92ibqi2y8dna9dyw43n52av2khp2k5jcc70bis2h90i0b2"; 214133 214406 libraryHaskellDepends = [ 214134 214407 async base binary bytestring deepseq monad-loops template-haskell 214135 214408 unix ··· 214144 214417 }: 214145 214418 mkDerivation { 214146 214419 pname = "ngx-export-distribution"; 214147 - version = "0.5.1.2"; 214148 - sha256 = "1vv5pl6lazbq6g11nsj6ks14by1shjplxllfi9rmij49w67q0xln"; 214420 + version = "0.5.1.3"; 214421 + sha256 = "008i34viq8cw36r46qvnwvhn13y2srpxia7r3n9bk0sjxfz6ia7a"; 214149 214422 isLibrary = true; 214150 214423 isExecutable = true; 214151 214424 libraryHaskellDepends = [ base Cabal directory filepath ]; ··· 214208 214481 }: 214209 214482 mkDerivation { 214210 214483 pname = "ngx-export-tools"; 214211 - version = "1.2.2"; 214212 - sha256 = "18jbvjziy3dakp59bhz4gx9b6w74g1y7mwcmlgmy5wc0snqx22j8"; 214484 + version = "1.2.2.1"; 214485 + sha256 = "1nl3b1i034zbm15mhhyjlgh1220xlih6i80vx4lk83pydagj9xy1"; 214213 214486 libraryHaskellDepends = [ 214214 214487 aeson base binary bytestring ngx-export safe template-haskell 214215 214488 ]; ··· 214228 214501 }: 214229 214502 mkDerivation { 214230 214503 pname = "ngx-export-tools-extra"; 214231 - version = "1.2.5"; 214232 - sha256 = "0myggkgscm4yl4f9wdhpf571dz5yrdfb09ajl1ybic7yl8nmm9zq"; 214504 + version = "1.2.6"; 214505 + sha256 = "174xzifz0qmbq81gcaqnrwc14xk5jx38nygs9p2ansjsf9i4g50r"; 214233 214506 libraryHaskellDepends = [ 214234 214507 aeson array async base base64 binary bytestring case-insensitive 214235 214508 containers ede enclosed-exceptions http-client ··· 214625 214898 }: 214626 214899 mkDerivation { 214627 214900 pname = "nix-freeze-tree"; 214628 - version = "0.1.0.1"; 214629 - sha256 = "050wy6jyjd720k9bndrsh19v0zl987s0s5ym0192lgsh346q1r67"; 214901 + version = "0.1.1.0"; 214902 + sha256 = "1gpck20812pdc2yfgcmc5f2cgxhi27g3587kp8d6yjvl8fbh6ydd"; 214630 214903 isLibrary = false; 214631 214904 isExecutable = true; 214632 214905 libraryHaskellDepends = [ ··· 215465 215738 }: 215466 215739 mkDerivation { 215467 215740 pname = "non-empty-text"; 215468 - version = "0.2.0"; 215469 - sha256 = "0ipbh2lmjya9zayvivy06j5rrkfdydbbr8wfnzb2h1vsnp737fhj"; 215741 + version = "0.2.1"; 215742 + sha256 = "0cvnyigmbbr3xbvh997pwb3zb0m8p1r6r9c7rxdixcdln0jy92yv"; 215470 215743 libraryHaskellDepends = [ base deepseq text ]; 215471 215744 testHaskellDepends = [ 215472 215745 base deepseq doctest Glob hspec QuickCheck text ··· 215550 215823 }: 215551 215824 mkDerivation { 215552 215825 pname = "nonempty-containers"; 215553 - version = "0.3.4.4"; 215554 - sha256 = "12p40gzhmggbvh466s50d6xqaz9y7d32px3yv911wdwkcs3xxkch"; 215826 + version = "0.3.4.5"; 215827 + sha256 = "0a241kdg3spbcj9ajwgwribh5pxfdix8ixp8nm4dik5wq1garskf"; 215555 215828 libraryHaskellDepends = [ 215556 215829 aeson base comonad containers deepseq invariant nonempty-vector 215557 215830 semigroupoids these vector ··· 216169 216442 }: 216170 216443 mkDerivation { 216171 216444 pname = "nqe"; 216172 - version = "0.6.4"; 216173 - sha256 = "17ymmb0sy95yf5abdgq60j9bi9pdr746ap7x0byakd3gi7kciijg"; 216445 + version = "0.6.5"; 216446 + sha256 = "0k8p8sgmw9xl9v76h817zi0dmqkf8wkh8g1h4p481f7psqj82x55"; 216174 216447 libraryHaskellDepends = [ 216175 216448 base conduit containers hashable mtl stm unique unliftio 216176 216449 ]; ··· 218602 218875 ({ mkDerivation, base, old-locale }: 218603 218876 mkDerivation { 218604 218877 pname = "old-time"; 218605 - version = "1.1.0.3"; 218606 - sha256 = "1h9b26s3kfh2k0ih4383w90ibji6n0iwamxp6rfp2lbq1y5ibjqw"; 218607 - revision = "2"; 218608 - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; 218878 + version = "1.1.0.4"; 218879 + sha256 = "0vqn9iifrg601734pvvl3khyxv2y7dxr25z3a9pnfjljgdzyn8hy"; 218609 218880 libraryHaskellDepends = [ base old-locale ]; 218610 218881 description = "Time library"; 218611 218882 license = lib.licenses.bsd3; ··· 218689 218960 }: 218690 218961 mkDerivation { 218691 218962 pname = "om-elm"; 218692 - version = "2.0.0.2"; 218693 - sha256 = "0p9g6638z693jd2gz0bq7i03zqyfq5dql5ym8jagszhdygrccy98"; 218963 + version = "2.0.0.5"; 218964 + sha256 = "0nggl62mf42q69vcjbdbkfflk4b4q6yd15sx0hkvrz1ry2ivjdqq"; 218694 218965 libraryHaskellDepends = [ 218695 218966 base bytestring Cabal containers directory http-types safe 218696 218967 safe-exceptions template-haskell text unix wai ··· 218723 218994 }: 218724 218995 mkDerivation { 218725 218996 pname = "om-fork"; 218726 - version = "0.7.1.8"; 218727 - sha256 = "1pam9jlm8c8pkljzh4b0js1p3yrp4xdwwxicy49dx33asjdxcm4h"; 218997 + version = "0.7.1.9"; 218998 + sha256 = "1892aq7yi36mimmk7lp0y25484vpi2z9lfvrkvi5gbdp1xb96n84"; 218728 218999 libraryHaskellDepends = [ 218729 219000 aeson base exceptions ki monad-logger om-show text unliftio 218730 219001 ]; ··· 218743 219014 }: 218744 219015 mkDerivation { 218745 219016 pname = "om-http"; 218746 - version = "0.3.0.4"; 218747 - sha256 = "0rwq81m251hdqs9l5zkkq8z3yd7gnpjx9cl999gs3n12s469bc0z"; 219017 + version = "0.3.0.5"; 219018 + sha256 = "1wqgv1zs8s08rh9w6g7swbd6q25vnykpig960xv8qdv66p5ngk15"; 218748 219019 libraryHaskellDepends = [ 218749 219020 async base bytestring directory filepath http-types mime-types 218750 219021 monad-logger network om-show safe-exceptions servant ··· 218833 219104 }: 218834 219105 mkDerivation { 218835 219106 pname = "om-logging"; 218836 - version = "1.1.0.4"; 218837 - sha256 = "1cpzw22klh7mq3lxwb68yw8ghc78xwc64kizbjwhzf2laazmdi3b"; 219107 + version = "1.1.0.6"; 219108 + sha256 = "1iml4g4zbdws2jq93r09q005iz4cbnk7zdqif0cbj4gpa0iqbdm7"; 218838 219109 libraryHaskellDepends = [ 218839 219110 aeson base bytestring fast-logger monad-logger om-show split text 218840 219111 time ··· 218849 219120 ({ mkDerivation, base, containers, ghc, safe }: 218850 219121 mkDerivation { 218851 219122 pname = "om-plugin-imports"; 218852 - version = "0.1.0.4"; 218853 - sha256 = "0r8iw67pid9wy8h859j92sb08camky1d12hsak2bsbiqwc10rijz"; 219123 + version = "0.1.0.5"; 219124 + sha256 = "1dz9iwiyn6x2w1f6y3y2f7l30ajg6nr2s65dphrlrd7cnf4fvpdz"; 218854 219125 libraryHaskellDepends = [ base containers ghc safe ]; 218855 219126 description = "Plugin-based import warnings"; 218856 219127 license = lib.licenses.mit; ··· 219841 220112 219842 220113 "opencascade-hs" = callPackage 219843 220114 ({ mkDerivation, base, resourcet, TKBO, TKBRep, TKernel, TKFillet 219844 - , TKG2d, TKG3d, TKGeomBase, TKMath, TKMesh, TKOffset, TKPrim, TKStd 219845 - , TKSTEP, TKSTL, TKTopAlgo, TKV3d 220115 + , TKG2d, TKG3d, TKGeomBase, TKMath, TKMesh, TKOffset, TKPrim 220116 + , TKService, TKStd, TKSTEP, TKSTL, TKTopAlgo, TKV3d 219846 220117 }: 219847 220118 mkDerivation { 219848 220119 pname = "opencascade-hs"; 219849 - version = "0.0.0.1"; 219850 - sha256 = "1fikr8sx3qbciq2wjbfr53al172h1hw3nxq4sxc3mspqiflwmy2c"; 220120 + version = "0.1.1.1"; 220121 + sha256 = "0wfvxnyagci3gl09vrlw2lkjk6vniwc7y2zmbyl0wim03wqkc34b"; 219851 220122 libraryHaskellDepends = [ base resourcet ]; 219852 220123 librarySystemDepends = [ 219853 220124 TKBO TKBRep TKernel TKFillet TKG2d TKG3d TKGeomBase TKMath TKMesh 219854 - TKOffset TKPrim TKStd TKSTEP TKSTL TKTopAlgo TKV3d 220125 + TKOffset TKPrim TKService TKStd TKSTEP TKSTL TKTopAlgo TKV3d 219855 220126 ]; 219856 220127 description = "Thin Wrapper for the OpenCASCADE CAD Kernel"; 219857 220128 license = lib.licenses.lgpl21Only; ··· 219860 220131 }) {TKBO = null; TKBRep = null; TKFillet = null; TKG2d = null; 219861 220132 TKG3d = null; TKGeomBase = null; TKMath = null; TKMesh = null; 219862 220133 TKOffset = null; TKPrim = null; TKSTEP = null; TKSTL = null; 219863 - TKStd = null; TKTopAlgo = null; TKV3d = null; TKernel = null;}; 220134 + TKService = null; TKStd = null; TKTopAlgo = null; TKV3d = null; 220135 + TKernel = null;}; 219864 220136 219865 220137 "opencc" = callPackage 219866 220138 ({ mkDerivation, base, bytestring, mtl, opencc, text, transformers ··· 221156 221428 }: 221157 221429 mkDerivation { 221158 221430 pname = "optima"; 221159 - version = "0.4.0.4"; 221160 - sha256 = "0p7q05f7xmd5y7rd35zcgyvqp8jh945qp5242vshbr875cy25dj5"; 221431 + version = "0.4.0.5"; 221432 + sha256 = "0wdlnfl39zaq9mv7xxaljxq851hp4xzmblkfpfvg4qdfhk4hn7k6"; 221161 221433 libraryHaskellDepends = [ 221162 221434 attoparsec attoparsec-data base optparse-applicative text 221163 221435 text-builder ··· 221536 221808 license = lib.licenses.bsd3; 221537 221809 }) {}; 221538 221810 221811 + "optparse-th" = callPackage 221812 + ({ mkDerivation, base, hspec, optparse-applicative 221813 + , optparse-generic, template-haskell, text 221814 + }: 221815 + mkDerivation { 221816 + pname = "optparse-th"; 221817 + version = "0.1.0.0"; 221818 + sha256 = "1x8lqw46agnz933ymb1hshkh0ziqf6r3pwky90z8ic0wxvhv1sa5"; 221819 + libraryHaskellDepends = [ 221820 + base optparse-applicative optparse-generic template-haskell text 221821 + ]; 221822 + testHaskellDepends = [ 221823 + base hspec optparse-applicative optparse-generic template-haskell 221824 + text 221825 + ]; 221826 + description = "Like `optparse-generic`, but with `TemplateHaskell` for faster builds"; 221827 + license = lib.licenses.bsd3; 221828 + }) {}; 221829 + 221539 221830 "optparse-version" = callPackage 221540 221831 ({ mkDerivation, base, optparse-applicative }: 221541 221832 mkDerivation { ··· 222371 222662 222372 222663 "os-string" = callPackage 222373 222664 ({ mkDerivation, base, bytestring, deepseq, exceptions, QuickCheck 222374 - , random, tasty-bench, template-haskell 222665 + , quickcheck-classes-base, random, tasty-bench, template-haskell 222375 222666 }: 222376 222667 mkDerivation { 222377 222668 pname = "os-string"; 222378 - version = "2.0.0"; 222379 - sha256 = "0mm2mhra424yilg7nww5dn522b5bpriahgdzvbzbv0qf1zbhxv9r"; 222669 + version = "2.0.2"; 222670 + sha256 = "18fay8gmlwskfhdikkhb21za1zpmjvsp33f9afbp2ri9jrp14lq9"; 222380 222671 libraryHaskellDepends = [ 222381 222672 base bytestring deepseq exceptions template-haskell 222382 222673 ]; 222383 - testHaskellDepends = [ base bytestring QuickCheck ]; 222674 + testHaskellDepends = [ 222675 + base bytestring deepseq QuickCheck quickcheck-classes-base 222676 + ]; 222384 222677 benchmarkHaskellDepends = [ 222385 222678 base bytestring deepseq random tasty-bench 222386 222679 ]; ··· 222770 223063 }: 222771 223064 mkDerivation { 222772 223065 pname = "owoify-hs"; 222773 - version = "1.0.0.1"; 222774 - sha256 = "0h7z4hsf5x9qi892sd9jx6r9vcnaskbpxhpq64vmvd2805cznyr1"; 223066 + version = "1.1.0.0"; 223067 + sha256 = "00q0jal8m2d7blmhsgjggxnb2cfx1h7bl3ymlkq55f09ygkv3nvk"; 222775 223068 libraryHaskellDepends = [ base random regex regex-with-pcre text ]; 222776 223069 testHaskellDepends = [ 222777 223070 base HUnit random regex regex-with-pcre text ··· 223395 223688 description = "Client library for PagerDuty Integration and REST APIs"; 223396 223689 license = "unknown"; 223397 223690 hydraPlatforms = lib.platforms.none; 223691 + broken = true; 223398 223692 }) {}; 223399 223693 223400 223694 "pagerduty-hs" = callPackage ··· 223657 223951 ]; 223658 223952 }) {}; 223659 223953 223660 - "pandoc_3_1_9" = callPackage 223954 + "pandoc_3_1_11" = callPackage 223661 223955 , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 223662 - , base64, binary, blaze-html, blaze-markup, bytestring 223956 + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring 223663 223957 , case-insensitive, citeproc, commonmark, commonmark-extensions 223664 223958 , commonmark-pandoc, containers, crypton-connection, data-default 223665 223959 , deepseq, Diff, directory, doclayout, doctemplates, emojis ··· 223676 223970 }: 223677 223971 mkDerivation { 223678 223972 pname = "pandoc"; 223679 - version = "3.1.9"; 223680 - sha256 = "06l62xpmgr35shld3rk1r4yab4x9019fjf1vz0lajjg5jfbl6sca"; 223973 + version = "3.1.11"; 223974 + sha256 = "1ijz2n2xl7qjsbbk9h4bc4d5mxyv0yridsdk6i66ffr25hvl864w"; 223681 223975 configureFlags = [ "-f-trypandoc" ]; 223682 223976 enableSeparateDataOutput = true; 223683 223977 libraryHaskellDepends = [ 223684 - aeson aeson-pretty array attoparsec base base64 binary blaze-html 223685 - blaze-markup bytestring case-insensitive citeproc commonmark 223686 - commonmark-extensions commonmark-pandoc containers 223978 + aeson aeson-pretty array attoparsec base base64-bytestring binary 223979 + blaze-html blaze-markup bytestring case-insensitive citeproc 223980 + commonmark commonmark-extensions commonmark-pandoc containers 223687 223981 crypton-connection data-default deepseq directory doclayout 223688 223982 doctemplates emojis exceptions file-embed filepath Glob gridtables 223689 223983 haddock-library http-client http-client-tls http-types ipynb ··· 223703 223997 base bytestring deepseq mtl tasty-bench text 223704 223998 ]; 223705 223999 doHaddock = false; 223706 - postInstall = '' 223707 - mkdir -p $out/share/man/man1 223708 - mv "man/"*.1 $out/share/man/man1/ 223709 - ''; 223710 224000 description = "Conversion between markup formats"; 223711 224001 license = lib.licenses.gpl2Plus; 223712 224002 hydraPlatforms = lib.platforms.none; ··· 223788 224078 }: 223789 224079 mkDerivation { 223790 224080 pname = "pandoc-cli"; 223791 - version = "0.1.1.1"; 223792 - sha256 = "18qvgnzcklcckfpp1ahh3g1a5pdxp8ww7qq7apdq4xl2m959fh8z"; 224081 + version = "3.1.11"; 224082 + sha256 = "0f8ny7rzl6zgicx7abr631xz2fnrpbb3n8bm6af22ady71g2rrih"; 223793 224083 isLibrary = false; 223794 224084 isExecutable = true; 223795 224085 executableHaskellDepends = [ ··· 224431 224721 }) {}; 224432 224722 224433 224723 "pandoc-server" = callPackage 224434 - ({ mkDerivation, aeson, base, base64, bytestring, containers 224435 - , data-default, doctemplates, pandoc, pandoc-types, servant-server 224436 - , skylighting, text, unicode-collation, wai, wai-cors 224724 + ({ mkDerivation, aeson, base, base64-bytestring, bytestring 224725 + , containers, data-default, doctemplates, pandoc, pandoc-types 224726 + , servant-server, skylighting, text, unicode-collation, wai 224727 + , wai-cors 224437 224728 }: 224438 224729 mkDerivation { 224439 224730 pname = "pandoc-server"; 224440 - version = "0.1.0.3"; 224441 - sha256 = "0g7a5yb3cdh1jaj5z3mhcp1jka5fm138d6176jkg08jh74vdydga"; 224731 + version = "0.1.0.4"; 224732 + sha256 = "101z99b06x4qx0v1dqxpggzjylvhp7g10q7cjn9ass4cfyg2am4v"; 224442 224733 libraryHaskellDepends = [ 224443 - aeson base base64 bytestring containers data-default doctemplates 224444 - pandoc pandoc-types servant-server skylighting text 224734 + aeson base base64-bytestring bytestring containers data-default 224735 + doctemplates pandoc pandoc-types servant-server skylighting text 224445 224736 unicode-collation wai wai-cors 224446 224737 ]; 224447 224738 description = "Pandoc document conversion as an HTTP servant-server"; ··· 224819 225110 broken = true; 224820 225111 }) {}; 224821 225112 224822 - "pantry_0_5_2_1" = callPackage 224823 - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 224824 - , casa-client, casa-types, conduit, conduit-extra, containers 224825 - , cryptonite, cryptonite-conduit, digest, exceptions, filelock 224826 - , generic-deriving, hackage-security, hedgehog, hpack, hspec 224827 - , http-client, http-client-tls, http-conduit, http-download 224828 - , http-types, memory, mtl, network-uri, path, path-io, persistent 224829 - , persistent-sqlite, persistent-template, primitive, QuickCheck 224830 - , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint 224831 - , tar-conduit, text, text-metrics, time, transformers, unix-compat 224832 - , unliftio, unordered-containers, vector, yaml, zip-archive 224833 - }: 224834 - mkDerivation { 224835 - pname = "pantry"; 224836 - version = "0.5.2.1"; 224837 - sha256 = "0g1v78mgxa6mn0vm6yii3nzfdwpn4hgrlcld1h3mbwaxn6c8116k"; 224838 - revision = "1"; 224839 - editedCabalFile = "15gyndsfckzc0iz5bhh4hbiszcyv1mp65445f4mmf6b6pfcq7qag"; 224840 - libraryHaskellDepends = [ 224841 - aeson ansi-terminal base bytestring Cabal casa-client casa-types 224842 - conduit conduit-extra containers cryptonite cryptonite-conduit 224843 - digest filelock generic-deriving hackage-security hpack http-client 224844 - http-client-tls http-conduit http-download http-types memory mtl 224845 - network-uri path path-io persistent persistent-sqlite 224846 - persistent-template primitive resourcet rio rio-orphans 224847 - rio-prettyprint tar-conduit text text-metrics time transformers 224848 - unix-compat unliftio unordered-containers vector yaml zip-archive 224849 - ]; 224850 - testHaskellDepends = [ 224851 - aeson ansi-terminal base bytestring Cabal casa-client casa-types 224852 - conduit conduit-extra containers cryptonite cryptonite-conduit 224853 - digest exceptions filelock generic-deriving hackage-security 224854 - hedgehog hpack hspec http-client http-client-tls http-conduit 224855 - http-download http-types memory mtl network-uri path path-io 224856 - persistent persistent-sqlite persistent-template primitive 224857 - QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint 224858 - tar-conduit text text-metrics time transformers unix-compat 224859 - unliftio unordered-containers vector yaml zip-archive 224860 - ]; 224861 - description = "Content addressable Haskell package management"; 224862 - license = lib.licenses.bsd3; 224863 - hydraPlatforms = lib.platforms.none; 224864 - }) {}; 224865 - 224866 225113 "pantry" = callPackage 224867 225114 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 224868 225115 , casa-client, casa-types, conduit, conduit-extra, containers ··· 224906 225153 license = lib.licenses.bsd3; 224907 225154 }) {}; 224908 225155 224909 - "pantry_0_9_3" = callPackage 225156 + "pantry_0_9_3_1" = callPackage 224910 225157 ({ mkDerivation, aeson, aeson-warning-parser, ansi-terminal, base 224911 225158 , bytestring, Cabal, casa-client, casa-types, companion, conduit 224912 225159 , conduit-extra, containers, crypton, crypton-conduit, digest ··· 224921 225168 }: 224922 225169 mkDerivation { 224923 225170 pname = "pantry"; 224924 - version = "0.9.3"; 224925 - sha256 = "1ls7cdpbq267cgdq1bj31w3vc35aq2hd3qw8ay0rmri95rwyn7k9"; 225171 + version = "0.9.3.1"; 225172 + sha256 = "17nnp3vl03bv5c4c8djyvv7w885ajypzwxwb82vza8m0cf2jyja5"; 224926 225173 isLibrary = true; 224927 225174 isExecutable = true; 224928 225175 libraryHaskellDepends = [ ··· 229643 229890 }: 229644 229891 mkDerivation { 229645 229892 pname = "persistent-mysql"; 229646 - version = "2.13.1.4"; 229647 - sha256 = "10i8x5byqjqgqmjwfjj56dgjhnkv7wf4bg1pad9dd1ld3crlaf8d"; 229893 + version = "2.13.1.5"; 229894 + sha256 = "1dg709kz1rrgj3ir24a8pww47my03h3k5vcn2qld7h2ffcbnlxd9"; 229648 229895 libraryHaskellDepends = [ 229649 229896 aeson base blaze-builder bytestring conduit containers monad-logger 229650 229897 mysql mysql-simple persistent resource-pool resourcet text ··· 229977 230224 }: 229978 230225 mkDerivation { 229979 230226 pname = "persistent-sqlite"; 229980 - version = "2.13.2.0"; 229981 - sha256 = "1v846ymm46b1g1bv95brrnndp7vi3qkfjdfwjqxsdi9c9hixwq87"; 230227 + version = "2.13.3.0"; 230228 + sha256 = "014ibary358yq2shi72ry56xfqzqj173al33nsmcp5z13j8m5hdx"; 229982 230229 configureFlags = [ "-fsystemlib" ]; 229983 230230 isLibrary = true; 229984 230231 isExecutable = true; ··· 230652 230899 pname = "phatsort"; 230653 230900 version = "0.6.0.0"; 230654 230901 sha256 = "1cjmamla9383fk9715jxzlw87qnd26hpkcqhk4vvgld51nraf2pl"; 230655 - revision = "2"; 230656 - editedCabalFile = "0k8yadhps2dgfc0ba016il0lv4idfb9phz492ah6z0k42i0grffa"; 230902 + revision = "3"; 230903 + editedCabalFile = "0fjd37sigkccr9dw70z3yy8hjn7p210b5nn52lj1hf0jlks81q0a"; 230657 230904 isLibrary = true; 230658 230905 isExecutable = true; 230659 230906 libraryHaskellDepends = [ ··· 237250 237497 }: 237251 237498 mkDerivation { 237252 237499 pname = "posit"; 237253 - version = "2022.1.0.0"; 237254 - sha256 = "19ahwh40n2kl3dm4pj7290x6xs37whfafr0lydvccg9vdydavywj"; 237500 + version = "2022.2.0.0"; 237501 + sha256 = "1637dpqfgs4mpl2n8cvzywsdwsv2zw5834k3mmxd5zhq82ai2m0q"; 237255 237502 libraryHaskellDepends = [ 237256 237503 base data-dword deepseq random scientific 237257 237504 ]; ··· 237614 237861 }: 237615 237862 mkDerivation { 237616 237863 pname = "postgresql-binary"; 237617 - version = "0.13.1.1"; 237618 - sha256 = "16s9j1c9kkkcxq1s8jnb2w5y14s9a25hmghbsd827d1qyvxxglwb"; 237864 + version = "0.13.1.2"; 237865 + sha256 = "0gdmzylx8xqsp22hxlc19cqsid64s4bfqc4g9kg16vndc2b1d6x5"; 237619 237866 libraryHaskellDepends = [ 237620 237867 aeson base binary-parser bytestring bytestring-strict-builder 237621 237868 containers network-ip scientific text time transformers ··· 238327 238574 "postgresql-syntax" = callPackage 238328 238575 ({ mkDerivation, base, bytestring, case-insensitive, hashable 238329 238576 , headed-megaparsec, hedgehog, megaparsec, parser-combinators 238330 - , QuickCheck, quickcheck-instances, rerebase, tasty, tasty-hunit 238331 - , tasty-quickcheck, text, text-builder, unordered-containers 238577 + , rerebase, tasty, tasty-hunit, text, text-builder 238578 + , unordered-containers 238332 238579 }: 238333 238580 mkDerivation { 238334 238581 pname = "postgresql-syntax"; 238335 - version = "0.4.1"; 238336 - sha256 = "1ls3jjgbvdy0x3110lgjd3icas187qyd31cwvi858l6ayhwf9kck"; 238582 + version = "0.4.1.1"; 238583 + sha256 = "1xzvp3ix75y8f3zwpm50dz1zafbyc0x311a2fc9dxb3v4vbcvwvl"; 238337 238584 libraryHaskellDepends = [ 238338 238585 base bytestring case-insensitive hashable headed-megaparsec 238339 238586 megaparsec parser-combinators text text-builder 238340 238587 unordered-containers 238341 238588 ]; 238342 - testHaskellDepends = [ 238343 - hedgehog QuickCheck quickcheck-instances rerebase tasty tasty-hunit 238344 - tasty-quickcheck 238345 - ]; 238589 + testHaskellDepends = [ hedgehog rerebase tasty tasty-hunit ]; 238346 238590 description = "PostgreSQL AST parsing and rendering"; 238347 238591 license = lib.licenses.mit; 238348 238592 }) {}; ··· 241357 241601 pname = "process"; 241358 241602 version = "1.6.18.0"; 241359 241603 sha256 = "0zm3v2m95a7bsnndl1pvdj9a7gd4v84pb34rmgsqjkwpwi7lqpxa"; 241604 + revision = "1"; 241605 + editedCabalFile = "0hi7wnsi1yxx7chxbbpjlisid1slq8biw6m4bld6s6hy2njbryv9"; 241360 241606 libraryHaskellDepends = [ base deepseq directory filepath unix ]; 241361 241607 testHaskellDepends = [ base bytestring directory ]; 241362 241608 description = "Process libraries"; ··· 243832 244078 }: 243833 244079 mkDerivation { 243834 244080 pname = "ptr-poker"; 243835 - version = "0.1.2.13"; 243836 - sha256 = "07j9iszxv3c0yw3lm8zlf1wl34imr3r828fc8jg047rr28yxy2kg"; 244081 + version = "0.1.2.14"; 244082 + sha256 = "025b3z6mpyb2v2jvv5x0dryghlwcz083f8721kddfyi7v0qd10vg"; 243837 244083 libraryHaskellDepends = [ base bytestring scientific text ]; 243838 244084 testHaskellDepends = [ 243839 244085 hedgehog isomorphism-class numeric-limits rerebase ··· 246220 246466 }: 246221 246467 mkDerivation { 246222 246468 pname = "quic"; 246223 - version = "0.1.12"; 246224 - sha256 = "14jk6d0i72ry9x5k1rxy0qgvxw0sp05g03yhjsvyqchh6x9m4kb7"; 246469 + , containers, directory, filepath, gd, gtk3, hashable, hoodle-types 246470 + sha256 = "04ncav3c5jjakasvlr8r45zgwfbb9dmikx4945afxsm0iaqryxqd"; 246225 246471 isLibrary = true; 246226 246472 isExecutable = true; 246227 246473 libraryHaskellDepends = [ ··· 247727 247973 executableHaskellDepends = [ base ]; 247728 247974 description = "A library and program to create QIF files from Rabobank CSV exports"; 247729 247975 license = "GPL"; 247730 - hydraPlatforms = lib.platforms.none; 247731 247976 mainProgram = "rabocsv2qif"; 247732 247977 }) {}; 247733 247978 ··· 248830 249075 ({ mkDerivation, async, base, containers, foreign-store, stm }: 248831 249076 mkDerivation { 248832 249077 pname = "rapid"; 248833 - version = "0.1.4"; 248834 - sha256 = "0f86j4r3sm74w49v9x9s58wahgcgick6z7awl6piq83iqaiy4sh7"; 248835 - revision = "2"; 248836 - editedCabalFile = "1v31sadig136f7jv9cj7ddj2fn1ymhiahg4hg5n8l3czsjck7qmp"; 249078 + version = "0.1.5"; 249079 + sha256 = "13nd69rjw0xdxvcqwgs9vzq93l0yiha9zqaw5is6mw20vks6akw5"; 248837 249080 libraryHaskellDepends = [ 248838 249081 async base containers foreign-store stm 248839 249082 ]; 248840 - description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values"; 249083 + description = "Hot reload and reload-surviving values with GHCi"; 248841 249084 license = lib.licenses.bsd3; 248842 249085 hydraPlatforms = lib.platforms.none; 248843 249086 broken = true; ··· 250634 250877 license = lib.licenses.mit; 250635 250878 }) {}; 250636 250879 250637 - "rebase_1_20_1_1" = callPackage 250880 + "rebase_1_20_2" = callPackage 250638 250881 ({ mkDerivation, base, bifunctors, bytestring, comonad, containers 250639 250882 , contravariant, deepseq, dlist, either, groups, hashable 250640 250883 , invariant, mtl, profunctors, scientific, selective, semigroupoids ··· 250643 250886 }: 250644 250887 mkDerivation { 250645 250888 pname = "rebase"; 250646 - version = "1.20.1.1"; 250647 - sha256 = "1fwshqfshqxdjfxb9flbch40mjdjqfc3vl7q1j9b1dcv7jfyjv0h"; 250889 + version = "1.20.2"; 250890 + sha256 = "14mvgg50yy5msmqv7p8kgx5dvj27dsxpzncmgzx5237kj6l9f4h0"; 250648 250891 libraryHaskellDepends = [ 250649 250892 base bifunctors bytestring comonad containers contravariant deepseq 250650 250893 dlist either groups hashable invariant mtl profunctors scientific ··· 251343 251586 ]; 251344 251587 description = "REdis Serialization Protocol (RESP) implementation"; 251345 251588 license = lib.licenses.mpl20; 251346 - hydraPlatforms = lib.platforms.none; 251347 251589 }) {}; 251348 251590 251349 251591 "redis-schema" = callPackage ··· 252780 253022 }: 252781 253023 mkDerivation { 252782 253024 pname = "refurb"; 252783 - version = "0.3.0.2"; 252784 - sha256 = "09yzk37f2sbmygva12splnxj3z6sy35mz9b6s7w82s1jbvy16zgr"; 253025 + version = "0.3.0.3"; 253026 + sha256 = "14l1pr95bacxn662ankww9lwpwdg0f58m4x0k8vmalpdjzc53kg6"; 252785 253027 libraryHaskellDepends = [ 252786 253028 ansi-wl-pprint base bytestring classy-prelude composite-base 252787 253029 composite-opaleye dlist exceptions fast-logger lens monad-control ··· 255385 255627 }: 255386 255628 mkDerivation { 255387 255629 pname = "request"; 255388 - version = "0.2.1.0"; 255389 - sha256 = "1a2zx0gb03mv6g4sw0r6pxkvih8ca5w9w44k6d3n7b5b7s8yznhk"; 255630 + version = "0.2.2.0"; 255631 + sha256 = "057x980cs826j7yjhiph6m9j33zh0nlrshfdbq4i8g887scbqgnx"; 255390 255632 libraryHaskellDepends = [ 255391 255633 base bytestring case-insensitive http-client http-client-tls 255392 255634 http-types ··· 255500 255742 license = lib.licenses.mit; 255501 255743 }) {}; 255502 255744 255503 - "rerebase_1_20_1_1" = callPackage 255745 + "rerebase_1_20_2" = callPackage 255504 255746 ({ mkDerivation, rebase }: 255505 255747 mkDerivation { 255506 255748 pname = "rerebase"; 255507 - version = "1.20.1.1"; 255508 - sha256 = "1rwqk72y0ky8xc3r5j1f04f8a7g37l8j5ybcadxf0wsbnhnz0lli"; 255749 + version = "1.20.2"; 255750 + sha256 = "0c6ba9cvs2bq9yswys7xl6vl03bn3fm7b5iar5wpqd0aii2qqnps"; 255509 255751 libraryHaskellDepends = [ rebase ]; 255510 255752 description = "Reexports from \"base\" with a bunch of other standard libraries"; 255511 255753 license = lib.licenses.mit; ··· 255884 256126 license = lib.licenses.bsd3; 255885 256127 }) {}; 255886 256128 256129 + "resourcet-extra" = callPackage 256130 + ({ mkDerivation, base, containers, resourcet, safe-exceptions }: 256131 + mkDerivation { 256132 + pname = "resourcet-extra"; 256133 + version = "0.0.1"; 256134 + sha256 = "09kgzdg3g1lsadgrqaj9dviwap8j3zv2rm1yby9ywxx6zdbglrrw"; 256135 + libraryHaskellDepends = [ 256136 + base containers resourcet safe-exceptions 256137 + ]; 256138 + description = "ResourceT extras"; 256139 + license = lib.licenses.bsd3; 256140 + hydraPlatforms = lib.platforms.none; 256141 + broken = true; 256142 + }) {}; 256143 + 255887 256144 "resourcet-pool" = callPackage 255888 256145 ({ mkDerivation, base, resource-pool, resourcet }: 255889 256146 mkDerivation { ··· 259584 259841 description = "Let your mind know that your hands need a rest!"; 259585 259842 license = lib.licenses.bsd2; 259586 259843 badPlatforms = lib.platforms.darwin; 259844 + hydraPlatforms = lib.platforms.none; 259845 + broken = true; 259587 259846 }) {}; 259588 259847 259589 259848 "rspp" = callPackage ··· 260240 260499 }: 260241 260500 mkDerivation { 260242 260501 pname = "rzk"; 260243 - version = "0.6.7"; 260244 - sha256 = "1k7ngvdsn59q7b7j9q1cfm1r6vwxqhbaal7qnxy0r9y6vcc6ggxf"; 260502 + version = "0.7.1"; 260503 + sha256 = "14jfpr5dl6fwkz3zydi3mwdrs08rbhasxz0mwhqy3vp4x5vw22m2"; 260245 260504 isLibrary = true; 260246 260505 isExecutable = true; 260247 260506 setupHaskellDepends = [ base Cabal process ]; 260248 260507 libraryHaskellDepends = [ 260249 260508 aeson array base bifunctors bytestring co-log-core 260250 260509 data-default-class directory filepath Glob lens lsp lsp-types mtl 260251 - optparse-generic stm template-haskell text yaml 260510 + stm template-haskell text yaml 260252 260511 ]; 260253 260512 libraryToolDepends = [ alex BNFC happy ]; 260254 260513 executableHaskellDepends = [ ··· 260258 260517 executableToolDepends = [ alex BNFC happy ]; 260259 260518 testHaskellDepends = [ 260260 260519 array base bifunctors bytestring directory doctest Glob mtl 260261 - optparse-generic QuickCheck template-haskell text yaml 260520 + QuickCheck template-haskell text yaml 260262 260521 ]; 260263 260522 testToolDepends = [ alex BNFC happy ]; 260264 260523 description = "An experimental proof assistant for synthetic ∞-categories"; ··· 260405 260664 }: 260406 260665 mkDerivation { 260407 260666 pname = "safe-coloured-text-gen"; 260408 - version = "0.0.0.1"; 260409 - sha256 = "1h2n6qvggrzrqfbi9633kjzmlpgqf4anbqzip6l3ygj5p1lk69zb"; 260667 + version = "0.0.0.2"; 260668 + sha256 = "09ggxr8r3qynk5vyg52j4pyq4qp3mwfigzp837agxgkv3bxb3638"; 260410 260669 libraryHaskellDepends = [ 260411 260670 base genvalidity genvalidity-bytestring genvalidity-text 260412 260671 safe-coloured-text ··· 262212 262471 license = lib.licenses.mit; 262213 262472 }) {}; 262214 262473 262215 - "sbp_5_0_1" = callPackage 262474 + "sbp_5_0_4" = callPackage 262216 262475 ({ mkDerivation, aeson, aeson-pretty, array, base 262217 262476 , base64-bytestring, basic-prelude, binary, binary-conduit 262218 262477 , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 ··· 262221 262480 }: 262222 262481 mkDerivation { 262223 262482 pname = "sbp"; 262224 - version = "5.0.1"; 262225 - sha256 = "0nld66iq1jdi5zj9zzixvs2mmdkw3drq5pgmwhnw4rfhwdz0vkc4"; 262483 + version = "5.0.4"; 262484 + sha256 = "1wfv99haslzjb7bl43a30z4m1gp0d83xayy7a5f4x447v6g9l8cd"; 262226 262485 isLibrary = true; 262227 262486 isExecutable = true; 262228 262487 libraryHaskellDepends = [ ··· 262571 262830 }: 262572 262831 mkDerivation { 262573 262832 pname = "scalpel"; 262574 - version = "0.6.2.1"; 262575 - sha256 = "0w3l38czfsgbyd3x6yir7qw9bl8nmhclrbpbwfyhs39728jlscnc"; 262833 + version = "0.6.2.2"; 262834 + sha256 = "0cv43mf4sb3yii2dnv3pxqwlq31m0k39vqahqww9bjphqzny5ms5"; 262576 262835 libraryHaskellDepends = [ 262577 262836 base bytestring case-insensitive data-default http-client 262578 262837 http-client-tls scalpel-core tagsoup text ··· 262588 262847 }: 262589 262848 mkDerivation { 262590 262849 pname = "scalpel-core"; 262591 - version = "0.6.2.1"; 262592 - sha256 = "1yl1lsi5xm3qdlww2sb6vyppjiisj54f4yzvffv3qg8dgkfjfdra"; 262850 + version = "0.6.2.2"; 262851 + sha256 = "07byri7i3mz04axlxbrbiavm6yqigii9xw8fbyf2944xph564dba"; 262593 262852 libraryHaskellDepends = [ 262594 262853 base bytestring containers data-default fail mtl pointedlist 262595 262854 regex-base regex-tdfa tagsoup text transformers vector ··· 263443 263702 license = lib.licenses.bsd3; 263444 263703 }) {}; 263445 263704 263446 - "scotty_0_20_1" = callPackage 263705 + "scotty_0_21" = callPackage 263447 263706 ({ mkDerivation, aeson, async, base, blaze-builder, bytestring 263448 - , case-insensitive, cookie, data-default-class, directory 263449 - , exceptions, hspec, hspec-discover, hspec-wai, http-types 263450 - , lifted-base, lucid, monad-control, mtl, network, regex-compat 263451 - , stm, text, time, transformers, transformers-base 263707 + , case-insensitive, cookie, data-default-class, directory, doctest 263708 + , exceptions, hspec, hspec-discover, hspec-wai, http-client 263709 + , http-types, lifted-base, lucid, monad-control, mtl, network 263710 + , regex-compat, stm, text, time, transformers, transformers-base 263452 263711 , transformers-compat, unliftio, wai, wai-extra, warp, weigh 263453 263712 }: 263454 263713 mkDerivation { 263455 263714 pname = "scotty"; 263456 - version = "0.20.1"; 263457 - sha256 = "1770kj78zdi137pskiyx28id64vilmhylnkgy139pvxa95n8i6kd"; 263458 - revision = "1"; 263459 - editedCabalFile = "02gz7kgv273scgmig0qkvfynslhqg9pnhmablidr47kw80kqghy6"; 263715 + version = "0.21"; 263716 + sha256 = "1qnyagwirxcmja3wbiyp5s8f0dvcdiz7fh0a6jc4vyj2yy175yi4"; 263460 263717 libraryHaskellDepends = [ 263461 263718 aeson base blaze-builder bytestring case-insensitive cookie 263462 263719 data-default-class exceptions http-types monad-control mtl network ··· 263464 263721 transformers-compat unliftio wai wai-extra warp 263465 263722 ]; 263466 263723 testHaskellDepends = [ 263467 - async base bytestring directory hspec hspec-wai http-types 263468 - lifted-base network text wai 263724 + async base bytestring directory doctest hspec hspec-wai http-client 263725 + http-types lifted-base network text wai 263469 263726 ]; 263470 263727 testToolDepends = [ hspec-discover ]; 263471 263728 benchmarkHaskellDepends = [ ··· 265663 265920 ({ mkDerivation, base, bytestring, network }: 265664 265921 mkDerivation { 265665 265922 pname = "sendfile"; 265666 - version = "0.7.11.4"; 265667 - sha256 = "1i2i0w18l2ysambyylv93jzy0adiiqwwnhg7zagqb7p2srybxc3k"; 265668 - revision = "1"; 265669 - editedCabalFile = "0276l0b49b4y4z9dy5a5i7182678vv1flmkhiw1a4jsbmc4mrfgm"; 265923 + version = "0.7.11.5"; 265924 + sha256 = "0b0rzry82yyy96kb9aywlggna721bhzvx8af5s6say6ssm7hwsad"; 265670 265925 libraryHaskellDepends = [ base bytestring network ]; 265671 265926 description = "A portable sendfile library"; 265672 265927 license = lib.licenses.bsd3; ··· 266504 266759 mainProgram = "image-conversion"; 266505 266760 }) {}; 266506 266761 266762 + "servant-aeson-generics-typescript" = callPackage 266763 + ({ mkDerivation, aeson, aeson-generics-typescript, async, base 266764 + , bytestring, containers, directory, filepath, hspec, hspec-wai 266765 + , http-types, jose-jwt, process, QuickCheck, random, servant 266766 + , servant-auth, servant-server, split, string-interpolate, text 266767 + , time, warp 266768 + }: 266769 + mkDerivation { 266770 + pname = "servant-aeson-generics-typescript"; 266771 + version = "0.0.0.1"; 266772 + sha256 = "164f9c22lbyv670ci8yxknpas1gi4yswdpkq20ls4nnq7jsa3zi5"; 266773 + isLibrary = true; 266774 + isExecutable = true; 266775 + libraryHaskellDepends = [ 266776 + aeson aeson-generics-typescript base containers http-types jose-jwt 266777 + servant string-interpolate text 266778 + ]; 266779 + executableHaskellDepends = [ 266780 + aeson aeson-generics-typescript async base bytestring containers 266781 + directory filepath hspec hspec-wai http-types jose-jwt process 266782 + QuickCheck random servant servant-auth servant-server split 266783 + string-interpolate text time warp 266784 + ]; 266785 + description = "Generates a TypeScript client for Servant APIs"; 266786 + license = lib.licenses.bsd3; 266787 + hydraPlatforms = lib.platforms.none; 266788 + mainProgram = "tests"; 266789 + }) {}; 266790 + 266507 266791 "servant-aeson-specs" = callPackage 266508 266792 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory 266509 266793 , doctest, filepath, hspec, hspec-core, hspec-golden-aeson, mockery ··· 267805 268089 }: 267806 268090 mkDerivation { 267807 268091 pname = "servant-hmac-auth"; 267808 - version = "0.1.5"; 267809 - sha256 = "1vpa699lrx20309z0brqlbiqn1mwjjqgb5k5nwxgqm67p8k3y0sx"; 268092 + version = "0.1.6"; 268093 + sha256 = "19w7kg39mzrzir8l0qism3zqjgln7wa02zzbdk9swwnfcja8xm1h"; 267810 268094 libraryHaskellDepends = [ 267811 268095 base base64-bytestring bytestring case-insensitive containers 267812 268096 cryptonite http-client http-types memory mtl servant servant-client ··· 268194 268478 license = lib.licenses.bsd3; 268195 268479 hydraPlatforms = lib.platforms.none; 268196 268480 mainProgram = "mock-app"; 268481 + broken = true; 268197 268482 }) {}; 268198 268483 268199 268484 "servant-multipart" = callPackage ··· 268420 268705 }: 268421 268706 mkDerivation { 268422 268707 pname = "servant-pagination"; 268423 - version = "2.5.0"; 268424 - sha256 = "1ia17r5mlm20cdiswh95q4mbm6kgsjba1vpzyh07yfz998dax6y3"; 268708 + version = "2.5.1"; 268709 + sha256 = "09kz1dznwmv560zyyqh9n71cfvw8xdkclqg5fyknjyiqva56xpnv"; 268425 268710 isLibrary = true; 268426 268711 isExecutable = true; 268427 268712 libraryHaskellDepends = [ ··· 268565 268850 }: 268566 268851 mkDerivation { 268567 268852 pname = "servant-prometheus"; 268568 - version = "1.1.0"; 268569 - sha256 = "0sykw9b5pkrccf4kdggg941dpafjfxsh0854f0v92c3582nr5xbq"; 268853 + version = "1.2.0"; 268854 + sha256 = "1jgbmrf1g85zsvy446b5ckwr1q3qm8gigybbf8vvd26wa3fxbbjp"; 268570 268855 libraryHaskellDepends = [ 268571 268856 base clock ghc-prim hashable http-types prometheus-client servant 268572 268857 text wai ··· 271233 271518 ]; 271234 271519 description = "Dependency tracking for Futhark"; 271235 271520 license = lib.licenses.bsd3; 271521 + hydraPlatforms = lib.platforms.none; 271522 + broken = true; 271236 271523 }) {}; 271237 271524 271238 271525 "shake-google-closure-compiler" = callPackage ··· 273376 273663 }: 273377 273664 mkDerivation { 273378 273665 pname = "simple-cairo"; 273379 - version = "0.1.0.5"; 273380 - sha256 = "1r11gwvx0qssmv99scsblqys450aq8aq1p4vs424s1wv1j59afl3"; 273666 + version = "0.1.0.6"; 273667 + sha256 = "08w3q6mln3xmd8hjkaaw0j0djcyxc9wnrwangd6p5ajp3zdf26wb"; 273381 273668 enableSeparateDataOutput = true; 273382 273669 libraryHaskellDepends = [ 273383 273670 base bytestring c-struct cairo-image exception-hierarchy primitive ··· 273390 273677 ]; 273391 273678 description = "Binding to Cairo library"; 273392 273679 license = lib.licenses.bsd3; 273393 - hydraPlatforms = lib.platforms.none; 273394 273680 }) {inherit (pkgs) cairo;}; 273395 273681 273396 273682 "simple-cmd" = callPackage ··· 273879 274165 description = "Binding to Pango library"; 273880 274166 license = lib.licenses.bsd3; 273881 274167 hydraPlatforms = lib.platforms.none; 274168 + broken = true; 273882 274169 }) {inherit (pkgs) pango;}; 273883 274170 273884 274171 "simple-parser" = callPackage ··· 277524 277811 }: 277525 277812 mkDerivation { 277526 277813 pname = "snap-extras"; 277527 - version = "0.12.3.0"; 277528 - sha256 = "0r21fmmhn90rjvgxmlcq5f1q8dxd1y2zr62z2llcnl206a2hpm2x"; 277814 + version = "0.12.3.1"; 277815 + sha256 = "04prc1gbir7kyakqb71mj1x3lxl09n2lybb2df7ksczv96qg6dsx"; 277529 277816 isLibrary = true; 277530 277817 isExecutable = true; 277531 277818 enableSeparateDataOutput = true; ··· 282745 283032 mainProgram = "stack-clean-old"; 282746 283033 }) {}; 282747 283034 282748 - "stack-clean-old_0_5" = callPackage 283035 + "stack-clean-old_0_5_1" = callPackage 282749 283036 ({ mkDerivation, base, directory, extra, filemanip, filepath 282750 283037 , simple-cmd, simple-cmd-args, simple-prompt 282751 283038 }: 282752 283039 mkDerivation { 282753 283040 pname = "stack-clean-old"; 282754 - version = "0.5"; 282755 - sha256 = "1d2hgn6f39iy4sw4zqalzc804f2463y99j9p8vzlr6bckan2krx3"; 283041 + version = "0.5.1"; 283042 + sha256 = "0crk2pqfsjqd386ggg0i6nx2nd0an50y9vglwix184s7mry7yzvm"; 282756 283043 isLibrary = false; 282757 283044 isExecutable = true; 282758 283045 executableHaskellDepends = [ ··· 283604 283891 }: 283605 283892 mkDerivation { 283606 283893 pname = "stan"; 283607 - version = "0.1.0.2"; 283608 - sha256 = "03zalyk0ickp9acfi6s869h4p3a7djpzpiwsp3nlhwhbdv2si9q4"; 283609 - revision = "1"; 283610 - editedCabalFile = "1dhcx7q4n4yrp9kxqzwha5spzxfqqzwax43gw82ncdh1ykinjgyb"; 283894 + version = "0.1.1.0"; 283895 + sha256 = "0w5i4xfzgbsfv3yzl0j9wzqwyi2z4ynfkrqsa4lnbxrf0xnmnazn"; 283611 283896 isLibrary = true; 283612 283897 isExecutable = true; 283613 283898 libraryHaskellDepends = [ 283614 - array base base64 blaze-html bytestring clay colourista 283899 + array base base64 blaze-html bytestring clay colourista containers 283615 283900 cryptohash-sha1 dir-traverse directory extensions filepath ghc 283616 283901 ghc-boot-th gitrev microaeson optparse-applicative pretty-simple 283617 283902 process relude slist text tomland trial trial-optparse-applicative ··· 283625 283910 doHaddock = false; 283626 283911 description = "Haskell STatic ANalyser"; 283627 283912 license = lib.licenses.mpl20; 283628 - hydraPlatforms = lib.platforms.none; 283629 283913 mainProgram = "stan"; 283630 - broken = true; 283631 283914 }) {}; 283632 283915 283633 283916 "standalone-derive-topdown" = callPackage ··· 286338 286621 pname = "streamly"; 286339 286622 version = "0.10.0"; 286340 286623 sha256 = "0mpgi3pz4xbqrzidsp2gbn4wcqfvi5nhry41sxx1rfjg6lyn9r6g"; 286624 + revision = "1"; 286625 + editedCabalFile = "0jas47x44iiylfzrx1wvmnf0w9nnr95h1gdn5bnswjr50xcyg01d"; 286341 286626 libraryHaskellDepends = [ 286342 286627 atomic-primops base containers deepseq directory exceptions 286343 286628 hashable heaps lockfree-queue monad-control mtl network ··· 286458 286743 license = lib.licenses.bsd3; 286459 286744 }) {}; 286460 286745 286461 - "streamly-core_0_2_0" = callPackage 286746 + "streamly-core_0_2_1" = callPackage 286462 286747 ({ mkDerivation, base, containers, directory, exceptions, filepath 286463 286748 , fusion-plugin-types, ghc-bignum, ghc-prim, heaps, monad-control 286464 286749 , template-haskell, transformers, unix 286465 286750 }: 286466 286751 mkDerivation { 286467 286752 pname = "streamly-core"; 286468 - version = "0.2.0"; 286469 - sha256 = "09146gbkg0w0cdb30y498lipqyywjb3r5pmyv4w83cxpfyvq1qlz"; 286753 + version = "0.2.1"; 286754 + sha256 = "1zal66xpamh07xk8vx6ibxg9cz1a7s0hry31lyqr3nimk26c1zbs"; 286470 286755 libraryHaskellDepends = [ 286471 286756 base containers directory exceptions filepath fusion-plugin-types 286472 286757 ghc-bignum ghc-prim heaps monad-control template-haskell 286473 286758 transformers unix 286474 286759 ]; 286475 - description = "Streaming, parsers, arrays and more"; 286760 + description = "Streaming, parsers, arrays, serialization and more"; 286476 286761 license = lib.licenses.bsd3; 286477 286762 hydraPlatforms = lib.platforms.none; 286478 286763 }) {}; ··· 286498 286783 license = lib.licenses.asl20; 286499 286784 }) {}; 286500 286785 286786 + "streamly-examples_0_2_0" = callPackage 286787 + ({ mkDerivation, base, containers, directory, exceptions 286788 + , fusion-plugin, hashable, mtl, network, random, streamly 286789 + , streamly-core, tasty-bench, transformers, transformers-base 286790 + , unordered-containers, vector 286791 + }: 286792 + mkDerivation { 286793 + pname = "streamly-examples"; 286794 + version = "0.2.0"; 286795 + sha256 = "0m2mzsbijd11hxq6kvsd61700ndvj58qdixvp7mkdrvb7pw5jf4q"; 286796 + isLibrary = false; 286797 + isExecutable = true; 286798 + executableHaskellDepends = [ 286799 + base containers directory exceptions fusion-plugin hashable mtl 286800 + network random streamly streamly-core tasty-bench transformers 286801 + transformers-base unordered-containers vector 286802 + ]; 286803 + description = "Examples for Streamly"; 286804 + license = lib.licenses.asl20; 286805 + hydraPlatforms = lib.platforms.none; 286806 + }) {}; 286807 + 286501 286808 "streamly-fsnotify" = callPackage 286502 286809 ({ mkDerivation, base, filepath, fsnotify, semirings, streamly 286503 286810 , text, time ··· 290346 290653 }: 290347 290654 mkDerivation { 290348 290655 pname = "sydtest-hspec"; 290349 - version = "0.4.0.1"; 290350 - sha256 = "1bw33c71ra3m1wslmmclqkwnac9vbi871qigir5y4fr1p2arjgrn"; 290656 + version = "0.4.0.2"; 290657 + sha256 = "0qlm0plp3kr57g43li9g3maicxsidx31bvmxkng1q0s7cwzq3wma"; 290351 290658 libraryHaskellDepends = [ 290352 290659 base hspec-core mtl QuickCheck stm sydtest 290353 290660 ]; ··· 293562 293869 license = lib.licenses.bsd3; 293563 293870 }) {}; 293564 293871 293872 + "tar_0_6_0_0" = callPackage 293873 + ({ mkDerivation, array, base, bytestring, containers, deepseq 293874 + , directory, file-embed, filepath, QuickCheck, tasty, tasty-bench 293875 + , tasty-quickcheck, temporary, time 293876 + }: 293877 + mkDerivation { 293878 + pname = "tar"; 293879 + version = "0.6.0.0"; 293880 + sha256 = "11hr2p0lrdkklvn7yf85cqhyzq4ax2lxsfg0rljakkrpnn7s0n44"; 293881 + libraryHaskellDepends = [ 293882 + array base bytestring containers deepseq directory filepath time 293883 + ]; 293884 + testHaskellDepends = [ 293885 + array base bytestring containers deepseq directory file-embed 293886 + filepath QuickCheck tasty tasty-quickcheck temporary time 293887 + ]; 293888 + benchmarkHaskellDepends = [ 293889 + array base bytestring containers deepseq directory filepath 293890 + tasty-bench temporary time 293891 + ]; 293892 + doHaddock = false; 293893 + description = "Reading, writing and manipulating \".tar\" archive files."; 293894 + license = lib.licenses.bsd3; 293895 + hydraPlatforms = lib.platforms.none; 293896 + }) {}; 293897 + 293565 293898 "tar-bytestring" = callPackage 293566 293899 ({ mkDerivation, array, base, bytestring, bytestring-handle 293567 293900 , containers, criterion, deepseq, hpath-directory, hpath-filepath ··· 293705 294038 pname = "tart"; 293706 294039 version = "0.3"; 293707 294040 sha256 = "0zqj8cz4q1447an9fak73vzandd497xa745km3w4y3cffnc0zwyw"; 294041 + revision = "1"; 294042 + editedCabalFile = "0n8l43anikll6l81rmm5y7qj6rmzmnr502n00qyzz2jqwgygdrzy"; 293708 294043 isLibrary = true; 293709 294044 isExecutable = true; 293710 294045 libraryHaskellDepends = [ ··· 295948 296283 }: 295949 296284 mkDerivation { 295950 296285 pname = "templatise"; 295951 - version = "0.1.0.3"; 295952 - sha256 = "0fxwmvyr9rslr0jbji98xhz2zdk46xznnhavzfa0d3nl4kglkp1q"; 296286 + version = "0.1.1.0"; 296287 + sha256 = "1vkqnb0h7gqrm50vndrg4xz1g5izzn93wbmkcsy3wrb99isl4yj4"; 295953 296288 isLibrary = false; 295954 296289 isExecutable = true; 295955 296290 enableSeparateDataOutput = true; ··· 297749 298084 license = lib.licenses.gpl2Only; 297750 298085 }) {}; 297751 298086 298087 + "texmath_0_12_8_6" = callPackage 298088 + ({ mkDerivation, base, bytestring, containers, directory, filepath 298089 + , mtl, pandoc-types, parsec, pretty-show, split, syb, tagged, tasty 298090 + , tasty-golden, text, typst-symbols, xml 298091 + }: 298092 + mkDerivation { 298093 + pname = "texmath"; 298094 + version = "0.12.8.6"; 298095 + sha256 = "17fs83q1wb2s8j8ia5c36108wibm8pvdqhz4zcflvdivml3pm8vv"; 298096 + isLibrary = true; 298097 + isExecutable = true; 298098 + libraryHaskellDepends = [ 298099 + base containers mtl pandoc-types parsec split syb text 298100 + typst-symbols xml 298101 + ]; 298102 + testHaskellDepends = [ 298103 + base bytestring directory filepath pretty-show tagged tasty 298104 + tasty-golden text xml 298105 + ]; 298106 + description = "Conversion between math formats"; 298107 + license = lib.licenses.gpl2Only; 298108 + hydraPlatforms = lib.platforms.none; 298109 + }) {}; 298110 + 297752 298111 "texrunner" = callPackage 297753 298112 ({ mkDerivation, attoparsec, base, bytestring, directory, filepath 297754 298113 , HUnit, io-streams, lens, mtl, process, semigroups, temporary ··· 299339 299698 }: 299340 299699 mkDerivation { 299341 299700 pname = "th-extras"; 299342 - version = "0.0.0.6"; 299343 - sha256 = "0jkwy2kqdqmq3qmfy76px2pm8idxgs18x1k1dzpsccq21ja27gq2"; 299344 - revision = "1"; 299345 - editedCabalFile = "0v81vfgaky4bb3rh18mnb7ampwm43dba3vsngv9mb1f3z975f0ix"; 299701 + version = "0.0.0.7"; 299702 + sha256 = "0zxbqmdzrljjcj5dh2yi0hgjjd6a3wyg2r989vvcsdfxfcb0dl46"; 299346 299703 libraryHaskellDepends = [ 299347 299704 base containers syb template-haskell th-abstraction 299348 299705 ]; ··· 299475 299832 }) {}; 299476 299833 299477 299834 "th-lego" = callPackage 299478 - ({ mkDerivation, base, QuickCheck, quickcheck-instances, rerebase 299479 - , tasty, tasty-hunit, tasty-quickcheck, template-haskell 299480 - , template-haskell-compat-v0208, text 299835 + ({ mkDerivation, base, rerebase, tasty, tasty-hunit 299836 + , template-haskell, template-haskell-compat-v0208, text 299481 299837 }: 299482 299838 mkDerivation { 299483 299839 pname = "th-lego"; 299484 - version = "0.3.0.2"; 299485 - sha256 = "1w7z6g0sfn23yaqjpylnf1kpwyyf9ka17f0bqvlxcd3b739ajg8z"; 299840 + version = "0.3.0.3"; 299841 + sha256 = "0pvlccvbr61h1fn16bqq72vmkivxxfsfx53qyl5gzfja7r4jzflj"; 299486 299842 libraryHaskellDepends = [ 299487 299843 base template-haskell template-haskell-compat-v0208 text 299488 299844 ]; 299489 299845 testHaskellDepends = [ 299490 - QuickCheck quickcheck-instances rerebase tasty tasty-hunit 299491 - tasty-quickcheck template-haskell 299846 + rerebase tasty tasty-hunit template-haskell 299492 299847 ]; 299493 299848 description = "Template Haskell construction utilities"; 299494 299849 license = lib.licenses.mit; ··· 300823 301178 pname = "tidal"; 300824 301179 version = "1.9.4"; 300825 301180 sha256 = "126p05lqlq8q03gdhqq378dirs5imfkk9csaf797jz1j6lcwbnv1"; 300826 - revision = "2"; 300827 - editedCabalFile = "12v805xy9nqfyn9ryqxlslqiffb6havpixi23xkmk0annbxcf8k2"; 301181 + revision = "3"; 301182 + editedCabalFile = "0sxx6cnlhjmiccmfpjkfrisxxbghbacip0q372i66a32wwkg9i0h"; 300828 301183 enableSeparateDataOutput = true; 300829 301184 libraryHaskellDepends = [ 300830 301185 base bytestring clock colour containers deepseq exceptions hosc mtl ··· 300842 301197 ({ mkDerivation, base, system-cxx-std-lib }: 300843 301198 mkDerivation { 300844 301199 pname = "tidal-link"; 300845 - version = "1.0.1"; 300846 - sha256 = "0s3x73zx4rxjawcf2744z9dr05j4pabbxddrz9814h1d61q2cbb1"; 301200 + version = "1.0.2"; 301201 + sha256 = "1lvyfnj2mazzrh0clzxxixmvdhyy7dmfcqm9hnmikizinrh6fprp"; 300847 301202 isLibrary = true; 300848 301203 isExecutable = true; 300849 301204 libraryHaskellDepends = [ base system-cxx-std-lib ]; ··· 301607 301962 pname = "timeline"; 301608 301963 version = "0.1.0.0"; 301609 301964 sha256 = "0ya56j51vgg380yylpakfgr5srv20ybiyy7yhfyxz21sdgz7f168"; 301610 - revision = "4"; 301611 - editedCabalFile = "0ahcy6rl6zgfmp6k0rcrbbbrvd1wwaf59az8r4rhq3bz7naaispj"; 301965 + revision = "5"; 301966 + editedCabalFile = "07dfsj2p0qzq4r5zzljj70jhrd3y9i3wk8kb66bafbxkbjy0ggam"; 301612 301967 libraryHaskellDepends = [ 301613 301968 base containers hedgehog indexed-traversable semigroupoids 301614 301969 template-haskell text th-compat time ··· 302218 302573 ({ mkDerivation, aeson, aeson-pretty, base, bimap, binary 302219 302574 , bytestring, constraints-extras, containers, data-default 302220 302575 , data-ordlist, deepseq, dependent-map, dependent-sum 302221 - , dependent-sum-template, extra, filepath, hashable, hspec 302222 - , hspec-contrib, HUnit, ilist, lens, linear, listsafe, MonadRandom 302223 - , mtl, patch, pretty-simple, random-shuffle, ref-tf, reflex 302224 - , reflex-potatoes, reflex-test-host, relude, semialign, text 302225 - , text-icu, these, vector, vty 302576 + , dependent-sum-template, extra, filepath, hspec, hspec-contrib 302577 + , hspec-discover, HUnit, ilist, lens, linear, mtl, pretty-simple 302578 + , ref-tf, reflex, reflex-potatoes, reflex-test-host, relude 302579 + , semialign, text, text-icu, these, vector, vty 302226 302580 }: 302227 302581 mkDerivation { 302228 302582 pname = "tinytools"; 302229 - version = "0.1.0.5"; 302230 - sha256 = "15f0i636pc09q9wi5dh9wccrfm6widaa3hd80np81qxr1rkx3fxd"; 302583 + version = "0.1.0.6"; 302584 + sha256 = "0n69x1fk82pmhfn67r7i8xipxp4jqj3m1wy7n5b7garq3gwj5k4c"; 302231 302585 libraryHaskellDepends = [ 302232 302586 aeson aeson-pretty base bimap binary bytestring constraints-extras 302233 302587 containers data-default data-ordlist deepseq dependent-map 302234 - dependent-sum dependent-sum-template extra filepath hashable ilist 302235 - lens linear listsafe MonadRandom mtl patch pretty-simple 302236 - random-shuffle ref-tf reflex reflex-potatoes reflex-test-host 302237 - relude semialign text text-icu these vector vty 302588 + dependent-sum dependent-sum-template extra filepath ilist lens 302589 + linear mtl pretty-simple ref-tf reflex reflex-potatoes 302590 + reflex-test-host relude semialign text text-icu these vector vty 302238 302591 ]; 302239 302592 testHaskellDepends = [ 302240 302593 aeson base bimap binary bytestring constraints-extras containers 302241 302594 data-default data-ordlist deepseq dependent-map dependent-sum 302242 - dependent-sum-template extra hashable hspec hspec-contrib HUnit 302243 - ilist lens linear listsafe MonadRandom mtl patch pretty-simple 302244 - random-shuffle ref-tf reflex reflex-potatoes reflex-test-host 302245 - relude semialign text text-icu these vector vty 302595 + dependent-sum-template extra hspec hspec-contrib HUnit ilist lens 302596 + linear mtl pretty-simple ref-tf reflex reflex-potatoes 302597 + reflex-test-host relude semialign text text-icu these vector vty 302246 302598 ]; 302599 + testToolDepends = [ hspec-discover ]; 302247 302600 description = "tinytools is a monospace unicode diagram editor"; 302248 302601 license = lib.licenses.bsd3; 302249 302602 hydraPlatforms = lib.platforms.none; ··· 303532 303885 }: 303533 303886 mkDerivation { 303534 303887 pname = "toml-parser"; 303535 - version = "1.3.1.0"; 303536 - sha256 = "1rqa67cg0rafh4dzbqg46znlk1f9rb59pz078q2w0b67d64lg8fa"; 303888 + version = "1.3.1.1"; 303889 + sha256 = "0gh86i6z98zdpy7i4vh66jnivd440hg552a103zkfyg7qsfprmwh"; 303537 303890 libraryHaskellDepends = [ 303538 303891 array base containers prettyprinter text time transformers 303539 303892 ]; ··· 309581 309934 }: 309582 309935 mkDerivation { 309583 309936 pname = "typst"; 309584 - version = "0.3.2.1"; 309585 - sha256 = "0if1ig1ha65jp1l1v6bn5ljaa3n688hyfkq65dypj5s3nwfr0skm"; 309937 + version = "0.5"; 309938 + sha256 = "01hmb835hig6igyhpyrxxmprd9azfqbkjcnw5pfcjy099v1ik5c4"; 309586 309939 isLibrary = true; 309587 309940 isExecutable = true; 309588 309941 libraryHaskellDepends = [ ··· 309666 310019 benchmarkHaskellDepends = [ 309667 310020 base criterion lens thyme time timezone-olson timezone-series 309668 310021 ]; 309669 - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; 309670 310022 description = "Efficient time zone handling"; 309671 310023 license = lib.licenses.asl20; 309672 310024 maintainers = [ lib.maintainers.maralorn ]; ··· 312281 312633 }: 312282 312634 mkDerivation { 312283 312635 pname = "unix-compat"; 312284 - version = "0.7"; 312285 - sha256 = "0gif7y2jvfd1pilli7kbljnmipzp0596mjh1by8qydppw1wwlx9b"; 312636 + version = "0.7.1"; 312637 + sha256 = "0gz30f4g3gyjz60jbcg072ms67pwdn4by6wvdkg63hjshgl0cj60"; 312286 312638 libraryHaskellDepends = [ base unix ]; 312287 312639 testHaskellDepends = [ 312288 312640 base directory extra hspec HUnit monad-parallel temporary ··· 314440 314792 pname = "uu-tc-error"; 314441 314793 version = "0.2.0.0"; 314442 314794 sha256 = "045xs8jlcqnfbvlbm95a5y9iqqam9gy2nfx4q9r0jdlq9i6fv2rf"; 314795 + revision = "1"; 314796 + editedCabalFile = "1dpa12gzz664yji95z9zc1y7prvz67a5fdcamd2vnjj2zww4hpjq"; 314443 314797 libraryHaskellDepends = [ base uu-tc-error-error ]; 314444 314798 description = "Haskell 98 parser combintors for INFOB3TC at Utrecht University"; 314445 314799 license = lib.licenses.bsd3; 314800 + hydraPlatforms = lib.platforms.none; 314801 + broken = true; 314446 314802 }) {}; 314447 314803 314448 314804 "uu-tc-error-error" = callPackage ··· 314450 314806 }: 314451 314807 mkDerivation { 314452 314808 pname = "uu-tc-error-error"; 314453 - version = "0.1.0.0"; 314454 - sha256 = "1xhngmknpvixhdfyljmm3qfmiyn603qwqgqkn05aably7v15iq0x"; 314809 + version = "0.2.0.0"; 314810 + sha256 = "1hwpkl54s7qrz15as266izcgicp92afz0vnwbd67ichj7vvwv4q0"; 314455 314811 libraryHaskellDepends = [ 314456 314812 base bytestring containers deepseq mtl text 314457 314813 ]; ··· 316062 316418 }) {}; 316063 316419 316064 316420 "vector-builder" = callPackage 316065 - ({ mkDerivation, attoparsec, base, QuickCheck, quickcheck-instances 316066 - , rerebase, tasty, tasty-hunit, tasty-quickcheck, vector 316421 + ({ mkDerivation, attoparsec, base, quickcheck-instances, rerebase 316422 + , tasty, tasty-hunit, tasty-quickcheck, vector 316067 316423 }: 316068 316424 mkDerivation { 316069 316425 pname = "vector-builder"; 316070 - version = "0.3.8.4"; 316071 - sha256 = "0gc2n5j1ca07hd50shy7l5xybs1y720zrarzs5dj74dsdcpvmjxw"; 316426 + version = "0.3.8.5"; 316427 + sha256 = "0c0crnqkqzx06l4xlzb4s0fdmxgjg2fjq1mllxn0vyh84pfgkfm0"; 316072 316428 libraryHaskellDepends = [ base vector ]; 316073 316429 testHaskellDepends = [ 316074 - attoparsec QuickCheck quickcheck-instances rerebase tasty 316075 - tasty-hunit tasty-quickcheck 316430 + attoparsec quickcheck-instances rerebase tasty tasty-hunit 316431 + tasty-quickcheck 316076 316432 ]; 316077 316433 description = "Vector builder"; 316078 316434 license = lib.licenses.mit; ··· 316270 316626 }: 316271 316627 mkDerivation { 316272 316628 pname = "vector-hashtables"; 316273 - version = "0.1.1.3"; 316274 - sha256 = "0hi37svcw1z36xmjfx0s8lh2aj7ky9az0g6v4k1wn7c785bccbv6"; 316629 + version = "0.1.1.4"; 316630 + sha256 = "0nvi9j18v8xfb3p2q65bi9f3rzrw2bc2nz2q096flxjf72ipapac"; 316275 316631 libraryHaskellDepends = [ base hashable primitive vector ]; 316276 316632 testHaskellDepends = [ 316277 316633 base containers hashable hspec primitive QuickCheck ··· 318421 318777 }: 318422 318778 mkDerivation { 318423 318779 pname = "wai"; 318424 - version = "3.2.3"; 318425 - sha256 = "1y19h9v0cq1fl17ywcyyvd6419fhgyw2s0yk0ki8z60021adcx2m"; 318780 + version = "3.2.4"; 318781 + sha256 = "153dpwrspanvcz6dg29ixfbx343n7k071lcjf1v7qvc8gn28y256"; 318426 318782 libraryHaskellDepends = [ 318427 318783 base bytestring http-types network text vault 318428 318784 ]; ··· 318832 319188 "wai-handler-hal" = callPackage 318833 319189 ({ mkDerivation, aeson, base, base64-bytestring, bytestring 318834 319190 , case-insensitive, hal, http-types, network, pretty-simple, tasty 318835 - , tasty-discover, tasty-golden, text, unordered-containers, vault 318836 - , wai 319191 + , tasty-discover, tasty-golden, tasty-hunit, text 319192 + , unordered-containers, vault, wai 318837 319193 }: 318838 319194 mkDerivation { 318839 319195 pname = "wai-handler-hal"; 318840 - version = "0.2.0.0"; 318841 - sha256 = "1skmwcs048h60nxq2wz2amaj148g1a6zk4vbnl17h6xi28s603lx"; 318842 - revision = "1"; 318843 - editedCabalFile = "0kdn4iv5fb0l4w4j2v4g9pyr2n56v4531k4xahysd2l034dyf6l7"; 319196 + version = "0.3.0.0"; 319197 + sha256 = "1chpg8vlyly7fmcg862j043mgnv8g5azs89nds9h0nvxalwvgnpn"; 318844 319198 libraryHaskellDepends = [ 318845 319199 base base64-bytestring bytestring case-insensitive hal http-types 318846 319200 network text unordered-containers vault wai 318847 319201 ]; 318848 319202 testHaskellDepends = [ 318849 319203 aeson base base64-bytestring bytestring case-insensitive hal 318850 - http-types network pretty-simple tasty tasty-golden text 318851 - unordered-containers vault wai 319204 + http-types network pretty-simple tasty tasty-golden tasty-hunit 319205 + text unordered-containers vault wai 318852 319206 ]; 318853 319207 testToolDepends = [ tasty-discover ]; 318854 319208 description = "Wrap WAI applications to run on AWS Lambda"; ··· 319899 320253 description = "WAI request predicates"; 319900 320254 license = "unknown"; 319901 320255 hydraPlatforms = lib.platforms.none; 320256 + broken = true; 319902 320257 }) {}; 319903 320258 319904 320259 "wai-problem-details" = callPackage ··· 320768 321123 pname = "warp-quic"; 320769 321124 version = "0.0.0"; 320770 321125 sha256 = "01w9rssp8a5yhc5w2y3mn3ihbnpvannl4q2rmjvphnqr5lj556sp"; 321126 + revision = "1"; 321127 + editedCabalFile = "113cbaw6gm61cjhhky5r3n4jmj75lmyj4f1rrpij81avkspc7syx"; 320771 321128 libraryHaskellDepends = [ 320772 321129 base bytestring http3 quic tls wai warp 320773 321130 ]; ··· 320982 321339 }: 320983 321340 mkDerivation { 320984 321341 pname = "waterfall-cad"; 320985 - version = "0.0.0.1"; 320986 - sha256 = "03a7az74sww1s6j1ppghhzszjj34z1v3sv96vh7rngw08bwslsyf"; 321342 + version = "0.1.1.1"; 321343 + sha256 = "0cv91x4z39b2rp5fwg7wqjbwkcmma66fznsqbbnr253036yy5p5b"; 320987 321344 libraryHaskellDepends = [ 320988 321345 base lattices lens linear opencascade-hs resourcet 320989 321346 ]; ··· 320998 321355 }: 320999 321356 mkDerivation { 321000 321357 pname = "waterfall-cad-examples"; 321001 - version = "0.0.0.1"; 321002 - sha256 = "0ry2gdhppkgcx724lnky3j4am0x5kcxi45a1abp4bpgvqy356yps"; 321358 + version = "0.1.1.1"; 321359 + sha256 = "05jigwrcsxh6mh7b2qvb4h6nkhcb3lkhf9j7djzr1k428k290iky"; 321003 321360 isLibrary = true; 321004 321361 isExecutable = true; 321005 321362 libraryHaskellDepends = [ ··· 322302 322659 ]; 322303 322660 description = "Composable, type-safe library to build HTTP API servers"; 322304 322661 license = lib.licenses.mpl20; 322305 - hydraPlatforms = lib.platforms.none; 322306 322662 }) {}; 322307 322663 322308 322664 "webidl" = callPackage ··· 329119 329475 }: 329120 329476 mkDerivation { 329121 329477 pname = "yaml-unscrambler"; 329122 - version = "0.1.0.17"; 329123 - sha256 = "0bk0h65fwlg96q5vzmf07gr68wrsd06xrdxi9s7irvzyzlk0zh7q"; 329478 + version = "0.1.0.18"; 329479 + sha256 = "0azmvi13znbyr3m0qzj9ijrqvl6pzkbskk9f7kr8gmhw31aid59v"; 329124 329480 libraryHaskellDepends = [ 329125 329481 acc attoparsec attoparsec-data attoparsec-time base 329126 329482 base64-bytestring bytestring conduit containers foldl hashable ··· 329286 329642 }: 329287 329643 mkDerivation { 329288 329644 pname = "yampa-test"; 329289 - version = "0.14.5"; 329290 - sha256 = "154k37qydkch91khxd52mfa6jv2k6gcxyiypcsnx3hcp88mfr9pm"; 329645 + version = "0.14.6"; 329646 + sha256 = "0gcb5wrgsi025dnmjaqzmg589nghfb6fwlp2yq71g9c2csbl1fai"; 329291 329647 libraryHaskellDepends = [ 329292 329648 base normaldistribution QuickCheck Yampa 329293 329649 ]; ··· 333324 333680 }: 333325 333681 mkDerivation { 333326 333682 pname = "zeolite-lang"; 333327 - version = "0.23.0.0"; 333328 - sha256 = "1paa00ra9ib7whga6rgqnk1ib7jpm7rmrcs5f4sy3ykg1m9n57jc"; 333683 + version = "0.24.0.1"; 333684 + sha256 = "09xib3n7mmxcv0pknrp2xkbrr7lccsmbadx613mr7arcgf1n2a77"; 333329 333685 isLibrary = false; 333330 333686 isExecutable = true; 333331 333687 enableSeparateDataOutput = true;
+2 -2
pkgs/development/libraries/gvfs/default.nix
··· 46 46 47 47 stdenv.mkDerivation rec { 48 48 pname = "gvfs"; 49 - version = "1.52.1"; 49 + version = "1.52.2"; 50 50 51 51 src = fetchurl { 52 52 url = "mirror://gnome/sources/gvfs/${lib.versions.majorMinor version}/gvfs-${version}.tar.xz"; 53 - hash = "sha256-zb1EQPbQh5Km51ISRMFzhuIL1TfTdRFwmfyPto/pF0E="; 53 + hash = "sha256-pkOs6qBTyqwNjv+aAV9jbkvRuwnP4nhk40fbZ0YOe5E="; 54 54 }; 55 55 56 56 patches = [
+6 -6
pkgs/development/libraries/libfilezilla/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "libfilezilla"; 15 - version = "0.41.0"; 15 + version = "0.45.0"; 16 16 17 17 src = fetchurl { 18 - url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2"; 19 - hash = "sha256-rCodDYKOpgB4fOoefuUNIfDTvZFSzs5hh7ivyQBiKqA="; 18 + url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.xz"; 19 + hash = "sha256-PBRUvBWG0Xd29ix1BdQ6BtOr0uLjVkLMpHf6IvJ9mC8="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ autoreconfHook pkg-config ]; ··· 24 24 buildInputs = [ gettext gnutls nettle libxcrypt ] 25 25 ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ]; 26 26 27 - preBuild = lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11") '' 28 - export MACOSX_DEPLOYMENT_TARGET=10.13 # for futimens() 27 + preBuild = lib.optionalString (stdenv.isDarwin) '' 28 + export MACOSX_DEPLOYMENT_TARGET=11.0 29 29 ''; 30 30 31 31 enableParallelBuilding = true; ··· 35 35 description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"; 36 36 license = licenses.gpl2Plus; 37 37 maintainers = with maintainers; [ pSub ]; 38 - platforms = platforms.unix; 38 + platforms = lib.platforms.unix; 39 39 }; 40 40 }
+2 -2
pkgs/development/libraries/science/astronomy/libxisf/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "libxisf"; 14 - version = "0.2.10"; 14 + version = "0.2.11"; 15 15 16 16 src = fetchFromGitea { 17 17 domain = "gitea.nouspiro.space"; 18 18 owner = "nou"; 19 19 repo = "libXISF"; 20 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-ME0x+1VyfuhJCldwJfjQCtfe9XQk1ptmhv4ghOyNuGA="; 21 + hash = "sha256-wXIbU9/xUyECluL6k1oKS3NBpoC/qjQdW9e485qmlgo="; 22 22 }; 23 23 24 24 patches = [
+2 -2
pkgs/development/python-modules/dbt-core/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "dbt-core"; 34 - version = "1.7.3"; 34 + version = "1.7.4"; 35 35 format = "setuptools"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "dbt-labs"; 39 39 repo = pname; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-sz5d5tV6OP8TJMq73gYwCas+jizGzGEnywmOddgpSJQ="; 41 + hash = "sha256-+2tmLclBZrY9SDCKvQ4QNbI4665BtsrEI1sBSY3GVGM="; 42 42 }; 43 43 44 44 sourceRoot = "${src.name}/core";
+3 -2
pkgs/development/python-modules/dbt-semantic-interfaces/default.nix
··· 13 13 , pyyaml 14 14 , typing-extensions 15 15 , hypothesis 16 + , dbt-postgres 16 17 }: 17 18 18 19 buildPythonPackage rec { 19 20 pname = "dbt-semantic-interfaces"; 20 - version = "0.4.1"; 21 + version = "0.4.2"; 21 22 pyproject = true; 22 23 23 24 src = fetchFromGitHub { 24 25 owner = "dbt-labs"; 25 26 repo = pname; 26 27 rev = "refs/tags/v${version}"; 27 - hash = "sha256-nl+V8Rtc5FWHIPUkcQmcaex6zwIdzdmEaim59pG497I="; 28 + hash = "sha256-Q3aKUyXB+HzPCpwbJ66zDv92n04Gb0w7ivWfga3UX3s="; 28 29 }; 29 30 30 31 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/django-modeltranslation/default.nix
··· 10 10 let 11 11 # 0.18.12 was yanked from PyPI, it refers to this issue: 12 12 # https://github.com/deschler/django-modeltranslation/issues/701 13 - version = "0.18.11"; 13 + version = "0.18.12"; 14 14 in 15 15 buildPythonPackage { 16 16 pname = "django-modeltranslation"; ··· 19 19 src = fetchFromGitHub { 20 20 owner = "deschler"; 21 21 repo = "django-modeltranslation"; 22 - rev = "v${version}"; 23 - hash = "sha256-WEtTy449z7Fo9+UmiM+QAuUJ5eQ1RFe1HrIqFrY3L9k="; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-6rAAu3Fd4D93rX8kvkcqhykzBu/lDByQ6zpjWq7J8mg="; 24 24 }; 25 25 26 26 # Remove all references to pytest-cov
+2 -2
pkgs/development/python-modules/ds-store/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , mac_alias 4 + , mac-alias 5 5 , pytestCheckHook 6 6 , pythonOlder 7 7 , setuptools ··· 26 26 ]; 27 27 28 28 propagatedBuildInputs = [ 29 - mac_alias 29 + mac-alias 30 30 ]; 31 31 32 32 nativeCheckInputs = [
+1 -2
pkgs/development/python-modules/hjson/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , python 5 - , pythonImportsCheckHook 6 5 , makeWrapper 7 6 }: 8 7 ··· 19 18 sha256 = "1jc7j790rcqnhbrfj4lhnz3f6768dc55aij840wmx16jylfqpc2n"; 20 19 }; 21 20 22 - nativeBuildInputs = [ makeWrapper pythonImportsCheckHook ]; 21 + nativeBuildInputs = [ makeWrapper ]; 23 22 24 23 pythonImportsCheck = [ "hjson" ]; 25 24
pkgs/development/python-modules/mac_alias/default.nix pkgs/development/python-modules/mac-alias/default.nix
+3 -2
pkgs/development/python-modules/mir_eval/default.nix pkgs/development/python-modules/mir-eval/default.nix
··· 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 - pname = "mir_eval"; 12 + pname = "mir-eval"; 13 13 version = "0.7"; 14 14 format = "setuptools"; 15 15 16 16 src = fetchPypi { 17 - inherit pname version; 17 + pname = "mir_eval"; 18 + inherit version; 18 19 hash = "sha256-4f66pXZsZadUXCoXCyQUkPR6mJhzcLHgZ0JCTF3r5l4="; 19 20 }; 20 21
+3 -2
pkgs/development/python-modules/sysv_ipc/default.nix pkgs/development/python-modules/sysv-ipc/default.nix
··· 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 - pname = "sysv_ipc"; 7 + pname = "sysv-ipc"; 8 8 version = "1.1.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 - inherit pname version; 12 + pname = "sysv_ipc"; 13 + inherit version; 13 14 sha256 = "0f063cbd36ec232032e425769ebc871f195a7d183b9af32f9901589ea7129ac3"; 14 15 }; 15 16
+2 -2
pkgs/development/tools/cambalache/default.nix
··· 22 22 23 23 python3.pkgs.buildPythonApplication rec { 24 24 pname = "cambalache"; 25 - version = "0.12.1"; 25 + version = "0.16.0"; 26 26 27 27 format = "other"; 28 28 ··· 32 32 owner = "jpu"; 33 33 repo = pname; 34 34 rev = version; 35 - sha256 = "sha256-kGCpccWIhaeWrzLlrDI7Vzd0KuAIKxvLrDuSqWtpSLU="; 35 + sha256 = "sha256-Ha94Ca5a7EUBYuSJvMrLc5895Q2/01/tbKpwlHLmTDc="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
-4
pkgs/development/tools/haskell/mueval/default.nix
··· 21 21 mkdir -p $out/bin 22 22 23 23 makeWrapper $mueval/bin/mueval $out/bin/mueval \ 24 - --prefix PATH ":" "$out/bin" 25 - 26 - makeWrapper $mueval/bin/mueval-core $out/bin/mueval \ 27 24 --set "NIX_GHC_LIBDIR" "${libDir}" 28 - 29 25 ''; 30 26 31 27 passthru = { inherit defaultPkgs; };
+1 -1
pkgs/development/tools/infisical/default.nix
··· 15 15 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 16 16 17 17 # the version of infisical 18 - version = "0.16.3"; 18 + version = "0.16.7"; 19 19 20 20 # the platform-specific, statically linked binary 21 21 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-AxTTTX4rp881dJuNGIF9s09e5yLohTEeM0LHnsQ+/eQ=" 3 - , "x86_64-darwin": "sha256-DKZUB84PbueRfwVAUH9z8N4JxNlK+db+fVH4jPIbDtc=" 4 - , "aarch64-linux": "sha256-q62a5Ggw0Rikhzn0MY24sSurEPW1/nNehfqVzwBAq/k=" 5 - , "aarch64-darwin": "sha256-9961CGekF8N0bVgtNQIxOoWKB2HgUJ3kBek1rSBHJNk=" 2 + , "x86_64-linux": "sha256-wN+NoIDl8B/ANxES2XVkQBpTK3zUL+Xh+4BxKlcSkr0=" 3 + , "x86_64-darwin": "sha256-ZkIGzcQd+MMJjiHPubLnHcc3H7Qpahs5LyJ+ytrYgfo=" 4 + , "aarch64-linux": "sha256-P/AMelaej8D3BlUQBjOxCn8DADkVsU7lBY5dLJ0Wz6I=" 5 + , "aarch64-darwin": "sha256-jQkLwY6Sq9cN/ujz4wlzjTBjaIYzZKMh/J/5CMWuRf8=" 6 6 }
+3 -3
pkgs/development/tools/kubedock/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubedock"; 5 - version = "0.15.0"; 5 + version = "0.15.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "joyrex2001"; 9 9 repo = "kubedock"; 10 10 rev = version; 11 - hash = "sha256-UCoQm/lg8QRwsK2riJyHmCLg+Ash8Pg+6Va1RVemdt0="; 11 + hash = "sha256-/uC/blvR6+F5Uyj1Fc5I5eSKucc0w76U0cwWKULfdyU="; 12 12 }; 13 13 14 - vendorHash = "sha256-mkzj+8c1MJgPHohSjSj7OW+xoYvI9Qoj3cXJ1iRDeWc="; 14 + vendorHash = "sha256-rkn6JzPB1UNpaCon6LyYNUAsV88t3xbppDrtBwjBEHk="; 15 15 16 16 # config.Build not defined as it would break r-ryantm 17 17 ldflags = [
+9 -4
pkgs/development/tools/pandoc/default.nix
··· 1 - { stdenv, lib, haskellPackages, haskell, removeReferencesTo }: 1 + { stdenv, lib, haskellPackages, haskell, removeReferencesTo, installShellFiles }: 2 2 3 3 let 4 4 # Since pandoc 3.0 the pandoc binary resides in the pandoc-cli package. ··· 17 17 18 18 configureFlags = drv.configureFlags or [] ++ ["-fembed_data_files"]; 19 19 buildDepends = drv.buildDepends or [] ++ [haskellPackages.file-embed]; 20 - buildTools = (drv.buildTools or []) ++ [ removeReferencesTo ]; 20 + buildTools = (drv.buildTools or []) ++ [ 21 + removeReferencesTo 22 + installShellFiles 23 + ]; 21 24 22 25 # Normally, the static linked executable shouldn't refer to any library or the compiler. 23 26 # This is not always the case when the dependency has Paths_* module generated by Cabal, ··· 34 37 -t ${haskellPackages.warp} \ 35 38 $out/bin/pandoc 36 39 remove-references-to \ 37 - -t ${haskellPackages.pandoc_3_1_9} \ 40 + -t ${haskellPackages.pandoc_3_1_11} \ 38 41 $out/bin/pandoc 39 42 '' + lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) '' 40 43 mkdir -p $out/share/bash-completion/completions 41 44 $out/bin/pandoc --bash-completion > $out/share/bash-completion/completions/pandoc 45 + '' + '' 46 + installManPage man/* 42 47 ''; 43 48 }) static).overrideAttrs (drv: { 44 49 # These libraries are still referenced, because they generate ··· 48 53 # lead to a transitive runtime dependency on the whole GHC distribution. 49 54 # This should ideally be fixed in haskellPackages (or even Cabal), 50 55 # but a minimal pandoc is important enough to patch it manually. 51 - disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_9 ]; 56 + disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_11 ]; 52 57 })
+4 -4
pkgs/development/tools/protolint/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub }: 2 2 buildGoModule rec { 3 3 pname = "protolint"; 4 - version = "0.37.1"; 4 + version = "0.47.4"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "yoheimuta"; 8 8 repo = pname; 9 - rev = "6aa30515838cc0adf7c76a9461f52bdc713f2e9f"; 10 - sha256 = "sha256-oKGA5FZpT3E5G7oREGAojdu4Xn8JPd7IYwfueK9QA34="; 9 + rev = "v${version}"; 10 + hash = "sha256-OfAkqShUAC84buWhQffvIF5i6maPSWKa9nr5hhUwV6Y="; 11 11 }; 12 12 13 - vendorHash = "sha256-iLQwx3B5n21ZXefWiGBBL9roa9LIFByzB8KXLywhvKs="; 13 + vendorHash = "sha256-62SxRvoN4ejmAczs823jftXUmeI4ozfb6plHYT1JwZ0="; 14 14 15 15 # Something about the way we run tests causes issues. It doesn't happen 16 16 # when using "go test" directly:
+3 -3
pkgs/development/tools/rust/cargo-watch/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-watch"; 11 - version = "8.4.1"; 11 + version = "8.5.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "watchexec"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-7nln9kuEVt8/NQ3BDdezSNfTyYo6qL2P2m5ZhQ7dAI8="; 17 + hash = "sha256-MzwifQsOSJt9wq8bhVAY6HqXP4Zs4+a2GcG79PdAiMY="; 18 18 }; 19 19 20 - cargoHash = "sha256-0D+aM/zap5UDQ+k9c/p+ZfN1OUjDzFRArvcmqEOcBbM="; 20 + cargoHash = "sha256-wyyIZ7i1icvD53hnUM4H/kvxj6K/pVzAAvKKp5LzwTE="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ Foundation Cocoa ]; 23 23
+2 -2
pkgs/development/tools/templ/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "templ"; 8 - version = "0.2.501"; 8 + version = "0.2.513"; 9 9 10 10 subPackages = [ "cmd/templ" ]; 11 11 ··· 21 21 owner = "a-h"; 22 22 repo = "templ"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-MkSGQZo2Zv6aCVANh2ETXoCXETkp+xk8jWAW4Wj+y2s="; 24 + hash = "sha256-LWvwtAX1KBK33FIyY6alkG0RBXL6Ce4fR0cklQfwaRk="; 25 25 }; 26 26 27 27 vendorHash = "sha256-buJArvaaKGRg3yS7BdcVY0ydyi4zah57ABeo+CHkZQU=";
+2 -2
pkgs/games/doom-ports/doomretro/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "doomretro"; 14 - version = "5.1.3"; 14 + version = "5.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "bradharding"; 18 18 repo = "doomretro"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-hwjz9nzhasDIeFlmPIwBNhJjrNfZ8ksttx5A7WSomBQ="; 20 + hash = "sha256-1E3tAt4zOyaof2iBT3S9DfNIgpJj9U0rwGIZpM7cTbA="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -21
pkgs/os-specific/linux/libnvme/default.nix
··· 11 11 , stdenv 12 12 , swig 13 13 , systemd 14 - , fetchpatch 15 14 # ImportError: cannot import name 'mlog' from 'mesonbuild' 16 15 , withDocs ? stdenv.hostPlatform.canExecute stdenv.buildPlatform 17 16 }: 18 17 19 18 stdenv.mkDerivation (finalAttrs: { 20 19 pname = "libnvme"; 21 - version = "1.6"; 20 + version = "1.7.1"; 22 21 23 22 outputs = [ "out" ] ++ lib.optionals withDocs [ "man" ]; 24 23 ··· 26 25 owner = "linux-nvme"; 27 26 repo = "libnvme"; 28 27 rev = "v${finalAttrs.version}"; 29 - hash = "sha256-7bvjsmt16/6RycSDKIECtJ4ES7NTaspU6IMpUw0sViA="; 28 + hash = "sha256-hCR/K8bPXj8HthayrnwwGfI+wxpUwcWkcx3S/8h+3m8="; 30 29 }; 31 - 32 - patches = [ 33 - # included in next release 34 - (fetchpatch { 35 - url = "https://github.com/linux-nvme/libnvme/commit/ff742e792725c316ba6de0800188bf36751bd1d1.patch"; 36 - hash = "sha256-IUjPUBmGQC4oAKFFlBrjonqD2YdyNPC9siK4t/t2slE="; 37 - }) 38 - # included in next release 39 - (fetchpatch { 40 - url = "https://github.com/linux-nvme/libnvme/commit/a2b8e52e46cfd888ac5a48d8ce632bd70a5caa93.patch"; 41 - hash = "sha256-AVSWraFriErfz7dA2CjU8+ehJtAmuLxBZyBALygmrf0="; 42 - }) 43 - # included in next release 44 - (fetchpatch { 45 - url = "https://github.com/linux-nvme/libnvme/commit/68c6ffb11d40a427fc1fd70ac2ac97fd01952913.patch"; 46 - hash = "sha256-dvc1sjgCFU31/LornvJ/aRVYtPOsewkas0jS+/AwFuU="; 47 - }) 48 - ]; 49 30 50 31 postPatch = '' 51 32 patchShebangs scripts
+2 -4
pkgs/os-specific/linux/nvme-cli/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "nvme-cli"; 13 - version = "2.6"; 13 + version = "2.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "linux-nvme"; 17 17 repo = "nvme-cli"; 18 18 rev = "v${version}"; 19 - hash = "sha256-MFyBkwTNOBQdHWj7In1OquRIAsjsd4/DHYfUyFA9YDQ="; 19 + hash = "sha256-qijzXucNE+M8fOEtNaoQYX41HeJOMtg/cJFCUJyS6Ew="; 20 20 }; 21 21 22 22 mesonFlags = [ ··· 33 33 libnvme 34 34 json_c 35 35 zlib 36 - ] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform libhugetlbfs) [ 37 - libhugetlbfs 38 36 ]; 39 37 40 38 meta = with lib; {
+3 -3
pkgs/servers/monitoring/prometheus/mongodb-exporter.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mongodb_exporter"; 5 - version = "0.39.0"; 5 + version = "0.40.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "percona"; 9 9 repo = "mongodb_exporter"; 10 10 rev = "v${version}"; 11 - hash = "sha256-QII93sd/Lh+m6S5HtDsOt2BUnqg+X8I24KoU+MAWWQU="; 11 + hash = "sha256-cWXfMi48aF06Prua3n4geG2yP1JzLlHq/xh1HmiJkT4="; 12 12 }; 13 13 14 - vendorHash = "sha256-khNkh2LufCE3KdPYRCALz66X+Q1U+sTIILh4uDzhKiI="; 14 + vendorHash = "sha256-69YBrDAEruWXaAqLfRVtqmZ0pop3r5cusePSV2Q1MXw="; 15 15 16 16 ldflags = [ 17 17 "-s"
+2 -2
pkgs/servers/pleroma/default.nix
··· 7 7 8 8 beamPackages.mixRelease rec { 9 9 pname = "pleroma"; 10 - version = "2.6.0"; 10 + version = "2.6.1"; 11 11 12 12 src = fetchFromGitLab { 13 13 domain = "git.pleroma.social"; 14 14 owner = "pleroma"; 15 15 repo = "pleroma"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-VFyFQ3c4EEbQAj3bUgjWbmpCyugcpfz0phgBz0ZUB/Q="; 17 + sha256 = "sha256-VIGlJ5+99l+VSUl7c9jiQf94X/JV0+HFgI8xQ4ZLQ9s="; 18 18 }; 19 19 20 20 patches = [
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "syft"; 5 - version = "0.99.0"; 5 + version = "0.100.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anchore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-1Fw/1OVSKW+sIfVD4rodtTwu7JUhIsLEvIpYP49SqKQ="; 11 + hash = "sha256-NF+Cjf3EZ9nNi10ckEuL6CnUJZssSuv3cq95QIoj+e8="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 22 22 }; 23 23 # hash mismatch with darwin 24 24 proxyVendor = true; 25 - vendorHash = "sha256-y6tw/umiEgwdoafa/CTg78naMWvr+DBOtXT/rMs1agQ="; 25 + vendorHash = "sha256-C6I9NGIt++FesC86NgZc2jrPHQvS5Xmgdc/tlvPJzMo="; 26 26 27 27 nativeBuildInputs = [ installShellFiles ]; 28 28
+2 -2
pkgs/tools/graphics/gnuplot/default.nix
··· 21 21 in 22 22 (if withQt then mkDerivation else stdenv.mkDerivation) rec { 23 23 pname = "gnuplot"; 24 - version = "5.4.10"; 24 + version = "6.0.0"; 25 25 26 26 src = fetchurl { 27 27 url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz"; 28 - sha256 = "sha256-l12MHMLEHHztxOMjr/A12Xf+ual/ApbdKopm0Zelsnw="; 28 + sha256 = "sha256-Y1oo8Jk/arDRF54HKtObgTnQf1Ejf4Qdk8bC/0sXWOw="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;
+3 -3
pkgs/tools/networking/godns/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "godns"; 9 - version = "3.0.4"; 9 + version = "3.0.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "TimothyYe"; 13 13 repo = "godns"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-1eJAGBKyTXcFFB7HKkljYQkkidQ3VicHy5MMwHY6iHU="; 15 + hash = "sha256-pp4dWc9jqBOsriCL0giBJ9S8a6hXRXfLXMBZMX0hCo4="; 16 16 }; 17 17 18 - vendorHash = "sha256-iAU62/0MjzxwuMvIobhIZEqDJUpRqwEabnazH7jBRTE="; 18 + vendorHash = "sha256-PVp09gWk35T0gQoYOPzaVFtrqua0a8cNjPOgfYyu7zg="; 19 19 20 20 # Some tests require internet access, broken in sandbox 21 21 doCheck = false;
+5 -1
pkgs/tools/package-management/conda/default.nix
··· 77 77 export QTCOMPOSE=${xorg.libX11}/share/X11/locale 78 78 export LIBARCHIVE=${libarchive.lib}/lib/libarchive.so 79 79 # Allows `conda activate` to work properly 80 - source ${installationPath}/etc/profile.d/conda.sh 80 + condaSh=${installationPath}/etc/profile.d/conda.sh 81 + if [ ! -f $condaSh ]; then 82 + conda-install 83 + fi 84 + source $condaSh 81 85 ''; 82 86 83 87 runScript = "bash -l";
+2 -2
pkgs/tools/package-management/dnf5/default.nix
··· 30 30 31 31 stdenv.mkDerivation (finalAttrs: { 32 32 pname = "dnf5"; 33 - version = "5.1.9"; 33 + version = "5.1.10"; 34 34 35 35 outputs = [ "out" "man" ]; 36 36 ··· 38 38 owner = "rpm-software-management"; 39 39 repo = "dnf5"; 40 40 rev = finalAttrs.version; 41 - hash = "sha256-H8zbxNsGkuKIDPwGWfKJEy5gTo2Mm13VKwce+h9NEro="; 41 + hash = "sha256-u+UiiCl67VtIedW4kn3fycafkgBVsFFkWQcN3NXQKl4="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+3 -3
pkgs/tools/package-management/home-manager/default.nix
··· 16 16 17 17 stdenvNoCC.mkDerivation (finalAttrs: { 18 18 pname = "home-manager"; 19 - version = "unstable-2023-12-31"; 19 + version = "unstable-2024-01-05"; 20 20 21 21 src = fetchFromGitHub { 22 22 name = "home-manager-source"; 23 23 owner = "nix-community"; 24 24 repo = "home-manager"; 25 - rev = "2e8634c252890cb38c60ab996af04926537cbc27"; 26 - hash = "sha256-oYMwbObpWheGeeNWY1LjO/+omrbAWDNdyzNDxTr2jo8="; 25 + rev = "51e44a13acea71b36245e8bd8c7db53e0a3e61ee"; 26 + hash = "sha256-yINKdShHrtjdiJhov+q0s3Y3B830ujRoSbHduUNyKag="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "cnspec"; 8 - version = "9.12.3"; 8 + version = "9.13.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mondoohq"; 12 12 repo = "cnspec"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-wPbUqen1y/+zlv+4giY/0ZVZEfSUYhvJBO1yl3NZMtw="; 14 + hash = "sha256-hGiMdL+SXJ5psrmfM5pvKD01yaD1q3tOOhfGzbcjvuE="; 15 15 }; 16 16 17 17 proxyVendor = true; 18 - vendorHash = "sha256-VL7AD3W6gieKhcglsON1pi4vbe+tbw/P22RU5Zfq/2U="; 18 + vendorHash = "sha256-pRFRPUL/Ck4m7JH5ykei3PSXbCFKRii8YyjBLQ5kb9M="; 19 19 20 20 subPackages = [ 21 21 "apps/cnspec"
+3 -1
pkgs/top-level/all-packages.nix
··· 31874 31874 31875 31875 feishu = callPackage ../applications/networking/instant-messengers/feishu { }; 31876 31876 31877 - filezilla = callPackage ../applications/networking/ftp/filezilla { }; 31877 + filezilla = darwin.apple_sdk_11_0.callPackage ../applications/networking/ftp/filezilla { 31878 + inherit (darwin.apple_sdk_11_0.frameworks) CoreServices Security; 31879 + }; 31878 31880 31879 31881 fire = darwin.apple_sdk_11_0.callPackage ../applications/audio/fire { 31880 31882 inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit CoreServices DiscRecording CoreAudioKit MetalKit;
+3
pkgs/top-level/python-aliases.nix
··· 255 255 Markups = markups; # added 2022-02-14 256 256 markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10 257 257 mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10 258 + mac_alias = mac-alias; # added 2024-01-07 258 259 MDP = mdp; # added 2023-02-19 259 260 MechanicalSoup = mechanicalsoup; # added 2021-06-01 260 261 memcached = python-memcached; # added 2022-05-06 ··· 264 265 manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20 265 266 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 266 267 memory_profiler = memory-profiler; # added 2023-10-09 268 + mir_eval = mir-eval; # added 2024-01-07 267 269 mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12 268 270 mistune_2_0 = mistune; # added 2022-08-12 269 271 mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28 ··· 455 457 suds-jurko = throw "suds-jurko has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-02-27 456 458 supervise_api = supervise-api; # added 2023-10-11 457 459 suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27 460 + sysv_ipc = sysv-ipc; # added 2024-01-07 458 461 tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25 459 462 tensorflow-build_2 = tensorflow-build; # added 2021-11-25 460 463 tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17
+3 -3
pkgs/top-level/python-packages.nix
··· 6679 6679 6680 6680 m3u8 = callPackage ../development/python-modules/m3u8 { }; 6681 6681 6682 - mac_alias = callPackage ../development/python-modules/mac_alias { }; 6682 + mac-alias = callPackage ../development/python-modules/mac-alias { }; 6683 6683 6684 6684 mac-vendor-lookup = callPackage ../development/python-modules/mac-vendor-lookup { }; 6685 6685 ··· 7047 7047 7048 7048 mip = callPackage ../development/python-modules/mip { }; 7049 7049 7050 - mir_eval = callPackage ../development/python-modules/mir_eval { }; 7050 + mir-eval = callPackage ../development/python-modules/mir-eval { }; 7051 7051 7052 7052 mirakuru = callPackage ../development/python-modules/mirakuru { }; 7053 7053 ··· 13940 13940 inherit (pkgs) systemd; 13941 13941 }; 13942 13942 13943 - sysv_ipc = callPackage ../development/python-modules/sysv_ipc { }; 13943 + sysv-ipc = callPackage ../development/python-modules/sysv-ipc { }; 13944 13944 13945 13945 syrupy = callPackage ../development/python-modules/syrupy { }; 13946 13946
+2
pkgs/top-level/release-haskell.nix
··· 506 506 haskell-language-server = lib.subtractLists [ 507 507 # Support ceased as of 2.3.0.0 508 508 compilerNames.ghc8107 509 + # Support ceased as of 2.5.0.0 510 + compilerNames.ghc902 509 511 ] released; 510 512 hoogle = lib.subtractLists [ 511 513 compilerNames.ghc963