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.
This commit is contained in:
Jan Tojnar 2024-01-07 16:14:41 +01:00
commit ff42d23313
93 changed files with 1730 additions and 1189 deletions

View File

@ -7,8 +7,11 @@ set -eu -o pipefail
# Stackage solver to use, LTS or Nightly
# (should be capitalized like the display name)
SOLVER=LTS
# Stackage solver verson, if any. Use latest if empty
VERSION=21
TMP_TEMPLATE=update-stackage.XXXXXXX
readonly SOLVER
readonly VERSION
readonly TMP_TEMPLATE
toLower() {
@ -23,7 +26,7 @@ stackage_config="pkgs/development/haskell-modules/configuration-hackage2nix/stac
trap 'rm "${tmpfile}" "${tmpfile_new}"' 0
touch "$tmpfile" "$tmpfile_new" # Creating files here so that trap creates no errors.
curl -L -s "https://stackage.org/$(toLower "$SOLVER")/cabal.config" >"$tmpfile"
curl -L -s "https://stackage.org/$(toLower "$SOLVER")${VERSION:+-$VERSION}/cabal.config" >"$tmpfile"
old_version=$(grep '^# Stackage' $stackage_config | sed -e 's/.\+ \([A-Za-z]\+ [0-9.-]\+\)$/\1/g')
version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")"

View File

@ -97,6 +97,9 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
- `systemd.oomd.enableUserServices` is renamed to `systemd.oomd.enableUserSlices`.
- `security.pam.enableSSHAgentAuth` now requires `services.openssh.authorizedKeysFiles` to be non-empty,
which is the case when `services.openssh.enable` is true. Previously, `pam_ssh_agent_auth` silently failed to work.
## Other Notable Changes {#sec-release-24.05-notable-changes}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

View File

@ -1456,6 +1456,13 @@ in
`security.pam.zfs.enable` requires enabling ZFS (`boot.zfs.enabled` or `boot.zfs.enableUnstable`).
'';
}
{
assertion = config.security.pam.enableSSHAgentAuth -> config.services.openssh.authorizedKeysFiles != [];
message = ''
`security.pam.enableSSHAgentAuth` requires `services.openssh.authorizedKeysFiles` to be a non-empty list.
Did you forget to set `services.openssh.enable` ?
'';
}
];
environment.systemPackages =

View File

@ -18,6 +18,7 @@ in {
testScript = ''
machine.wait_for_unit("typesense.service")
machine.wait_for_open_port(${toString testPort})
assert machine.succeed("curl --fail http://localhost:${toString testPort}/health") == '{"ok":true}'
# After waiting for the port, typesense still hasn't initialized the database, so wait until we can connect successfully
assert machine.wait_until_succeeds("curl --fail http://localhost:${toString testPort}/health") == '{"ok":true}'
'';
})

View File

@ -18,11 +18,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "snapshot";
version = "45.1";
version = "45.2";
src = fetchurl {
url = "mirror://gnome/sources/snapshot/${lib.versions.major finalAttrs.version}/snapshot-${finalAttrs.version}.tar.xz";
hash = "sha256-/kRifa7zrZbBaaLlRhDmZxj4k9cN/SXUDTBskYQ7zjk=";
hash = "sha256-iQd4F/xzXMjonbUWKPUuqKxmwZTfxqekLgA8TCnE3T4=";
};
nativeBuildInputs = [

View File

@ -34,13 +34,13 @@
buildPythonApplication rec {
pname = "orca";
version = "45.1";
version = "45.2";
format = "other";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "v8wGv0vEe70CwVaNHkZL8Wox5iv3A7SaoTsI2zihqMo=";
sha256 = "8PLFeaW+7f5WU7x/4kSBxNaqxd0fccHnoghZXzx473Y=";
};
patches = [

View File

@ -11,19 +11,22 @@
, pugixml
, sqlite
, tinyxml
, boost
, wrapGAppsHook
, wxGTK32
, gtk3
, xdg-utils
, CoreServices
, Security
}:
stdenv.mkDerivation rec {
pname = "filezilla";
version = "3.63.1";
version = "3.66.4";
src = fetchurl {
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
hash = "sha256-TgtcD3n0+LykuiHnE7qXuG1bRcRyPeZ7nBDSO/QXo38=";
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.xz";
hash = "sha256-pA8E4C76rntQ0VFe4cNsSw5EWBhWbEUORAv9bHDpsgM=";
};
configureFlags = [
@ -34,6 +37,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
buildInputs = [
boost
dbus
gettext
gnutls
@ -46,7 +50,11 @@ stdenv.mkDerivation rec {
wxGTK32
gtk3
xdg-utils
];
] ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
preBuild = lib.optionalString (stdenv.isDarwin) ''
export MACOSX_DEPLOYMENT_TARGET=11.0
'';
enableParallelBuilding = true;

View File

@ -22,11 +22,11 @@
stdenv.mkDerivation rec {
pname = "evolution-ews";
version = "3.50.2";
version = "3.50.3";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "gYgjez2TGnOrire1c5/0Pqoky8mtjnK4I5KZ9pizHmY=";
sha256 = "4vpZQTdq1X4H0mc/hnbDH38rBo1J9o6g+4uv6rtSm+0=";
};
patches = [

View File

@ -2,12 +2,12 @@
python3.pkgs.buildPythonApplication rec {
pname = "fava";
version = "1.26.4";
version = "1.27";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-kQXojI57NYZgu3qXjtOL/a48YnXhuA6FEazhJ7jntqk=";
hash = "sha256-M2uE+/hYUP/l9l5zP/lHJsbMzfQ77cEJBFzbmX29gzM=";
};
nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];

View File

@ -64,6 +64,17 @@ lib.makeOverridable (args: stdenvNoCC.mkDerivation (extendedBy
'';
passthru = { inherit scriptName; };
meta.platforms = lib.platforms.all;
meta = {
platforms = lib.platforms.all;
} // (
let pos =
if (args.meta or {}) ? description then
builtins.unsafeGetAttrPos "description" args.meta
else
builtins.unsafeGetAttrPos "pname" args;
in lib.optionalAttrs
(pos != null)
{ position = "${pos.file}:${toString pos.line}"; }
);
})
))

View File

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, unstableGitUpdater
, buildLua }:
buildLua {
@ -12,6 +13,7 @@ buildLua {
rev = "b26825316e3329882206ae78dc903ebc4613f039";
hash = "sha256-OTrLQE3rYvPQamEX23D6HttNjx3vafWdTMxTiWpDy90=";
};
passthru.updateScript = unstableGitUpdater {};
meta = {
description = "Automatically skips chapters based on title";

View File

@ -1,14 +1,22 @@
{ lib, fetchgit, buildLua
, yad, mkvtoolnix-cli, libnotify }:
{ lib
, fetchgit
, unstableGitUpdater
, buildLua
, libnotify
, mkvtoolnix-cli
, yad
}:
buildLua {
pname = "mpv-convert-script";
version = "2016-03-18";
version = "unstable-2015-07-02";
src = fetchgit {
url = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
rev = "f95cee43e390e843a47e8ec9d1711a12a8cd343d";
sha256 = "13m7l4sy2r8jv2sfrb3vvqvnim4a9ilnv28q5drlg09v298z3mck";
};
passthru.updateScript = unstableGitUpdater {};
patches = [ ./convert.patch ];

View File

@ -1,4 +1,4 @@
{ lib, buildLua, fetchFromGitHub, makeWrapper }:
{ lib, buildLua, fetchFromGitHub, makeWrapper, unstableGitUpdater }:
buildLua {
pname = "video-cutter";
@ -10,6 +10,7 @@ buildLua {
rev = "01a0396c075d5f8bbd1de5b571e6231f8899ab65";
sha256 = "sha256-veoRFzUCRH8TrvR7x+WWoycpDyxqrJZ/bnp61dVc0pE=";
};
passthru.updateScript = unstableGitUpdater {};
nativeBuildInputs = [ makeWrapper ];

View File

@ -72,7 +72,9 @@ let
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
mpv-webm = callPackage ./mpv-webm.nix { };
mpvacious = callPackage ./mpvacious.nix { };
quack = callPackage ./quack.nix { };
quality-menu = callPackage ./quality-menu.nix { };
reload = callPackage ./reload.nix { };
simple-mpv-webui = callPackage ./simple-mpv-webui.nix { };
sponsorblock = callPackage ./sponsorblock.nix { };
sponsorblock-minimal = callPackage ./sponsorblock-minimal.nix { };

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, dbus, mpv-unwrapped }:
{ lib, stdenv, fetchFromGitHub, gitUpdater, pkg-config, dbus, mpv-unwrapped }:
stdenv.mkDerivation rec {
pname = "mpv-inhibit-gnome";
@ -10,6 +10,9 @@ stdenv.mkDerivation rec {
rev = "v${version}";
hash = "sha256-LSGg5gAQE2JpepBqhz6D6d3NlqYaU4bjvYf1F+oLphQ=";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
nativeBuildInputs = [ pkg-config ];

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, glib, mpv-unwrapped, ffmpeg }:
{ lib, stdenv, fetchFromGitHub, gitUpdater, pkg-config, glib, mpv-unwrapped, ffmpeg }:
stdenv.mkDerivation rec {
pname = "mpv-mpris";
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
rev = version;
hash = "sha256-vZIO6ILatIWa9nJYOp4AMKwvaZLahqYWRLMDOizyBI0=";
};
passthru.updateScript = gitUpdater {};
nativeBuildInputs = [ pkg-config ];

View File

@ -1,4 +1,4 @@
{ lib, buildLua, fetchFromGitHub, yt-dlp }:
{ lib, buildLua, fetchFromGitHub, unstableGitUpdater, yt-dlp }:
buildLua rec {
pname = "mpv-playlistmanager";
@ -10,6 +10,7 @@ buildLua rec {
rev = "579490c7ae1becc129736b7632deec4f3fb90b99";
hash = "sha256-swOtoB8UV/HPTpQRGXswAfUYsyC2Nj/QRIkGP8X1jk0=";
};
passthru.updateScript = unstableGitUpdater {};
postPatch = ''
substituteInPlace playlistmanager.lua \

View File

@ -2,7 +2,7 @@
, buildLua
, fetchFromGitHub
, luaPackages
, nix-update-script
, unstableGitUpdater
}:
buildLua {
@ -15,15 +15,12 @@ buildLua {
rev = "6b5863f68275b3dc91c2507284c039ec8a4cbd97";
hash = "sha256-rJamBm6FyxWcJO7VXXOUTO9piWCkPfEVdqGKGeJ/h0c=";
};
passthru.updateScript = unstableGitUpdater {};
dontBuild = false;
nativeBuildInputs = [ luaPackages.moonscript ];
scriptPath = "build/webm.lua";
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = with lib; {
description = "Simple WebM maker for mpv, with no external dependencies";
homepage = "https://github.com/ekisu/mpv-webm";

View File

@ -1,6 +1,7 @@
{ lib
, buildLua
, fetchFromGitHub
, gitUpdater
, curl
, wl-clipboard
, xclip
@ -16,6 +17,9 @@ buildLua rec {
rev = "v${version}";
sha256 = "sha256-XTnib4cguWFEvZtmsLfkesbjFbkt2YoyYLT587ajyUM=";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
postPatch = ''
substituteInPlace utils/forvo.lua \

View File

@ -0,0 +1,31 @@
{ lib
, fetchFromGitHub
, unstableGitUpdater
, buildLua }:
buildLua rec {
pname = "mpv-quack";
version = "unstable-2020-05-26";
src = fetchFromGitHub {
owner = "CounterPillow";
repo = pname;
rev = "1c87f36f9726d462dd112188c04be54d85692cf3";
hash = "sha256-dEnJbS8RJoAxpKINdoMHN4l7vpEdf7+C5JVWpK0VXMw=";
};
passthru.updateScript = unstableGitUpdater {};
meta = {
description = "Reduce audio volume after seeking";
longDescription = ''
quack is an mpv script to temporarily reduce the volume after a seek,
in order to avoid loud noises when scrubbing through a movie.
The volume is linearly increased back up to its original level.
Repeated seeks before the transition is done work as well.
'';
homepage = "https://github.com/CounterPillow/quack";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ nicoo ];
};
}

View File

@ -1,6 +1,7 @@
{ lib
, buildLua
, fetchFromGitHub
, gitUpdater
, oscSupport ? false
}:
@ -14,6 +15,9 @@ buildLua rec {
rev = "v${version}";
hash = "sha256-yrcTxqpLnOI1Tq3khhflO3wzhyeTPuvKifyH5/P57Ns=";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
extraScripts = lib.optional oscSupport "quality-menu-osc.lua";

View File

@ -0,0 +1,29 @@
{ lib
, fetchFromGitHub
, unstableGitUpdater
, buildLua }:
buildLua rec {
pname = "mpv-reload";
version = "unstable-2023-12-19";
src = fetchFromGitHub {
owner = "4e6";
repo = pname;
rev = "133d596f6d369f320b4595bbed1f4a157b7b9ee5";
hash = "sha256-B+4TCmf1T7MuwtbL+hGZoN1ktI31hnO5yayMG1zW8Ng=";
};
passthru.updateScript = unstableGitUpdater {};
meta = {
description = "Manual & automatic reloading of videos";
longDescription = ''
This script adds reloading of videos, automatically on timers (when stuck
buffering etc.) or manually on keybinds, to help with cases where a stream
is not loading further due to a network or remote issue.
'';
homepage = "https://github.com/4e6/mpv-reload";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nicoo ];
};
}

View File

@ -1,5 +1,7 @@
{ lib, buildLua
, fetchFromGitHub }:
, fetchFromGitHub
, gitUpdater
}:
buildLua rec {
pname = "simple-mpv-ui";
version = "3.0.0";
@ -11,6 +13,9 @@ buildLua rec {
hash = "sha256-I8lwpo3Hfpy3UnPMmHEJCdArVQnNL245NkxsYVmnMF0=";
sparseCheckout = [ "main.lua" "webui-page" ];
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
scriptPath = ".";
passthru.scriptName = "webui";

View File

@ -1,6 +1,7 @@
{ lib
, buildLua
, fetchFromGitea
, unstableGitUpdater
, curl
}:
@ -16,6 +17,7 @@ buildLua {
rev = "ca2844b8cf7674bfccd282d389a50427742251d3";
hash = "sha256-28HWZ6nOhKiE+5Ya1N3Vscd8aeH9OKS0t72e/xPfFQQ=";
};
passthru.updateScript = unstableGitUpdater {};
preInstall = ''
substituteInPlace sponsorblock_minimal.lua \

View File

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, buildLua, mpv-unwrapped }:
{ lib, fetchFromGitHub, unstableGitUpdater, buildLua, mpv-unwrapped }:
buildLua {
pname = "mpv-thumbfast";
@ -10,6 +10,7 @@ buildLua {
rev = "03e93feee5a85bf7c65db953ada41b4826e9f905";
hash = "sha256-5u5WBvWOEydJrnr/vilEgW4+fxkxM6wNjb9Fyyxx/1c=";
};
passthru.updateScript = unstableGitUpdater {};
passthru.extraWrapperArgs = [
"--prefix" "PATH" ":" "${lib.getBin mpv-unwrapped}/bin"

View File

@ -1,4 +1,4 @@
{ lib, buildLua, fetchFromGitHub, python3 }:
{ lib, buildLua, fetchFromGitHub, gitUpdater, python3 }:
buildLua rec {
pname = "mpv-thumbnail-script";
@ -10,6 +10,7 @@ buildLua rec {
rev = version;
sha256 = "sha256-J24Rou7BTE7zoiPlBkWuO9dtYJiuzkuwB4FROuzXzag=";
};
passthru.updateScript = gitUpdater {};
nativeBuildInputs = [ python3 ];
postPatch = "patchShebangs concat_files.py";

View File

@ -1,6 +1,7 @@
{ lib
, fetchFromGitHub
, fetchpatch
, gitUpdater
, makeFontsConf
, buildLua
, buildGoModule
@ -17,6 +18,7 @@ buildLua (finalAttrs: {
rev = finalAttrs.version;
hash = "sha256-+4k8T1yX3IRXK3XkUShsuJSH9w1Zla7CaRENcIqX4iM=";
};
passthru.updateScript = gitUpdater {};
tools = buildGoModule {
pname = "uosc-bin";

View File

@ -2,6 +2,7 @@
lib,
buildLua,
fetchFromGitHub,
unstableGitUpdater,
}:
buildLua {
pname = "visualizer";
@ -13,6 +14,7 @@ buildLua {
rev = "7dbbfb283508714b73ead2a57b6939da1d139bd3";
sha256 = "zzB4uBc1M2Gdr/JKY2uk8MY0hmQl1XeomkfTzuM45oE=";
};
passthru.updateScript = unstableGitUpdater {};
meta = with lib; {
description = "various audio visualization";

View File

@ -1,4 +1,4 @@
{ lib, stdenvNoCC, fetchFromGitHub, ffmpeg }:
{ lib, stdenvNoCC, fetchFromGitHub, gitUpdater, ffmpeg }:
stdenvNoCC.mkDerivation rec {
pname = "vr-reversal";
@ -10,6 +10,9 @@ stdenvNoCC.mkDerivation rec {
rev = "v${version}";
sha256 = "1wn2ngcvn7wcsl3kmj782x5q9130qw951lj6ilrkafp6q6zscpqr";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
dontBuild = true;

View File

@ -1,4 +1,4 @@
{ lib, buildNpmPackage, fetchFromGitHub, nodejs, python3 }:
{ lib, buildNpmPackage, fetchFromGitHub, gitUpdater, nodejs, python3 }:
buildNpmPackage rec {
pname = "webtorrent-mpv-hook";
@ -10,6 +10,9 @@ buildNpmPackage rec {
rev = "v${version}";
hash = "sha256-/dMtXcIyfAs++Zgz2CxRW0tkzn5QjS+WVGChlCyrU0U=";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
postPatch = ''
substituteInPlace src/webtorrent.ts --replace "node_path: 'node'" "node_path: '${nodejs}/bin/node'"

View File

@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "obs-text-pthread";
version = "2.0.2";
version = "2.0.3";
src = fetchFromGitHub {
owner = "norihiro";
repo = "obs-text-pthread";
rev = version;
sha256 = "sha256-HN8tSagxmk6FusDrp7d0fi15ardFgUCZBiYkeBqUI34=";
sha256 = "sha256-iwPoFbXkWzwE3smWJ+//ZUayD5OO/3iMSoYUTR3LVks=";
};
nativeBuildInputs = [ cmake pkg-config ];

View File

@ -17,20 +17,20 @@
buildNpmPackage rec {
pname = "bruno";
version = "1.5.1";
version = "1.6.1";
src = fetchFromGitHub {
owner = "usebruno";
repo = "bruno";
rev = "v${version}";
hash = "sha256-GgXnsPEUurPHrijf966x5ldp+1lDrgS1iBinU+EkdYU=b";
hash = "sha256-Vf4UHN13eE9W4rekOEGAWIP3x79cVH3vI9sxuIscv8c=";
postFetch = ''
${lib.getExe npm-lockfile-fix} $out/package-lock.json
'';
};
npmDepsHash = "sha256-R5dEL4QbwCSE9+HHCXlf/pYLmjCaD15tmdSSLbZgmt0=";
npmDepsHash = "sha256-pfV9omdJiozJ9VotTImfM/DRsBPNGAEzmSdj3/C//4A=";
nativeBuildInputs = [
(writeShellScriptBin "phantomjs" "echo 2.1.1")

View File

@ -1,6 +1,6 @@
{
"commit": "6a46f981138e6d012bfcced5f1d2b309b5452766",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/6a46f981138e6d012bfcced5f1d2b309b5452766.tar.gz",
"sha256": "1v297xyfv9nv1bji08gq8s6wrgmxjnhklvf6p0mvslyrj36w7mlj",
"msg": "Update from Hackage at 2023-12-04T17:35:08Z"
"commit": "d77837f979c4b15fe0eb25cdf8a0463773434c9d",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/d77837f979c4b15fe0eb25cdf8a0463773434c9d.tar.gz",
"sha256": "01ihv1nwp0qqhwll5icl19ij5sb1nvhpnwgvwpcr319rn3b704km",
"msg": "Update from Hackage at 2023-12-17T16:07:47Z"
}

View File

@ -28,11 +28,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "gnome-maps";
version = "45.2";
version = "45.3";
src = fetchurl {
url = "mirror://gnome/sources/gnome-maps/${lib.versions.major finalAttrs.version}/gnome-maps-${finalAttrs.version}.tar.xz";
hash = "sha256-6es3CnlxtPhC+qME0xpIXb2P+K7EKnZScvL8GnqAmPI=";
hash = "sha256-Lxs6DZZC+MOwyyi3v1ZCgqwspdbE4MBe5gCy9EfxYCo=";
};
doCheck = true;

View File

@ -31,13 +31,13 @@
stdenv.mkDerivation rec {
pname = "eog";
version = "45.1";
version = "45.2";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "sha256-wX+GcExyKzbAGhaPHlFDm+C7J58sZkb0i2bp0POiTNI=";
sha256 = "sha256-2UzDnYLIDO5ygbgqzkLIIll2rV0MPvmVx+Aw9rqyIZw=";
};
patches = [

View File

@ -36,11 +36,11 @@
stdenv.mkDerivation rec {
pname = "epiphany";
version = "45.1";
version = "45.2";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "fJlO807NYOkV3jMe4SPAiTj5YjzvrabVC5njycWtgTU=";
sha256 = "eccUYL/+/M715nvj+1/KZXhT6CFstiY5nSuVDOAyDdw=";
};
nativeBuildInputs = [

View File

@ -40,11 +40,11 @@
stdenv.mkDerivation rec {
pname = "gnome-settings-daemon";
version = "45.0";
version = "45.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-settings-daemon/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "u03EaVDiqQ848jIlhIhW0qextxjInQKFzhl7cBa7Hcg=";
sha256 = "xiv+yYF+7luD6+kBqShhiaZ+tf8DPF3UFQZXT4Ir8JA=";
};
patches = [

View File

@ -46,11 +46,11 @@ in
stdenv.mkDerivation rec {
pname = "gnome-software";
version = "45.2";
version = "45.3";
src = fetchurl {
url = "mirror://gnome/sources/gnome-software/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "C92PwMrs1usBPGAQ28qTB3OXEYpu9eryZOKoIKKS9bc=";
sha256 = "1rkkWyIjfae9FzndKMI8yPODX5n6EMEDfZ3XY1M1JRw=";
};
patches = [

View File

@ -16,11 +16,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "zenity";
version = "4.0.0";
version = "4.0.1";
src = fetchurl {
url = "mirror://gnome/sources/zenity/${lib.versions.majorMinor finalAttrs.version}/zenity-${finalAttrs.version}.tar.xz";
sha256 = "C4yN7xjasFzEm9RkuQyn+UWuUv9eCSQtpwKhXZTT6N0=";
sha256 = "DC9TeBOxD3KEcNnQXWyVcT2yUS+clQluHoWxpnOWBeY=";
};
nativeBuildInputs = [

View File

@ -21,11 +21,11 @@
stdenv.mkDerivation rec {
pname = "gnome-sudoku";
version = "45.3";
version = "45.4";
src = fetchurl {
url = "mirror://gnome/sources/gnome-sudoku/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "27xURAbO54QRBBeOpKk742EH2dfsplVf0wGJzRQ41ko=";
sha256 = "edNZV6oWj0pWPmAW+5dQs1hlJgEkEVg4CkxLebdAAZ0=";
};
nativeBuildInputs = [

View File

@ -47,6 +47,7 @@ let
inherit (bootGhcjs) version;
isGhcjs = true;
llvmPackages = null;
enableShared = true;
socket-io = pkgsHostHost.nodePackages."socket.io";

View File

@ -8,10 +8,10 @@
}:
mkDerivation {
pname = "cabal2nix";
version = "unstable-2023-11-02";
version = "unstable-2024-01-04";
src = fetchzip {
url = "https://github.com/NixOS/cabal2nix/archive/2099a1f4594f621bb1a2879b793b860aefe4c027.tar.gz";
sha256 = "11j1lzjanhmdkqwnb7hni3wxiixl7fzxk6d633cn7ybr7b8wra9s";
url = "https://github.com/NixOS/cabal2nix/archive/e394e96c51cc7a2858145e710fbedbb2cb57f6ec.tar.gz";
sha256 = "0rzmyx2i2z3w2ibg4rbaasq0581sa7bf8n1cih6v3j6phzgl3058";
};
postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot";
isLibrary = true;

View File

@ -92,6 +92,15 @@ self: super: {
guardian
;
# Extensions wants the latest version of Cabal for its list of Haskell
# language extensions.
extensions = super.extensions.override {
Cabal =
if versionOlder self.ghc.version "9.6"
then self.Cabal_3_10_2_1
else null; # use GHC bundled version
};
#######################################
### HASKELL-LANGUAGE-SERVER SECTION ###
#######################################
@ -121,17 +130,6 @@ self: super: {
# For -f-auto see cabal.project in haskell-language-server.
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex);
# 2023-12-03: https://github.com/haskell/haskell-language-server/pull/3867
hls-plugin-api = appendPatch (fetchpatch {
url = "https://github.com/haskell/haskell-language-server/commit/1c884ea856cceeaa3254a2ef68c8ab3a3c353153.patch";
relative = "hls-plugin-api";
hash = "sha256-vlXPdEvmuIl+cM+u/GdHi8r72r4+Tqtsvx0CGbWEFCQ=";
}) (doJailbreak super.hls-plugin-api);
ghcide = appendPatch (fetchpatch {
url = "https://github.com/haskell/haskell-language-server/commit/1c884ea856cceeaa3254a2ef68c8ab3a3c353153.patch";
relative = "ghcide";
hash = "sha256-1URXyQf88v3hjFGvNmcIjHxJ5vExH3iI92XktDrQs0U=";
}) (doJailbreak super.ghcide);
hls-test-utils = doJailbreak super.hls-test-utils;
hls-alternate-number-format-plugin = doJailbreak super.hls-alternate-number-format-plugin;
hls-cabal-plugin = doJailbreak super.hls-cabal-plugin;
@ -148,6 +146,12 @@ self: super: {
# https://github.com/supki/ldap-client/issues/18
ldap-client-og = dontCheck super.ldap-client-og;
# Support for template-haskell >= 2.16
language-haskell-extract = appendPatch (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch";
sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv";
}) (doJailbreak super.language-haskell-extract);
vector = overrideCabal (old: {
# Too strict bounds on doctest which isn't used, but is part of the configuration
jailbreak = true;
@ -189,6 +193,21 @@ self: super: {
# 2023-06-28: Test error: https://hydra.nixos.org/build/225565149
orbits = dontCheck super.orbits;
# Fixes the build if Cabal >= 3.10.2 is used for Setup.hs, as it got stricter
# about c- vs. cxx-sources: https://github.com/haskell/double-conversion/issues/43
double-conversion = overrideCabal (drv: {
patches = drv.patches or [ ] ++ [
(pkgs.fetchpatch {
name = "double-conversion-c-to-cxx-sources.patch";
url = "https://github.com/haskell/double-conversion/pull/44/commits/d480fb057c5387251b8cfdeb3666b24087811219.patch";
sha256 = "0jw2i2cybmv190bhab0afhz2v3zva2chazhmngh884fsq2p3j1cv";
})
];
prePatch = drv.prePatch or "" + ''
${pkgs.buildPackages.dos2unix}/bin/dos2unix *.cabal
'';
}) super.double-conversion;
# Allow aeson == 2.1.*
# https://github.com/hdgarrood/aeson-better-errors/issues/23
aeson-better-errors = doJailbreak super.aeson-better-errors;
@ -297,7 +316,7 @@ self: super: {
# Overriding the version pandoc dependency uses as the latest release has version bounds
# defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage.
patat = super.patat.override { pandoc = self.pandoc_3_1_9; };
patat = super.patat.override { pandoc = self.pandoc_3_1_11; };
# http2 also overridden in all-packages.nix for mailctl.
# twain is currently only used by mailctl, so the .overrideScope shouldn't
@ -1239,22 +1258,22 @@ self: super: {
# stack-2.13.1 requires a bunch of the latest packages.
(drv: drv.overrideScope (hfinal: hprev: {
ansi-terminal = hprev.ansi-terminal_1_0; # needs ansi-terminal >= 1.0
crypton = hprev.crypton_0_34; # needs crypton >= 0.33
ansi-terminal = hfinal.ansi-terminal_1_0; # needs ansi-terminal >= 1.0
crypton = hfinal.crypton_0_34; # needs crypton >= 0.33
hedgehog = doJailbreak hprev.hedgehog; # has too strict version bound for ansi-terminal
hpack = hprev.hpack_0_36_0; # needs hpack == 0.36.0
http-client-tls = hprev.http-client-tls_0_3_6_3; # needs http-client-tls >= 0.3.6.2
http-download = dontCheck hprev.http-download_0_2_1_0; # needs http-download >= 0.2.1.0, tests access network
optparse-applicative = hprev.optparse-applicative_0_18_1_0; # needs optparse-applicative >= 0.18.1.0
pantry = dontCheck hprev.pantry_0_9_3; # needs pantry >= 0.9.2, tests access network
hpack = hfinal.hpack_0_36_0; # needs hpack == 0.36.0
http-client-tls = hfinal.http-client-tls_0_3_6_3; # needs http-client-tls >= 0.3.6.2
http-download = hfinal.http-download_0_2_1_0; # needs http-download >= 0.2.1.0
optparse-applicative = hfinal.optparse-applicative_0_18_1_0; # needs optparse-applicative >= 0.18.1.0
pantry = hfinal.pantry_0_9_3_1; # needs pantry >= 0.9.2
syb = dontCheck hprev.syb; # cyclic dependencies
tar-conduit = hprev.tar-conduit_0_4_0; # pantry needs tar-conduit >= 0.4.0
tar-conduit = hfinal.tar-conduit_0_4_0; # pantry needs tar-conduit >= 0.4.0
temporary = dontCheck hprev.temporary; # cyclic dependencies
}))
];
hopenpgp-tools = super.hopenpgp-tools.override {
optparse-applicative = self.optparse-applicative_0_18_1_0;
optparse-applicative = self.optparse-applicative_0_18_1_0;
};
# musl fixes
@ -1938,7 +1957,7 @@ self: super: {
inherit (let
pandoc-cli-overlay = self: super: {
# pandoc-cli requires pandoc >= 3.1
pandoc = self.pandoc_3_1_9;
pandoc = self.pandoc_3_1_11;
# pandoc depends on http-client-tls, which only starts depending
# on crypton-connection in http-client-tls-0.3.6.2.
@ -1947,17 +1966,26 @@ self: super: {
# pandoc depends on skylighting >= 0.14
skylighting = self.skylighting_0_14_1;
skylighting-core = self.skylighting-core_0_14_1;
# pandoc needs up to date typst
typst-symbols = self.typst-symbols_0_1_5;
# and texmath to match
texmath = self.texmath_0_12_8_6;
};
in {
pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay;
pandoc_3_1_9 = doDistribute (super.pandoc_3_1_9.overrideScope pandoc-cli-overlay);
pandoc_3_1_11 = doDistribute (super.pandoc_3_1_11.overrideScope pandoc-cli-overlay);
pandoc-lua-engine = super.pandoc-lua-engine.overrideScope pandoc-cli-overlay;
})
pandoc-cli
pandoc_3_1_9
pandoc_3_1_11
pandoc-lua-engine
;
# Doesn't work without typst-symbols >= 0.1.5 which conflicts with Stackage
# TODO(@sternenseemann): clean up with Stackage LTS 22
typst = dontDistribute super.typst;
crypton-x509 =
lib.pipe
super.crypton-x509
@ -2716,7 +2744,7 @@ self: super: {
# 2023-12-20: Needs newer hasql-pool package and extra dependencies
postgrest = lib.pipe (super.postgrest.overrideScope (lself: lsuper: {
hasql-pool = lself.hasql-pool_0_10;
hasql-pool = lself.hasql-pool_0_10_0_1;
})) [
(addBuildDepends [ self.extra self.fuzzyset_0_2_4 self.cache self.timeit ])
# 2022-12-02: Too strict bounds: https://github.com/PostgREST/postgrest/issues/2580
@ -2762,13 +2790,19 @@ self: super: {
# 2023-03-05: restrictive bounds on base https://github.com/diagrams/diagrams-gtk/issues/11
diagrams-gtk = doJailbreak super.diagrams-gtk;
# 2023-03-13: restrictive bounds on validation-selective (>=0.1.0 && <0.2).
# Get rid of this in the next release: https://github.com/kowainik/tomland/commit/37f16460a6dfe4606d48b8b86c13635d409442cd
tomland = doJailbreak super.tomland;
llvm-ffi = super.llvm-ffi.override {
LLVM = pkgs.llvmPackages_13.libllvm;
};
tomland = overrideCabal (drv: {
# 2023-03-13: restrictive bounds on validation-selective (>=0.1.0 && <0.2).
# Get rid of this in the next release: https://github.com/kowainik/tomland/commit/37f16460a6dfe4606d48b8b86c13635d409442cd
jailbreak = true;
# Fix compilation of test suite with GHC >= 9.8
patches = drv.patches or [ ] ++ [
(pkgs.fetchpatch {
name = "tomland-disambiguate-string-type-for-ghc-9.8.patch";
url = "https://github.com/kowainik/tomland/commit/0f107269b8835a8253f618b75930b11d3a3f1337.patch";
sha256 = "13ndlfw32xh8jz5g6lpxzn2ks8zchb3y4j1jbbm2x279pdyvvars";
})
];
}) super.tomland;
# libfuse3 fails to mount fuse file systems within the build environment
libfuse3 = dontCheck super.libfuse3;

View File

@ -8,7 +8,11 @@ in
self: super: {
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
# ghcjs does not use `llvmPackages` and exposes `null` attribute.
llvmPackages =
if self.ghc.llvmPackages != null
then pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages
else null;
# Disable GHC 8.10.x core libraries.
array = null;
@ -85,13 +89,6 @@ self: super: {
shellmet = doJailbreak super.shellmet;
shower = doJailbreak super.shower;
# Apply patch from https://github.com/finnsson/template-helper/issues/12#issuecomment-611795375 to fix the build.
language-haskell-extract = appendPatch (pkgs.fetchpatch {
name = "language-haskell-extract-0.2.4.patch";
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/e48738ee1be774507887a90a0d67ad1319456afc/patches/language-haskell-extract-0.2.4.patch?inline=false";
sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
}) (doJailbreak super.language-haskell-extract);
# hnix 0.9.0 does not provide an executable for ghc < 8.10, so define completions here for now.
hnix = self.generateOptparseApplicativeCompletions [ "hnix" ]
(overrideCabal (drv: {

View File

@ -95,7 +95,7 @@ self: super: {
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser super.ghc-lib-parser-ex;
# This became a core library in ghc 8.10., so we dont have an "exception" attribute anymore.
exceptions = null;
exceptions = self.exceptions_0_10_7;
# Older compilers need the latest ghc-lib to build this package.
hls-hlint-plugin = addBuildDepend self.ghc-lib super.hls-hlint-plugin;

View File

@ -68,10 +68,6 @@ self: super: {
tuple = addBuildDepend self.base-orphans super.tuple;
vector-th-unbox = doJailbreak super.vector-th-unbox;
hls-cabal-plugin = super.hls-cabal-plugin.override {
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
};
ormolu = self.ormolu_0_5_2_0.override {
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
};
@ -79,40 +75,11 @@ self: super: {
stylish-haskell = doJailbreak super.stylish-haskell_0_14_4_0;
doctest = dontCheck super.doctest;
# Apply patches from head.hackage.
language-haskell-extract = appendPatch (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch";
sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
}) (doJailbreak super.language-haskell-extract);
haskell-language-server = let
# These aren't included in hackage-packages.nix because hackage2nix is configured for GHC 9.2, under which these plugins aren't supported.
# See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
additionalDeps = with self.haskell-language-server.scope; [
(unmarkBroken hls-splice-plugin)
];
in addBuildDepends additionalDeps (disableCabalFlag "fourmolu" (super.haskell-language-server.overrideScope (lself: lsuper: {
# Needed for modern ormolu and fourmolu.
# Apply this here and not in common, because other ghc versions offer different Cabal versions.
Cabal = lself.Cabal_3_6_3_0;
hls-overloaded-record-dot-plugin = null;
hls-fourmolu-plugin = null;
})));
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";
# Needs to use ghc-lib due to incompatible GHC
ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_5);
# This package is marked as unbuildable on GHC 9.2, so hackage2nix doesn't include any dependencies.
# See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
hls-haddock-comments-plugin = unmarkBroken (addBuildDepends (with self.hls-haddock-comments-plugin.scope; [
ghc-exactprint ghcide hls-plugin-api hls-refactor-plugin lsp-types unordered-containers
]) super.hls-haddock-comments-plugin);
hls-tactics-plugin = unmarkBroken (addBuildDepends (with self.hls-tactics-plugin.scope; [
aeson extra fingertree generic-lens ghc-exactprint ghc-source-gen ghcide
hls-graph hls-plugin-api hls-refactor-plugin hyphenation lens lsp megaparsec
parser-combinators prettyprinter refinery retrie syb unagi-chan unordered-containers
]) super.hls-tactics-plugin);
ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_6);
# Test suite sometimes segfaults with GHC 9.0.1 and 9.0.2
# https://github.com/ekmett/reflection/issues/51
@ -130,10 +97,6 @@ self: super: {
libraryHaskellDepends = old.libraryHaskellDepends ++ [self.ghc-api-compat];
}) super.hiedb;
# 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2206
# Restrictive upper bound on ormolu
hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin;
# https://github.com/lspitzner/butcher/issues/7
butcher = doJailbreak super.butcher;
@ -162,10 +125,6 @@ self: super: {
apply-refact = self.apply-refact_0_9_3_0;
hls-hlint-plugin = super.hls-hlint-plugin.override {
inherit (self) apply-refact;
};
# Needs OneTuple for ghc < 9.2
binary-orphans = addBuildDepends [ self.OneTuple ] super.binary-orphans;

View File

@ -57,11 +57,12 @@ self: super: {
# weeder >= 2.5 requires GHC 9.4
weeder = doDistribute self.weeder_2_4_1;
weeder_2_4_1 = super.weeder_2_4_1.override {
# Allow dhall 1.42.*
weeder_2_4_1 = doJailbreak (super.weeder_2_4_1.override {
# weeder < 2.6 only supports algebraic-graphs < 0.7
# We no longer have matching test deps for algebraic-graphs 0.6.1 in the set
algebraic-graphs = dontCheck self.algebraic-graphs_0_6_1;
};
});
hls-cabal-plugin = super.hls-cabal-plugin.override {
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
@ -73,7 +74,11 @@ self: super: {
stylish-haskell = doJailbreak super.stylish-haskell_0_14_4_0;
haskell-language-server = disableCabalFlag "fourmolu" (super.haskell-language-server.override { hls-fourmolu-plugin = null; });
haskell-language-server = disableCabalFlag "fourmolu" (super.haskell-language-server.override {
hls-fourmolu-plugin = null;
# Not buildable if GHC > 9.2.3, so we ship no compatible GHC
hls-stan-plugin = null;
});
# For GHC < 9.4, some packages need data-array-byte as an extra dependency
hashable = addBuildDepends [ self.data-array-byte ] super.hashable;
primitive = addBuildDepends [ self.data-array-byte ] super.primitive;
@ -86,12 +91,6 @@ self: super: {
# https://mail.haskell.org/pipermail/haskell-cafe/2022-October/135613.html
language-javascript_0_7_0_0 = dontCheck super.language-javascript_0_7_0_0;
# Apply patches from head.hackage.
language-haskell-extract = appendPatch (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch";
sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv";
}) (doJailbreak super.language-haskell-extract);
# Tests depend on `parseTime` which is no longer available
hourglass = dontCheck super.hourglass;

View File

@ -76,12 +76,6 @@ in {
] ++ drv.testFlags or [];
}) (doJailbreak super.hpack);
# Apply patches from head.hackage.
language-haskell-extract = appendPatch (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch";
sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv";
}) (doJailbreak super.language-haskell-extract);
# Tests depend on `parseTime` which is no longer available
hourglass = dontCheck super.hourglass;
@ -122,9 +116,7 @@ in {
in
lib.mapAttrs (_: pkg: doDistribute (pkg.overrideScope hls_overlay)) {
haskell-language-server = allowInconsistentDependencies super.haskell-language-server;
# Tests fail due to the newly-build fourmolu not being in PATH
# https://github.com/fourmolu/fourmolu/issues/231
fourmolu = dontCheck super.fourmolu_0_14_0_0;
fourmolu = self.fourmolu_0_14_0_0;
ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] (enableSeparateBinOutput super.ormolu_0_7_2_0);
hlint = super.hlint_3_6_1;
stylish-haskell = super.stylish-haskell;

View File

@ -95,9 +95,7 @@ self: super: {
ghc-lib-parser = doDistribute self.ghc-lib-parser_9_6_3_20231121;
ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_2;
# Tests fail due to the newly-build fourmolu not being in PATH
# https://github.com/fourmolu/fourmolu/issues/231
fourmolu = dontCheck super.fourmolu_0_14_0_0;
fourmolu = doDistribute self.fourmolu_0_14_0_0;
ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] (enableSeparateBinOutput super.ormolu_0_7_2_0);
hlint = super.hlint_3_6_1;
@ -143,12 +141,6 @@ self: super: {
# https://github.com/dreixel/syb/issues/40
syb = dontCheck super.syb;
# Support for template-haskell >= 2.16
language-haskell-extract = appendPatch (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch";
sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv";
}) (doJailbreak super.language-haskell-extract);
# Patch 0.17.1 for support of mtl-2.3
xmonad-contrib = appendPatch
(pkgs.fetchpatch {
@ -197,8 +189,8 @@ self: super: {
hw-prim = dontCheck (doJailbreak super.hw-prim);
stm-containers = dontCheck super.stm-containers;
regex-tdfa = dontCheck super.regex-tdfa;
rebase = doJailbreak super.rebase_1_20_1_1;
rerebase = doJailbreak super.rerebase_1_20_1_1;
rebase = doJailbreak super.rebase_1_20_2;
rerebase = doJailbreak super.rerebase_1_20_2;
hiedb = dontCheck super.hiedb;
retrie = dontCheck super.retrie;
# https://github.com/kowainik/relude/issues/436

View File

@ -49,27 +49,71 @@ self: super: {
unix = null;
xhtml = null;
# https://github.com/tibbe/unordered-containers/issues/214
unordered-containers = dontCheck super.unordered-containers;
# HLS
# https://haskell-language-server.readthedocs.io/en/latest/support/plugin-support.html
haskell-language-server = super.haskell-language-server.override {
hls-class-plugin = null;
hls-floskell-plugin = null;
hls-fourmolu-plugin = null;
hls-gadt-plugin = null;
hls-hlint-plugin = null;
hls-ormolu-plugin = null;
hls-refactor-plugin = null;
hls-rename-plugin = null;
hls-retrie-plugin = null;
hls-splice-plugin = null;
hls-stylish-haskell-plugin = null;
};
# Test suite does not compile.
data-clist = doJailbreak super.data-clist; # won't cope with QuickCheck 2.12.x
dates = doJailbreak super.dates; # base >=4.9 && <4.12
Diff = dontCheck super.Diff;
HaTeX = doJailbreak super.HaTeX; # containers >=0.4 && <0.6 is too tight; https://github.com/Daniel-Diaz/HaTeX/issues/126
hpc-coveralls = doJailbreak super.hpc-coveralls; # https://github.com/guillaume-nargeot/hpc-coveralls/issues/82
http-api-data = doJailbreak super.http-api-data;
persistent-sqlite = dontCheck super.persistent-sqlite;
system-fileio = dontCheck super.system-fileio; # avoid dependency on broken "patience"
unicode-transforms = dontCheck super.unicode-transforms;
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
RSA = dontCheck super.RSA; # https://github.com/GaloisInc/RSA/issues/14
github = dontCheck super.github; # hspec upper bound exceeded; https://github.com/phadej/github/pull/341
binary-orphans = dontCheck super.binary-orphans; # tasty upper bound exceeded; https://github.com/phadej/binary-orphans/commit/8ce857226595dd520236ff4c51fa1a45d8387b33
# Version upgrades
alex = doDistribute self.alex_3_4_0_1;
some = doDistribute self.some_1_0_6;
tagged = doDistribute self.tagged_0_8_8;
th-abstraction = doDistribute self.th-abstraction_0_6_0_0;
hspec-core = doDistribute self.hspec-core_2_11_7;
hspec-meta = doDistribute self.hspec-meta_2_11_7;
hspec-discover = doDistribute self.hspec-discover_2_11_7;
hspec = doDistribute self.hspec_2_11_7;
hspec-expectations = doDistribute self.hspec-expectations_0_8_4;
bifunctors = doDistribute self.bifunctors_5_6_1;
free = doDistribute self.free_5_2;
semigroupoids = doDistribute self.semigroupoids_6_0_0_1;
doctest = doDistribute self.doctest_0_22_2;
ghc-lib-parser = doDistribute self.ghc-lib-parser_9_8_1_20231121;
ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_8_0_0;
ghc-lib = doDistribute self.ghc-lib_9_8_1_20231121;
megaparsec = doDistribute self.megaparsec_9_6_1;
tasty-hspec = doDistribute self.tasty-hspec_1_2_0_4;
hedgehog = doDistribute self.hedgehog_1_4;
rebase = doDistribute self.rebase_1_20_2;
rerebase = doDistribute self.rerebase_1_20_2;
aeson = doDistribute self.aeson_2_2_1_0;
aeson-pretty = doDistribute self.aeson-pretty_0_8_10;
attoparsec-aeson = doDistribute self.attoparsec-aeson_2_2_0_1;
ormolu = doDistribute self.ormolu_0_7_3_0;
fourmolu = doDistribute (dontCheck self.fourmolu_0_14_1_0);
# https://github.com/jgm/skylighting/issues/55
skylighting-core = dontCheck super.skylighting-core;
# Jailbreaks
commutative-semigroups = doJailbreak super.commutative-semigroups; # base < 4.19
ghc-trace-events = doJailbreak super.ghc-trace-events; # text < 2.1, bytestring < 0.12, base < 4.19
primitive-unlifted = doJailbreak super.primitive-unlifted; # bytestring < 0.12
newtype-generics = doJailbreak super.newtype-generics; # base < 4.19
hw-prim = doJailbreak super.hw-prim; # doctest < 0.22, ghc-prim < 0.11, hedgehog < 1.4
hw-fingertree = doJailbreak super.hw-fingertree; # deepseq <1.5, doctest < 0.22, hedgehog < 1.4
# Too strict bound on base, believe it or not.
# https://github.com/judah/terminfo/pull/55#issuecomment-1876894232
terminfo_0_4_1_6 = doJailbreak super.terminfo_0_4_1_6;
# Break out of "yaml >=0.10.4.0 && <0.11": https://github.com/commercialhaskell/stack/issues/4485
stack = doJailbreak super.stack;
# Test suite issues
unordered-containers = dontCheck super.unordered-containers; # ChasingBottoms doesn't support base 4.20
lifted-base = dontCheck super.lifted-base; # doesn't compile with transformers == 0.6.*
# https://github.com/wz1000/HieDb/issues/64
hiedb = overrideCabal (drv: {
testFlags = drv.testFlags or [ ] ++ [
"--match" "!/hiedb/Command line/point-info/correctly prints type signatures/"
];
}) super.hiedb;
# Unbroken due to hspec* upgrades
hspec-api = doDistribute (unmarkBroken super.hspec-api);
}

View File

@ -26,7 +26,7 @@ self: super:
# GHCJS does not ship with the same core packages as GHC.
# https://github.com/ghcjs/ghcjs/issues/676
stm = doJailbreak self.stm_2_5_1_0;
stm = doJailbreak self.stm_2_5_3_0;
exceptions = dontCheck self.exceptions_0_10_7;
## OTHER PACKAGES

View File

@ -49,6 +49,7 @@ broken-packages:
- acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02
- AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02
- acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02
- acquire # failure in job https://hydra.nixos.org/build/245695655 at 2024-01-07
- AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02
- ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13
- activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02
@ -81,6 +82,7 @@ broken-packages:
- aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02
- aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02
- aeson-gadt-th # failure in job https://hydra.nixos.org/build/233247060 at 2023-09-02
- aeson-generics-typescript # failure in job https://hydra.nixos.org/build/245703304 at 2024-01-07
- aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02
- aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02
- aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02
@ -548,7 +550,6 @@ broken-packages:
- bytepatch # failure in job https://hydra.nixos.org/build/236678340 at 2023-10-04
- bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02
- bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02
- bytestring-conversion # failure in job https://hydra.nixos.org/build/233211464 at 2023-09-02
- bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02
- bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02
- bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02
@ -613,7 +614,6 @@ broken-packages:
- cacophony # failure in job https://hydra.nixos.org/build/233239380 at 2023-09-02
- cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02
- cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02
- cairo-image # failure in job https://hydra.nixos.org/build/243813080 at 2024-01-01
- cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02
- cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02
- calamity # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/238601583 at 2023-10-21
@ -828,6 +828,7 @@ broken-packages:
- Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02
- Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02
- commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02
- commonmark-simple # failure in job https://hydra.nixos.org/build/245703574 at 2024-01-07
- Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02
- compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02
- compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02
@ -848,6 +849,7 @@ broken-packages:
- compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02
- composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02
- composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02
- composite-base # failure in job https://hydra.nixos.org/build/245710306 at 2024-01-07
- composite-cassava # failure in job https://hydra.nixos.org/build/233241110 at 2023-09-02
- composite-dhall # failure in job https://hydra.nixos.org/build/244399630 at 2024-01-01
- composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02
@ -1151,6 +1153,7 @@ broken-packages:
- deepseq-magic # failure in job https://hydra.nixos.org/build/233228993 at 2023-09-02
- deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02
- definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02
- defun-bool # failure in job https://hydra.nixos.org/build/245696015 at 2024-01-07
- deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02
- deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02
- Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02
@ -1513,7 +1516,6 @@ broken-packages:
- extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02
- extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02
- extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02
- extensions # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239249292 at 2023-11-10
- external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02
- extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02
- extism-pdk # failure in job https://hydra.nixos.org/build/237239071 at 2023-10-21
@ -2268,6 +2270,7 @@ broken-packages:
- hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02
- hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02
- hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02
- hcount # failure in job https://hydra.nixos.org/build/245788445 at 2024-01-07
- hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02
- hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02
- hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02
@ -2439,7 +2442,6 @@ broken-packages:
- hls-haddock-comments-plugin # failure in job https://hydra.nixos.org/build/233233944 at 2023-09-02
- hls-refine-imports-plugin # failure in job https://hydra.nixos.org/build/233211155 at 2023-09-02
- hls-selection-range-plugin # failure in job https://hydra.nixos.org/build/233205582 at 2023-09-02
- hls-stan-plugin # failure in job https://hydra.nixos.org/build/233246900 at 2023-09-02
- hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02
- hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02
- hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02
@ -2900,7 +2902,6 @@ broken-packages:
- ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02
- iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02
- IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02
- ircbot # failure in job https://hydra.nixos.org/build/233237219 at 2023-09-02
- irc-core # failure in job https://hydra.nixos.org/build/233242138 at 2023-09-02
- irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02
- Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02
@ -3249,6 +3250,7 @@ broken-packages:
- linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02
- linked-list-with-iterator # failure in job https://hydra.nixos.org/build/233220466 at 2023-09-02
- linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02
- linnet # failure in job https://hydra.nixos.org/build/245788523 at 2024-01-07
- linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02
- linode-v4 # failure in job https://hydra.nixos.org/build/233238195 at 2023-09-02
- linux-blkid # failure in job https://hydra.nixos.org/build/233220151 at 2023-09-02
@ -3281,7 +3283,6 @@ broken-packages:
- ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02
- llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02
- llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02
- llvm-ffi # failure in job https://hydra.nixos.org/build/237230725 at 2023-10-21
- llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02
- llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02
- llvm-ht # failure in job https://hydra.nixos.org/build/233203770 at 2023-09-02
@ -3983,6 +3984,7 @@ broken-packages:
- padic # failure in job https://hydra.nixos.org/build/233244747 at 2023-09-02
- pads-haskell # failure in job https://hydra.nixos.org/build/233224030 at 2023-09-02
- pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02
- pagerduty # failure in job https://hydra.nixos.org/build/245788462 at 2024-01-07
- pagerduty-hs # failure in job https://hydra.nixos.org/build/233220387 at 2023-09-02
- pagure-hook-receiver # failure in job https://hydra.nixos.org/build/233245894 at 2023-09-02
- PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02
@ -4680,6 +4682,7 @@ broken-packages:
- resource-effect # failure in job https://hydra.nixos.org/build/233253816 at 2023-09-02
- resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02
- resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02
- resourcet-extra # failure in job https://hydra.nixos.org/build/245696134 at 2024-01-07
- resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02
- restartable # failure in job https://hydra.nixos.org/build/233220815 at 2023-09-02
- restyle # failure in job https://hydra.nixos.org/build/233199043 at 2023-09-02
@ -4742,6 +4745,7 @@ broken-packages:
- rpm # failure in job https://hydra.nixos.org/build/233194513 at 2023-09-02
- rpmostree-update # failure in job https://hydra.nixos.org/build/233254709 at 2023-09-02
- rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02
- rsi-break # failure in job https://hydra.nixos.org/build/245788743 at 2024-01-07
- rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02
- rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02
- rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02
@ -4901,6 +4905,7 @@ broken-packages:
- servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02
- servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02
- servant-kotlin # failure in job https://hydra.nixos.org/build/233598190 at 2023-09-02
- servant-mock # failure in job https://hydra.nixos.org/build/245788431 at 2024-01-07
- servant-namedargs # failure in job https://hydra.nixos.org/build/233258674 at 2023-09-02
- servant-nix # failure in job https://hydra.nixos.org/build/233236159 at 2023-09-02
- servant-pandoc # failure in job https://hydra.nixos.org/build/233203008 at 2023-09-02
@ -4955,6 +4960,7 @@ broken-packages:
- shake-cabal-build # failure in job https://hydra.nixos.org/build/233192322 at 2023-09-02
- shake-dhall # failure in job https://hydra.nixos.org/build/233246191 at 2023-09-02
- shake-extras # failure in job https://hydra.nixos.org/build/233192079 at 2023-09-02
- shake-futhark # failure in job https://hydra.nixos.org/build/245711571 at 2024-01-07
- shake-minify # failure in job https://hydra.nixos.org/build/233251572 at 2023-09-02
- shake-pack # failure in job https://hydra.nixos.org/build/233195211 at 2023-09-02
- shake-path # failure in job https://hydra.nixos.org/build/233247617 at 2023-09-02
@ -5010,6 +5016,7 @@ broken-packages:
- simple-money # failure in job https://hydra.nixos.org/build/233240744 at 2023-09-02
- simple-neural-networks # failure in job https://hydra.nixos.org/build/233226975 at 2023-09-02
- simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02
- simple-pango # failure in job https://hydra.nixos.org/build/245788400 at 2024-01-07
- simple-parser # failure in job https://hydra.nixos.org/build/233218275 at 2023-09-02
- simple-pipe # failure in job https://hydra.nixos.org/build/233251483 at 2023-09-02
- simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02
@ -5196,7 +5203,6 @@ broken-packages:
- staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02
- standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02
- standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02
- stan # failure in job https://hydra.nixos.org/build/233200000 at 2023-09-02
- starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02
- starter # failure in job https://hydra.nixos.org/build/233208799 at 2023-09-02
- starter-snake-haskell # failure in job https://hydra.nixos.org/build/236685019 at 2023-10-04
@ -5835,6 +5841,7 @@ broken-packages:
- uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02
- uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02
- uusi # failure in job https://hydra.nixos.org/build/233201662 at 2023-09-02
- uu-tc-error # failure in job https://hydra.nixos.org/build/245696966 at 2024-01-07
- uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02
- uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02
- vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02
@ -5941,6 +5948,7 @@ broken-packages:
- wai-middleware-preprocessor # failure in job https://hydra.nixos.org/build/233227365 at 2023-09-02
- wai-middleware-static-caching # failure in job https://hydra.nixos.org/build/233208386 at 2023-09-02
- wai-middleware-travisci # failure in job https://hydra.nixos.org/build/233215805 at 2023-09-02
- wai-predicates # failure in job https://hydra.nixos.org/build/245788559 at 2024-01-07
- wai-problem-details # failure in job https://hydra.nixos.org/build/233227727 at 2023-09-02
- wai-rate-limit-postgres # failure in job https://hydra.nixos.org/build/233244097 at 2023-09-02
- wai-rate-limit-redis # failure in job https://hydra.nixos.org/build/233207860 at 2023-09-02

View File

@ -77,8 +77,6 @@ extra-packages:
- crackNum < 3.0 # 2021-05-21: 3.0 removed the lib which sbv 7.13 uses
- dependent-map == 0.2.4.0 # required by Hasura 1.3.1, 2020-08-20
- dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20
- dhall == 1.29.0 # required for ats-pkg
- dhall == 1.38.1 # required for spago
- doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.*
- foundation < 0.0.29 # 2022-08-30: last version to support GHC < 8.10
- ghc-api-compat == 8.10.7 # 2022-02-17: preserve for GHC 8.10.7
@ -128,7 +126,6 @@ extra-packages:
- fourmolu == 0.14.0.0 # 2023-11-13: for ghc-lib-parser 9.6 compat
- ormolu == 0.5.2.0 # 2023-08-08: for hls on ghc 9.0 and 9.2
- ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat
- pantry == 0.5.2.1 # needed for stack-2.7.3
- path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2
- resolv < 0.2 # required to build cabal-install-3.10.1.0 with Stackage LTS 21
- sbv == 7.13 # required for pkgs.petrinizer
@ -521,6 +518,7 @@ package-maintainers:
- latex
- lazyio
- linear-programming
- llvm-ffi
- markov-chain
- midi
- midi-alsa

View File

@ -1,4 +1,4 @@
# Stackage LTS 21.23
# Stackage LTS 21.25
# This file is auto-generated by
# maintainers/scripts/haskell/update-stackage.sh
default-package-overrides:
@ -10,12 +10,12 @@ default-package-overrides:
- ace ==0.6
- acid-state ==0.16.1.3
- action-permutations ==0.0.0.1
- active ==0.2.0.18
- active ==0.2.1
- ad ==4.5.4
- ad-delcont ==0.3.0.0
- adjunctions ==4.4.2
- adler32 ==0.1.2.0
- advent-of-code-api ==0.2.8.4
- advent-of-code-api ==0.2.9.1
- aern2-mp ==0.2.15.1
- aern2-real ==0.2.15
- aeson ==2.1.2.1
@ -31,8 +31,8 @@ default-package-overrides:
- aeson-pretty ==0.8.9
- aeson-qq ==0.8.4
- aeson-schemas ==1.4.1.0
- aeson-typescript ==0.6.0.0
- aeson-value-parser ==0.19.7.1
- aeson-typescript ==0.6.1.0
- aeson-value-parser ==0.19.7.2
- aeson-yak ==0.1.1.3
- aeson-yaml ==1.1.0.1
- agda2lagda ==0.2023.6.9
@ -46,7 +46,7 @@ default-package-overrides:
- Allure ==0.11.0.0
- almost-fix ==0.0.2
- alsa-core ==0.5.0.1
- alsa-mixer ==0.3.0
- alsa-mixer ==0.3.0.1
- alsa-pcm ==0.6.1.1
- alsa-seq ==0.6.0.9
- alternative-vector ==0.0.0
@ -107,13 +107,13 @@ default-package-overrides:
- attoparsec-aeson ==2.1.0.0
- attoparsec-base64 ==0.0.0
- attoparsec-binary ==0.2
- attoparsec-data ==1.0.5.3
- attoparsec-data ==1.0.5.4
- attoparsec-expr ==0.1.1.2
- attoparsec-framer ==0.1.0.1
- attoparsec-iso8601 ==1.1.0.0
- attoparsec-path ==0.0.0.1
- attoparsec-run ==0.0.2.0
- attoparsec-time ==1.0.3
- attoparsec-time ==1.0.3.1
- audacity ==0.0.2.1
- authenticate ==1.3.5.2
- authenticate-oauth ==1.7
@ -182,7 +182,7 @@ default-package-overrides:
- binary-instances ==1.0.4
- binary-list ==1.1.1.2
- binary-orphans ==1.0.4.1
- binary-parser ==0.5.7.4
- binary-parser ==0.5.7.5
- binary-search ==2.0.0
- binary-shared ==0.8.3
- binary-tagged ==0.3.1
@ -231,7 +231,7 @@ default-package-overrides:
- BoundedChan ==1.0.3.0
- bounded-queue ==1.0.0
- boundingboxes ==0.2.3
- box ==0.9.2.0
- box ==0.9.2.1
- boxes ==0.1.5
- breakpoint ==0.1.2.2
- brick ==1.9
@ -260,7 +260,7 @@ default-package-overrides:
- byteorder ==1.0.4
- bytes ==0.17.3
- byteset ==0.1.1.1
- byteslice ==0.2.11.1
- byteslice ==0.2.12.0
- bytesmith ==0.3.10.0
- bytestring-builder ==0.10.8.2.0
- bytestring-lexing ==0.5.0.11
@ -287,7 +287,7 @@ default-package-overrides:
- calendar-recycling ==0.0.0.1
- call-alloy ==0.4.0.3
- calligraphy ==0.1.6
- call-plantuml ==0.0.1.2
- call-plantuml ==0.0.1.3
- call-stack ==0.4.0
- can-i-haz ==0.3.1.1
- capability ==0.5.0.1
@ -311,7 +311,7 @@ default-package-overrides:
- cereal ==0.5.8.3
- cereal-conduit ==0.8.0
- cereal-text ==0.1.0.2
- cereal-unordered-containers ==0.1
- cereal-unordered-containers ==0.1.0.1
- cereal-vector ==0.2.0.1
- cfenv ==0.1.0.0
- cgi ==3001.5.0.1
@ -371,9 +371,9 @@ default-package-overrides:
- comfort-fftw ==0.0.0.1
- comfort-glpk ==0.1
- comfort-graph ==0.0.4
- commonmark ==0.2.4
- commonmark-extensions ==0.2.4
- commonmark-pandoc ==0.2.1.3
- commonmark ==0.2.4.1
- commonmark-extensions ==0.2.5.1
- commonmark-pandoc ==0.2.2
- commutative ==0.0.2
- commutative-semigroups ==0.1.0.1
- comonad ==5.0.8
@ -394,7 +394,7 @@ default-package-overrides:
- concurrent-output ==1.10.20
- concurrent-split ==0.0.1.1
- cond ==0.4.1.1
- conduino ==0.2.2.0
- conduino ==0.2.4.0
- conduit ==1.3.5
- conduit-aeson ==0.1.0.1
- conduit-algorithms ==0.0.13.0
@ -416,7 +416,7 @@ default-package-overrides:
- constraints ==0.13.4
- constraints-extras ==0.4.0.0
- constraint-tuples ==0.1.2
- context ==0.2.0.2
- context ==0.2.0.3
- context-http-client ==0.2.0.2
- context-resource ==0.2.0.2
- context-wai-middleware ==0.2.0.2
@ -546,7 +546,7 @@ default-package-overrides:
- Decimal ==0.5.2
- declarative ==0.5.4
- deepseq-generics ==0.2.0.0
- deferred-folds ==0.9.18.5
- deferred-folds ==0.9.18.6
- dejafu ==2.4.0.5
- dense-linear-algebra ==0.1.0.0
- dependent-map ==0.4.0.0
@ -579,7 +579,7 @@ default-package-overrides:
- di-df1 ==1.2.1
- Diff ==0.4.1
- diff-loc ==0.1.0.0
- digest ==0.0.1.7
- digest ==0.0.2.0
- digits ==0.3.1
- di-handle ==1.0.1
- dimensional ==1.5
@ -613,11 +613,11 @@ default-package-overrides:
- doctest-parallel ==0.3.1
- doldol ==0.4.1.2
- do-list ==1.0.1
- domain ==0.1.1.4
- domain-aeson ==0.1.1.1
- domain-cereal ==0.1
- domain-core ==0.1.0.3
- domain-optics ==0.1.0.3
- domain ==0.1.1.5
- domain-aeson ==0.1.1.2
- domain-cereal ==0.1.0.1
- domain-core ==0.1.0.4
- domain-optics ==0.1.0.4
- do-notation ==0.1.0.2
- dot ==0.3
- dotenv ==0.11.0.2
@ -662,7 +662,7 @@ default-package-overrides:
- elerea ==2.9.0
- elf ==0.31
- eliminators ==0.9.2
- elm2nix ==0.3.0
- elm2nix ==0.3.1
- elm-bridge ==0.8.2
- elm-core-sources ==1.0.0
- elm-export ==0.6.0.1
@ -799,7 +799,7 @@ default-package-overrides:
- foreign-store ==0.2
- ForestStructures ==0.0.1.1
- forkable-monad ==0.2.0.3
- formatn ==0.3.0
- formatn ==0.3.0.1
- format-numbers ==0.1.0.1
- formatting ==7.2.0
- foundation ==0.0.30
@ -963,7 +963,7 @@ default-package-overrides:
- graphql-client ==1.2.2
- graphs ==0.7.2
- graphula ==2.0.2.2
- graphviz ==2999.20.1.0
- graphviz ==2999.20.2.0
- graph-wrapper ==0.2.6.0
- gravatar ==0.8.1
- gridtables ==0.1.0.0
@ -982,7 +982,7 @@ default-package-overrides:
- haddock-library ==1.11.0
- haha ==0.3.1.1
- hakyll ==4.16.2.0
- hal ==1.0.0.1
- hal ==1.0.1
- half ==0.3.1
- hall-symbols ==0.1.0.6
- hamlet ==1.2.0
@ -997,7 +997,7 @@ default-package-overrides:
- happy-meta ==0.2.1.0
- harp ==0.4.3.6
- HasBigDecimal ==0.2.0.0
- hasbolt ==0.1.6.3
- hasbolt ==0.1.7.0
- hashable ==1.4.3.0
- hashing ==0.1.1.0
- hashmap ==1.3.3
@ -1027,7 +1027,7 @@ default-package-overrides:
- hasql-optparse-applicative ==0.7
- hasql-pool ==0.9.0.1
- hasql-queue ==1.2.0.2
- hasql-th ==0.4.0.18
- hasql-th ==0.4.0.19
- hasql-transaction ==1.0.1.2
- has-transformers ==0.1.0.4
- hasty-hamiltonian ==1.3.4
@ -1038,7 +1038,7 @@ default-package-overrides:
- hdaemonize ==0.5.7
- HDBC ==2.4.0.4
- HDBC-session ==0.1.2.1
- headed-megaparsec ==0.2.1.2
- headed-megaparsec ==0.2.1.3
- heap ==1.0.4
- heaps ==0.4
- heatshrink ==0.1.0.0
@ -1208,7 +1208,7 @@ default-package-overrides:
- http-link-header ==1.2.1
- http-media ==0.8.1.1
- http-query ==0.1.3
- http-reverse-proxy ==0.6.0.1
- http-reverse-proxy ==0.6.0.2
- http-streams ==0.8.9.9
- http-types ==0.12.4
- human-readable-duration ==0.2.1.4
@ -1321,7 +1321,7 @@ default-package-overrides:
- IPv6Addr ==2.0.5.1
- ipynb ==0.2
- ipython-kernel ==0.10.3.0
- irc ==0.6.1.0
- irc ==0.6.1.1
- irc-ctcp ==0.1.3.1
- isbn ==1.1.0.4
- islink ==0.1.0.0
@ -1329,7 +1329,7 @@ default-package-overrides:
- iso639 ==0.1.0.3
- iso8601-time ==0.1.5
- isocline ==1.0.9
- isomorphism-class ==0.1.0.11
- isomorphism-class ==0.1.0.12
- iterable ==3.0
- ix-shapable ==0.1.0
- jack ==0.7.2.2
@ -1445,7 +1445,7 @@ default-package-overrides:
- linear-base ==0.3.1
- linear-circuit ==0.1.0.4
- linear-generics ==0.2.1
- linear-programming ==0.0
- linear-programming ==0.0.0.1
- linebreak ==1.1.0.4
- linux-capabilities ==0.1.1.0
- linux-file-extents ==0.2.0.0
@ -1593,7 +1593,7 @@ default-package-overrides:
- monadlist ==0.0.2
- monadloc ==0.7.1
- monad-logger ==0.3.40
- monad-logger-aeson ==0.4.1.1
- monad-logger-aeson ==0.4.1.2
- monad-logger-json ==0.1.0.0
- monad-logger-logstash ==0.2.0.2
- monad-loops ==0.4.3
@ -1709,7 +1709,7 @@ default-package-overrides:
- nonce ==1.0.7
- nondeterminism ==1.5
- non-empty ==0.3.5
- nonempty-containers ==0.3.4.4
- nonempty-containers ==0.3.4.5
- nonemptymap ==0.0.6.0
- non-empty-sequence ==0.2.0.4
- nonempty-vector ==0.2.3
@ -1720,7 +1720,7 @@ default-package-overrides:
- nothunks ==0.1.5
- no-value ==1.0.0.0
- nowdoc ==0.1.1.0
- nqe ==0.6.4
- nqe ==0.6.5
- nsis ==0.3.3
- numbers ==3000.2.0.2
- numeric-extras ==0.1
@ -1742,7 +1742,7 @@ default-package-overrides:
- ofx ==0.4.4.0
- oidc-client ==0.7.0.1
- old-locale ==1.0.0.7
- old-time ==1.1.0.3
- old-time ==1.1.0.4
- once ==0.4
- one-liner ==2.1
- one-liner-instances ==0.1.3.0
@ -1774,7 +1774,7 @@ default-package-overrides:
- optics-operators ==0.1.0.1
- optics-th ==0.4.1
- optics-vl ==0.2.1
- optima ==0.4.0.4
- optima ==0.4.0.5
- optional-args ==1.0.2
- options ==1.2.1.1
- optparse-applicative ==0.17.1.0
@ -1856,13 +1856,13 @@ default-package-overrides:
- persistent-lens ==1.0.0
- persistent-mongoDB ==2.13.0.1
- persistent-mtl ==0.5.0.1
- persistent-mysql ==2.13.1.4
- persistent-mysql ==2.13.1.5
- persistent-pagination ==0.1.1.2
- persistent-postgresql ==2.13.6.1
- persistent-qq ==2.12.0.6
- persistent-redis ==2.13.0.1
- persistent-refs ==0.4
- persistent-sqlite ==2.13.2.0
- persistent-sqlite ==2.13.3.0
- persistent-template ==2.12.0.0
- persistent-test ==2.13.1.3
- persistent-typed-db ==0.1.0.7
@ -1917,14 +1917,14 @@ default-package-overrides:
- posix-pty ==0.2.2
- possibly ==1.0.0.0
- postgres-options ==0.2.1.0
- postgresql-binary ==0.13.1.1
- postgresql-binary ==0.13.1.2
- postgresql-libpq ==0.9.5.0
- postgresql-libpq-notify ==0.2.0.0
- postgresql-migration ==0.2.1.7
- postgresql-schema ==0.1.14
- postgresql-simple ==0.6.5.1
- postgresql-simple-url ==0.2.1.0
- postgresql-syntax ==0.4.1
- postgresql-syntax ==0.4.1.1
- postgresql-typed ==0.6.2.2
- post-mess-age ==0.2.1.0
- pptable ==0.3.0.0
@ -1984,7 +1984,7 @@ default-package-overrides:
- psqueues ==0.2.8.0
- pthread ==0.2.1
- ptr ==0.16.8.5
- ptr-poker ==0.1.2.13
- ptr-poker ==0.1.2.14
- pulse-simple ==0.1.14
- pureMD5 ==2.1.4
- purescript-bridge ==0.15.0.0
@ -2144,7 +2144,7 @@ default-package-overrides:
- s3-signer ==0.5.0.0
- safe ==0.3.19
- safe-coloured-text ==0.2.0.1
- safe-coloured-text-gen ==0.0.0.1
- safe-coloured-text-gen ==0.0.0.2
- safe-coloured-text-layout ==0.0.0.0
- safe-coloured-text-layout-gen ==0.0.0.0
- safe-coloured-text-terminfo ==0.1.0.0
@ -2172,8 +2172,8 @@ default-package-overrides:
- say ==0.1.0.1
- sbp ==4.15.0
- sbv ==10.2
- scalpel ==0.6.2.1
- scalpel-core ==0.6.2.1
- scalpel ==0.6.2.2
- scalpel-core ==0.6.2.2
- scanf ==0.1.0.0
- scanner ==0.3.1
- scheduler ==2.0.0.1
@ -2199,7 +2199,7 @@ default-package-overrides:
- semirings ==0.6
- semiring-simple ==1.0.0.1
- semver ==0.4.0.1
- sendfile ==0.7.11.4
- sendfile ==0.7.11.5
- sendgrid-v3 ==1.0.0.1
- seqalign ==0.2.0.4
- seqid ==0.6.3
@ -2577,7 +2577,7 @@ default-package-overrides:
- these-optics ==1.0.1.2
- these-skinny ==0.7.5
- th-expand-syns ==0.4.11.0
- th-lego ==0.3.0.2
- th-lego ==0.3.0.3
- th-lift ==0.8.4
- th-lift-instances ==0.1.20
- th-nowq ==0.1.0.5
@ -2595,7 +2595,7 @@ default-package-overrides:
- th-utilities ==0.2.5.0
- thyme ==0.4
- tidal ==1.9.4
- tidal-link ==1.0.1
- tidal-link ==1.0.2
- tile ==0.3.0.0
- time-compat ==1.9.6.1
- time-domain ==0.1.0.2
@ -2724,7 +2724,7 @@ default-package-overrides:
- universe-some ==1.2.1
- universum ==1.8.2
- unix-bytestring ==0.4.0
- unix-compat ==0.7
- unix-compat ==0.7.1
- unix-time ==0.4.11
- unjson ==0.15.4
- unliftio ==0.2.25.0
@ -2772,10 +2772,10 @@ default-package-overrides:
- vector-algorithms ==0.9.0.1
- vector-binary-instances ==0.2.5.2
- vector-buffer ==0.4.1
- vector-builder ==0.3.8.4
- vector-builder ==0.3.8.5
- vector-bytes-instances ==0.1.1
- vector-extras ==0.2.8.1
- vector-hashtables ==0.1.1.3
- vector-hashtables ==0.1.1.4
- vector-instances ==3.4.2
- vector-mmap ==0.0.3
- vector-rotcev ==0.1.0.2
@ -2796,7 +2796,7 @@ default-package-overrides:
- vivid-supercollider ==0.4.1.2
- void ==0.7.3
- vty ==5.38
- wai ==3.2.3
- wai ==3.2.4
- wai-app-static ==3.1.8
- wai-cli ==0.2.3
- wai-conduit ==3.0.0.4
@ -2913,8 +2913,8 @@ default-package-overrides:
- xss-sanitize ==0.3.7.2
- xxhash-ffi ==0.2.0.0
- yaml ==0.11.11.2
- yaml-unscrambler ==0.1.0.17
- Yampa ==0.14.5
- yaml-unscrambler ==0.1.0.18
- Yampa ==0.14.6
- yarn-lock ==0.6.5
- yeshql-core ==4.2.0.0
- yesod ==1.6.2.1

View File

@ -806,6 +806,7 @@ dont-distribute-packages:
- chart-svg
- chart-svg-various
- chart-unit
- chassis
- cheapskate-highlight
- cheapskate-lucid
- cheapskate-terminal
@ -911,7 +912,20 @@ dont-distribute-packages:
- comonad-random
- compaREST
- compact-mutable
- compdoc
- compdoc-dhall-decoder
- complexity
- composite-aeson
- composite-aeson-cofree-list
- composite-aeson-throw
- composite-aeson-writeonly
- composite-binary
- composite-hashable
- composite-ix
- composite-lens-extra
- composite-tuple
- composite-xml
- composite-xstep
- comprehensions-ghc
- computational-algebra
- concraft
@ -1071,6 +1085,7 @@ dont-distribute-packages:
- definitive-parser
- definitive-reactive
- definitive-sound
- defun
- deka-tests
- delaunay
- delicious
@ -1983,7 +1998,6 @@ dont-distribute-packages:
- hcg-minus-cairo
- hcheat
- hcheckers
- hcount
- hcube
- hdbi
- hdbi-conduit
@ -2161,6 +2175,7 @@ dont-distribute-packages:
- hslogstash
- hsparql
- hspec-expectations-pretty
- hspec-formatter-github
- hspec-pg-transact
- hspec-setup
- hspec-shouldbe
@ -2242,6 +2257,7 @@ dont-distribute-packages:
- hyena
- hylotab
- hyloutils
- hyperbole
- hyperpublic
- i
- iException
@ -2529,7 +2545,6 @@ dont-distribute-packages:
- linearscan-hoopl
- linkchk
- linkcore
- linnet
- linnet-aeson
- linnet-conduit
- linux-ptrace
@ -2715,6 +2730,8 @@ dont-distribute-packages:
- modular-prelude-classy
- modularity
- modulo
- moffy-samples-gtk4
- moffy-samples-gtk4-run
- mole
- monad-exception
- monad-http
@ -2745,7 +2762,6 @@ dont-distribute-packages:
- mpretty
- mprover
- mps
- mptcp
- mptcp-pm
- mptcpanalyzer
- msgpack-aeson
@ -2947,7 +2963,6 @@ dont-distribute-packages:
- overload
- package-o-tron
- padKONTROL
- pagerduty
- pairing
- panda
- pandoc-highlighting-extensions
@ -3229,7 +3244,6 @@ dont-distribute-packages:
- quiver-interleave
- quiver-sort
- qux
- rabocsv2qif
- rail-compiler-editor
- rails-session
- rainbow-tests
@ -3281,7 +3295,6 @@ dont-distribute-packages:
- redHandlers
- reddit
- redis-io
- redis-resp
- rediscaching-haxl
- reduce-equations
- refh
@ -3524,6 +3537,7 @@ dont-distribute-packages:
- serpentine
- serv
- serv-wai
- servant-aeson-generics-typescript
- servant-auth-hmac
- servant-auth-token
- servant-auth-token-acid
@ -3540,7 +3554,6 @@ dont-distribute-packages:
- servant-haxl-client
- servant-http2-client
- servant-matrix-param
- servant-mock
- servant-oauth2
- servant-oauth2-examples
- servant-openapi3
@ -3596,12 +3609,10 @@ dont-distribute-packages:
- silvi
- simgi
- simple-c-value
- simple-cairo
- simple-firewire
- simple-log-syslog
- simple-logging
- simple-nix
- simple-pango
- simple-pascal
- simple-postgresql-orm
- simpleirc-lens
@ -4127,7 +4138,6 @@ dont-distribute-packages:
- wai-middleware-route
- wai-middleware-validation
- wai-middleware-verbs
- wai-predicates
- wai-route
- wai-routing
- wai-session-alt
@ -4157,7 +4167,6 @@ dont-distribute-packages:
- webcrank-wai
- webdriver-w3c
- webgear-openapi
- webgear-server
- webify
- webserver
- websockets-rpc

View File

@ -114,6 +114,7 @@ self: super: builtins.intersectAttrs super {
}))
super)
hls-brittany-plugin
hls-stan-plugin
hls-floskell-plugin
hls-fourmolu-plugin
hls-overloaded-record-dot-plugin
@ -328,6 +329,11 @@ self: super: builtins.intersectAttrs super {
# Heist's test suite requires system pandoc
heist = addTestToolDepend pkgs.pandoc super.heist;
# Use Nixpkgs' double-conversion library
double-conversion = disableCabalFlag "embedded_double_conversion" (
addBuildDepends [ pkgs.double-conversion ] super.double-conversion
);
# https://github.com/NixOS/cabal2nix/issues/136 and https://github.com/NixOS/cabal2nix/issues/216
gio = lib.pipe super.gio
[ (disableHardening ["fortify"])
@ -422,7 +428,7 @@ self: super: builtins.intersectAttrs super {
hasql-interpolate = dontCheck super.hasql-interpolate;
hasql-notifications = dontCheck super.hasql-notifications;
hasql-pool = dontCheck super.hasql-pool;
hasql-pool_0_10 = dontCheck super.hasql-pool_0_10;
hasql-pool_0_10_0_1 = doDistribute (dontCheck super.hasql-pool_0_10_0_1);
hasql-transaction = dontCheck super.hasql-transaction;
# Test suite requires a running postgresql server,
@ -447,9 +453,8 @@ self: super: builtins.intersectAttrs super {
mime-mail = appendConfigureFlag "--ghc-option=-DMIME_MAIL_SENDMAIL_PATH=\"sendmail\"" super.mime-mail;
# Help the test suite find system timezone data.
tz = overrideCabal (drv: {
preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo";
}) super.tz;
tz = addBuildDepends [ pkgs.tzdata ] super.tz;
tzdata = addBuildDepends [ pkgs.tzdata ] super.tzdata;
# https://hydra.nixos.org/build/128665302/nixlog/3
# Disable tests because they require a running dbus session
@ -490,6 +495,17 @@ self: super: builtins.intersectAttrs super {
# requires llvm 9 specifically https://github.com/llvm-hs/llvm-hs/#building-from-source
llvm-hs = super.llvm-hs.override { llvm-config = pkgs.llvm_9; };
# llvm-ffi needs a specific version of LLVM which we hard code here. Since we
# can't use pkg-config (LLVM has no official .pc files), we need to pass the
# `dev` and `lib` output in, or Cabal will have trouble finding the library.
# Since it looks a bit neater having it in a list, we circumvent the singular
# LLVM input here.
llvm-ffi =
addBuildDepends [
pkgs.llvmPackages_16.llvm.lib
pkgs.llvmPackages_16.llvm.dev
] (super.llvm-ffi.override { LLVM = null; });
# Needs help finding LLVM.
spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe;
@ -814,8 +830,9 @@ self: super: builtins.intersectAttrs super {
# Tests require internet
http-download = dontCheck super.http-download;
http-download_0_2_1_0 = doDistribute (dontCheck super.http-download_0_2_1_0);
pantry = dontCheck super.pantry;
pantry_0_5_2_1 = dontCheck super.pantry_0_5_2_1;
pantry_0_9_3_1 = dontCheck super.pantry_0_9_3_1;
# gtk2hs-buildtools is listed in setupHaskellDepends, but we
# need it during the build itself, too.
@ -1199,18 +1216,25 @@ self: super: builtins.intersectAttrs super {
}) super.procex;
# Test suite wants to run main executable
fourmolu = overrideCabal (drv: {
preCheck = drv.preCheck or "" + ''
export PATH="$PWD/dist/build/fourmolu:$PATH"
'';
}) super.fourmolu;
# https://github.com/fourmolu/fourmolu/issues/231
inherit (
let
fourmoluTestFix = overrideCabal (drv: {
preCheck = drv.preCheck or "" + ''
export PATH="$PWD/dist/build/fourmolu:$PATH"
'';
});
in
# Test suite wants to run main executable
fourmolu_0_10_1_0 = overrideCabal (drv: {
preCheck = drv.preCheck or "" + ''
export PATH="$PWD/dist/build/fourmolu:$PATH"
'';
}) super.fourmolu_0_10_1_0;
{
fourmolu = fourmoluTestFix super.fourmolu;
fourmolu_0_14_0_0 = fourmoluTestFix super.fourmolu_0_14_0_0;
fourmolu_0_14_1_0 = fourmoluTestFix super.fourmolu_0_14_1_0;
})
fourmolu
fourmolu_0_14_0_0
fourmolu_0_14_1_0
;
# Test suite needs to execute 'disco' binary
disco = overrideCabal (drv: {

File diff suppressed because it is too large Load Diff

View File

@ -46,11 +46,11 @@
stdenv.mkDerivation rec {
pname = "gvfs";
version = "1.52.1";
version = "1.52.2";
src = fetchurl {
url = "mirror://gnome/sources/gvfs/${lib.versions.majorMinor version}/gvfs-${version}.tar.xz";
hash = "sha256-zb1EQPbQh5Km51ISRMFzhuIL1TfTdRFwmfyPto/pF0E=";
hash = "sha256-pkOs6qBTyqwNjv+aAV9jbkvRuwnP4nhk40fbZ0YOe5E=";
};
patches = [

View File

@ -12,11 +12,11 @@
stdenv.mkDerivation rec {
pname = "libfilezilla";
version = "0.41.0";
version = "0.45.0";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
hash = "sha256-rCodDYKOpgB4fOoefuUNIfDTvZFSzs5hh7ivyQBiKqA=";
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.xz";
hash = "sha256-PBRUvBWG0Xd29ix1BdQ6BtOr0uLjVkLMpHf6IvJ9mC8=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
@ -24,8 +24,8 @@ stdenv.mkDerivation rec {
buildInputs = [ gettext gnutls nettle libxcrypt ]
++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
preBuild = lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11") ''
export MACOSX_DEPLOYMENT_TARGET=10.13 # for futimens()
preBuild = lib.optionalString (stdenv.isDarwin) ''
export MACOSX_DEPLOYMENT_TARGET=11.0
'';
enableParallelBuilding = true;
@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
}

View File

@ -11,14 +11,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libxisf";
version = "0.2.10";
version = "0.2.11";
src = fetchFromGitea {
domain = "gitea.nouspiro.space";
owner = "nou";
repo = "libXISF";
rev = "v${finalAttrs.version}";
hash = "sha256-ME0x+1VyfuhJCldwJfjQCtfe9XQk1ptmhv4ghOyNuGA=";
hash = "sha256-wXIbU9/xUyECluL6k1oKS3NBpoC/qjQdW9e485qmlgo=";
};
patches = [

View File

@ -31,14 +31,14 @@
buildPythonPackage rec {
pname = "dbt-core";
version = "1.7.3";
version = "1.7.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-sz5d5tV6OP8TJMq73gYwCas+jizGzGEnywmOddgpSJQ=";
hash = "sha256-+2tmLclBZrY9SDCKvQ4QNbI4665BtsrEI1sBSY3GVGM=";
};
sourceRoot = "${src.name}/core";

View File

@ -13,18 +13,19 @@
, pyyaml
, typing-extensions
, hypothesis
, dbt-postgres
}:
buildPythonPackage rec {
pname = "dbt-semantic-interfaces";
version = "0.4.1";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "dbt-labs";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-nl+V8Rtc5FWHIPUkcQmcaex6zwIdzdmEaim59pG497I=";
hash = "sha256-Q3aKUyXB+HzPCpwbJ66zDv92n04Gb0w7ivWfga3UX3s=";
};
propagatedBuildInputs = [

View File

@ -10,7 +10,7 @@
let
# 0.18.12 was yanked from PyPI, it refers to this issue:
# https://github.com/deschler/django-modeltranslation/issues/701
version = "0.18.11";
version = "0.18.12";
in
buildPythonPackage {
pname = "django-modeltranslation";
@ -19,8 +19,8 @@ buildPythonPackage {
src = fetchFromGitHub {
owner = "deschler";
repo = "django-modeltranslation";
rev = "v${version}";
hash = "sha256-WEtTy449z7Fo9+UmiM+QAuUJ5eQ1RFe1HrIqFrY3L9k=";
rev = "refs/tags/v${version}";
hash = "sha256-6rAAu3Fd4D93rX8kvkcqhykzBu/lDByQ6zpjWq7J8mg=";
};
# Remove all references to pytest-cov

View File

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, mac_alias
, mac-alias
, pytestCheckHook
, pythonOlder
, setuptools
@ -26,7 +26,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
mac_alias
mac-alias
];
nativeCheckInputs = [

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, python
, pythonImportsCheckHook
, makeWrapper
}:
@ -19,7 +18,7 @@ buildPythonPackage rec {
sha256 = "1jc7j790rcqnhbrfj4lhnz3f6768dc55aij840wmx16jylfqpc2n";
};
nativeBuildInputs = [ makeWrapper pythonImportsCheckHook ];
nativeBuildInputs = [ makeWrapper ];
pythonImportsCheck = [ "hjson" ];

View File

@ -9,12 +9,13 @@
}:
buildPythonPackage rec {
pname = "mir_eval";
pname = "mir-eval";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
pname = "mir_eval";
inherit version;
hash = "sha256-4f66pXZsZadUXCoXCyQUkPR6mJhzcLHgZ0JCTF3r5l4=";
};

View File

@ -4,12 +4,13 @@
}:
buildPythonPackage rec {
pname = "sysv_ipc";
pname = "sysv-ipc";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
pname = "sysv_ipc";
inherit version;
sha256 = "0f063cbd36ec232032e425769ebc871f195a7d183b9af32f9901589ea7129ac3";
};

View File

@ -22,7 +22,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "cambalache";
version = "0.12.1";
version = "0.16.0";
format = "other";
@ -32,7 +32,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "jpu";
repo = pname;
rev = version;
sha256 = "sha256-kGCpccWIhaeWrzLlrDI7Vzd0KuAIKxvLrDuSqWtpSLU=";
sha256 = "sha256-Ha94Ca5a7EUBYuSJvMrLc5895Q2/01/tbKpwlHLmTDc=";
};
nativeBuildInputs = [

View File

@ -21,11 +21,7 @@ in stdenv.mkDerivation {
mkdir -p $out/bin
makeWrapper $mueval/bin/mueval $out/bin/mueval \
--prefix PATH ":" "$out/bin"
makeWrapper $mueval/bin/mueval-core $out/bin/mueval \
--set "NIX_GHC_LIBDIR" "${libDir}"
'';
passthru = { inherit defaultPkgs; };

View File

@ -15,7 +15,7 @@ let
buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json);
# the version of infisical
version = "0.16.3";
version = "0.16.7";
# the platform-specific, statically linked binary
src =

View File

@ -1,6 +1,6 @@
{ "_comment": "@generated by pkgs/development/tools/infisical/update.sh"
, "x86_64-linux": "sha256-AxTTTX4rp881dJuNGIF9s09e5yLohTEeM0LHnsQ+/eQ="
, "x86_64-darwin": "sha256-DKZUB84PbueRfwVAUH9z8N4JxNlK+db+fVH4jPIbDtc="
, "aarch64-linux": "sha256-q62a5Ggw0Rikhzn0MY24sSurEPW1/nNehfqVzwBAq/k="
, "aarch64-darwin": "sha256-9961CGekF8N0bVgtNQIxOoWKB2HgUJ3kBek1rSBHJNk="
, "x86_64-linux": "sha256-wN+NoIDl8B/ANxES2XVkQBpTK3zUL+Xh+4BxKlcSkr0="
, "x86_64-darwin": "sha256-ZkIGzcQd+MMJjiHPubLnHcc3H7Qpahs5LyJ+ytrYgfo="
, "aarch64-linux": "sha256-P/AMelaej8D3BlUQBjOxCn8DADkVsU7lBY5dLJ0Wz6I="
, "aarch64-darwin": "sha256-jQkLwY6Sq9cN/ujz4wlzjTBjaIYzZKMh/J/5CMWuRf8="
}

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "kubedock";
version = "0.15.0";
version = "0.15.1";
src = fetchFromGitHub {
owner = "joyrex2001";
repo = "kubedock";
rev = version;
hash = "sha256-UCoQm/lg8QRwsK2riJyHmCLg+Ash8Pg+6Va1RVemdt0=";
hash = "sha256-/uC/blvR6+F5Uyj1Fc5I5eSKucc0w76U0cwWKULfdyU=";
};
vendorHash = "sha256-mkzj+8c1MJgPHohSjSj7OW+xoYvI9Qoj3cXJ1iRDeWc=";
vendorHash = "sha256-rkn6JzPB1UNpaCon6LyYNUAsV88t3xbppDrtBwjBEHk=";
# config.Build not defined as it would break r-ryantm
ldflags = [

View File

@ -1,4 +1,4 @@
{ stdenv, lib, haskellPackages, haskell, removeReferencesTo }:
{ stdenv, lib, haskellPackages, haskell, removeReferencesTo, installShellFiles }:
let
# Since pandoc 3.0 the pandoc binary resides in the pandoc-cli package.
@ -17,7 +17,10 @@ in
configureFlags = drv.configureFlags or [] ++ ["-fembed_data_files"];
buildDepends = drv.buildDepends or [] ++ [haskellPackages.file-embed];
buildTools = (drv.buildTools or []) ++ [ removeReferencesTo ];
buildTools = (drv.buildTools or []) ++ [
removeReferencesTo
installShellFiles
];
# Normally, the static linked executable shouldn't refer to any library or the compiler.
# This is not always the case when the dependency has Paths_* module generated by Cabal,
@ -34,11 +37,13 @@ in
-t ${haskellPackages.warp} \
$out/bin/pandoc
remove-references-to \
-t ${haskellPackages.pandoc_3_1_9} \
-t ${haskellPackages.pandoc_3_1_11} \
$out/bin/pandoc
'' + lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
mkdir -p $out/share/bash-completion/completions
$out/bin/pandoc --bash-completion > $out/share/bash-completion/completions/pandoc
'' + ''
installManPage man/*
'';
}) static).overrideAttrs (drv: {
# These libraries are still referenced, because they generate
@ -48,5 +53,5 @@ in
# lead to a transitive runtime dependency on the whole GHC distribution.
# This should ideally be fixed in haskellPackages (or even Cabal),
# but a minimal pandoc is important enough to patch it manually.
disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_9 ];
disallowedReferences = [ haskellPackages.pandoc-types haskellPackages.warp haskellPackages.pandoc_3_1_11 ];
})

View File

@ -1,16 +1,16 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "protolint";
version = "0.37.1";
version = "0.47.4";
src = fetchFromGitHub {
owner = "yoheimuta";
repo = pname;
rev = "6aa30515838cc0adf7c76a9461f52bdc713f2e9f";
sha256 = "sha256-oKGA5FZpT3E5G7oREGAojdu4Xn8JPd7IYwfueK9QA34=";
rev = "v${version}";
hash = "sha256-OfAkqShUAC84buWhQffvIF5i6maPSWKa9nr5hhUwV6Y=";
};
vendorHash = "sha256-iLQwx3B5n21ZXefWiGBBL9roa9LIFByzB8KXLywhvKs=";
vendorHash = "sha256-62SxRvoN4ejmAczs823jftXUmeI4ozfb6plHYT1JwZ0=";
# Something about the way we run tests causes issues. It doesn't happen
# when using "go test" directly:

View File

@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-watch";
version = "8.4.1";
version = "8.5.1";
src = fetchFromGitHub {
owner = "watchexec";
repo = pname;
rev = "v${version}";
hash = "sha256-7nln9kuEVt8/NQ3BDdezSNfTyYo6qL2P2m5ZhQ7dAI8=";
hash = "sha256-MzwifQsOSJt9wq8bhVAY6HqXP4Zs4+a2GcG79PdAiMY=";
};
cargoHash = "sha256-0D+aM/zap5UDQ+k9c/p+ZfN1OUjDzFRArvcmqEOcBbM=";
cargoHash = "sha256-wyyIZ7i1icvD53hnUM4H/kvxj6K/pVzAAvKKp5LzwTE=";
buildInputs = lib.optionals stdenv.isDarwin [ Foundation Cocoa ];

View File

@ -5,7 +5,7 @@
buildGoModule rec {
pname = "templ";
version = "0.2.501";
version = "0.2.513";
subPackages = [ "cmd/templ" ];
@ -21,7 +21,7 @@ buildGoModule rec {
owner = "a-h";
repo = "templ";
rev = "refs/tags/v${version}";
hash = "sha256-MkSGQZo2Zv6aCVANh2ETXoCXETkp+xk8jWAW4Wj+y2s=";
hash = "sha256-LWvwtAX1KBK33FIyY6alkG0RBXL6Ce4fR0cklQfwaRk=";
};
vendorHash = "sha256-buJArvaaKGRg3yS7BdcVY0ydyi4zah57ABeo+CHkZQU=";

View File

@ -11,13 +11,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "doomretro";
version = "5.1.3";
version = "5.2";
src = fetchFromGitHub {
owner = "bradharding";
repo = "doomretro";
rev = "v${finalAttrs.version}";
hash = "sha256-hwjz9nzhasDIeFlmPIwBNhJjrNfZ8ksttx5A7WSomBQ=";
hash = "sha256-1E3tAt4zOyaof2iBT3S9DfNIgpJj9U0rwGIZpM7cTbA=";
};
nativeBuildInputs = [

View File

@ -11,14 +11,13 @@
, stdenv
, swig
, systemd
, fetchpatch
# ImportError: cannot import name 'mlog' from 'mesonbuild'
, withDocs ? stdenv.hostPlatform.canExecute stdenv.buildPlatform
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libnvme";
version = "1.6";
version = "1.7.1";
outputs = [ "out" ] ++ lib.optionals withDocs [ "man" ];
@ -26,27 +25,9 @@ stdenv.mkDerivation (finalAttrs: {
owner = "linux-nvme";
repo = "libnvme";
rev = "v${finalAttrs.version}";
hash = "sha256-7bvjsmt16/6RycSDKIECtJ4ES7NTaspU6IMpUw0sViA=";
hash = "sha256-hCR/K8bPXj8HthayrnwwGfI+wxpUwcWkcx3S/8h+3m8=";
};
patches = [
# included in next release
(fetchpatch {
url = "https://github.com/linux-nvme/libnvme/commit/ff742e792725c316ba6de0800188bf36751bd1d1.patch";
hash = "sha256-IUjPUBmGQC4oAKFFlBrjonqD2YdyNPC9siK4t/t2slE=";
})
# included in next release
(fetchpatch {
url = "https://github.com/linux-nvme/libnvme/commit/a2b8e52e46cfd888ac5a48d8ce632bd70a5caa93.patch";
hash = "sha256-AVSWraFriErfz7dA2CjU8+ehJtAmuLxBZyBALygmrf0=";
})
# included in next release
(fetchpatch {
url = "https://github.com/linux-nvme/libnvme/commit/68c6ffb11d40a427fc1fd70ac2ac97fd01952913.patch";
hash = "sha256-dvc1sjgCFU31/LornvJ/aRVYtPOsewkas0jS+/AwFuU=";
})
];
postPatch = ''
patchShebangs scripts
'';

View File

@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "nvme-cli";
version = "2.6";
version = "2.7";
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
hash = "sha256-MFyBkwTNOBQdHWj7In1OquRIAsjsd4/DHYfUyFA9YDQ=";
hash = "sha256-qijzXucNE+M8fOEtNaoQYX41HeJOMtg/cJFCUJyS6Ew=";
};
mesonFlags = [
@ -33,8 +33,6 @@ stdenv.mkDerivation rec {
libnvme
json_c
zlib
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform libhugetlbfs) [
libhugetlbfs
];
meta = with lib; {

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "mongodb_exporter";
version = "0.39.0";
version = "0.40.0";
src = fetchFromGitHub {
owner = "percona";
repo = "mongodb_exporter";
rev = "v${version}";
hash = "sha256-QII93sd/Lh+m6S5HtDsOt2BUnqg+X8I24KoU+MAWWQU=";
hash = "sha256-cWXfMi48aF06Prua3n4geG2yP1JzLlHq/xh1HmiJkT4=";
};
vendorHash = "sha256-khNkh2LufCE3KdPYRCALz66X+Q1U+sTIILh4uDzhKiI=";
vendorHash = "sha256-69YBrDAEruWXaAqLfRVtqmZ0pop3r5cusePSV2Q1MXw=";
ldflags = [
"-s"

View File

@ -7,14 +7,14 @@
beamPackages.mixRelease rec {
pname = "pleroma";
version = "2.6.0";
version = "2.6.1";
src = fetchFromGitLab {
domain = "git.pleroma.social";
owner = "pleroma";
repo = "pleroma";
rev = "v${version}";
sha256 = "sha256-VFyFQ3c4EEbQAj3bUgjWbmpCyugcpfz0phgBz0ZUB/Q=";
sha256 = "sha256-VIGlJ5+99l+VSUl7c9jiQf94X/JV0+HFgI8xQ4ZLQ9s=";
};
patches = [

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "syft";
version = "0.99.0";
version = "0.100.0";
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
hash = "sha256-1Fw/1OVSKW+sIfVD4rodtTwu7JUhIsLEvIpYP49SqKQ=";
hash = "sha256-NF+Cjf3EZ9nNi10ckEuL6CnUJZssSuv3cq95QIoj+e8=";
# populate values that require us to use git. By doing this in postFetch we
# can delete .git afterwards and maintain better reproducibility of the src.
leaveDotGit = true;
@ -22,7 +22,7 @@ buildGoModule rec {
};
# hash mismatch with darwin
proxyVendor = true;
vendorHash = "sha256-y6tw/umiEgwdoafa/CTg78naMWvr+DBOtXT/rMs1agQ=";
vendorHash = "sha256-C6I9NGIt++FesC86NgZc2jrPHQvS5Xmgdc/tlvPJzMo=";
nativeBuildInputs = [ installShellFiles ];

View File

@ -21,11 +21,11 @@ let
in
(if withQt then mkDerivation else stdenv.mkDerivation) rec {
pname = "gnuplot";
version = "5.4.10";
version = "6.0.0";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
sha256 = "sha256-l12MHMLEHHztxOMjr/A12Xf+ual/ApbdKopm0Zelsnw=";
sha256 = "sha256-Y1oo8Jk/arDRF54HKtObgTnQf1Ejf4Qdk8bC/0sXWOw=";
};
nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;

View File

@ -6,16 +6,16 @@
buildGoModule rec {
pname = "godns";
version = "3.0.4";
version = "3.0.5";
src = fetchFromGitHub {
owner = "TimothyYe";
repo = "godns";
rev = "refs/tags/v${version}";
hash = "sha256-1eJAGBKyTXcFFB7HKkljYQkkidQ3VicHy5MMwHY6iHU=";
hash = "sha256-pp4dWc9jqBOsriCL0giBJ9S8a6hXRXfLXMBZMX0hCo4=";
};
vendorHash = "sha256-iAU62/0MjzxwuMvIobhIZEqDJUpRqwEabnazH7jBRTE=";
vendorHash = "sha256-PVp09gWk35T0gQoYOPzaVFtrqua0a8cNjPOgfYyu7zg=";
# Some tests require internet access, broken in sandbox
doCheck = false;

View File

@ -77,7 +77,11 @@ in
export QTCOMPOSE=${xorg.libX11}/share/X11/locale
export LIBARCHIVE=${libarchive.lib}/lib/libarchive.so
# Allows `conda activate` to work properly
source ${installationPath}/etc/profile.d/conda.sh
condaSh=${installationPath}/etc/profile.d/conda.sh
if [ ! -f $condaSh ]; then
conda-install
fi
source $condaSh
'';
runScript = "bash -l";

View File

@ -30,7 +30,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "dnf5";
version = "5.1.9";
version = "5.1.10";
outputs = [ "out" "man" ];
@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "rpm-software-management";
repo = "dnf5";
rev = finalAttrs.version;
hash = "sha256-H8zbxNsGkuKIDPwGWfKJEy5gTo2Mm13VKwce+h9NEro=";
hash = "sha256-u+UiiCl67VtIedW4kn3fycafkgBVsFFkWQcN3NXQKl4=";
};
nativeBuildInputs = [

View File

@ -16,14 +16,14 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "home-manager";
version = "unstable-2023-12-31";
version = "unstable-2024-01-05";
src = fetchFromGitHub {
name = "home-manager-source";
owner = "nix-community";
repo = "home-manager";
rev = "2e8634c252890cb38c60ab996af04926537cbc27";
hash = "sha256-oYMwbObpWheGeeNWY1LjO/+omrbAWDNdyzNDxTr2jo8=";
rev = "51e44a13acea71b36245e8bd8c7db53e0a3e61ee";
hash = "sha256-yINKdShHrtjdiJhov+q0s3Y3B830ujRoSbHduUNyKag=";
};
nativeBuildInputs = [

View File

@ -5,17 +5,17 @@
buildGoModule rec {
pname = "cnspec";
version = "9.12.3";
version = "9.13.0";
src = fetchFromGitHub {
owner = "mondoohq";
repo = "cnspec";
rev = "refs/tags/v${version}";
hash = "sha256-wPbUqen1y/+zlv+4giY/0ZVZEfSUYhvJBO1yl3NZMtw=";
hash = "sha256-hGiMdL+SXJ5psrmfM5pvKD01yaD1q3tOOhfGzbcjvuE=";
};
proxyVendor = true;
vendorHash = "sha256-VL7AD3W6gieKhcglsON1pi4vbe+tbw/P22RU5Zfq/2U=";
vendorHash = "sha256-pRFRPUL/Ck4m7JH5ykei3PSXbCFKRii8YyjBLQ5kb9M=";
subPackages = [
"apps/cnspec"

View File

@ -31874,7 +31874,9 @@ with pkgs;
feishu = callPackage ../applications/networking/instant-messengers/feishu { };
filezilla = callPackage ../applications/networking/ftp/filezilla { };
filezilla = darwin.apple_sdk_11_0.callPackage ../applications/networking/ftp/filezilla {
inherit (darwin.apple_sdk_11_0.frameworks) CoreServices Security;
};
fire = darwin.apple_sdk_11_0.callPackage ../applications/audio/fire {
inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit CoreServices DiscRecording CoreAudioKit MetalKit;

View File

@ -255,6 +255,7 @@ mapAliases ({
Markups = markups; # added 2022-02-14
markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10
mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10
mac_alias = mac-alias; # added 2024-01-07
MDP = mdp; # added 2023-02-19
MechanicalSoup = mechanicalsoup; # added 2021-06-01
memcached = python-memcached; # added 2022-05-06
@ -264,6 +265,7 @@ mapAliases ({
manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20
markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19
memory_profiler = memory-profiler; # added 2023-10-09
mir_eval = mir-eval; # added 2024-01-07
mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
mistune_2_0 = mistune; # added 2022-08-12
mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28
@ -455,6 +457,7 @@ mapAliases ({
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
supervise_api = supervise-api; # added 2023-10-11
suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27
sysv_ipc = sysv-ipc; # added 2024-01-07
tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25
tensorflow-build_2 = tensorflow-build; # added 2021-11-25
tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17

View File

@ -6679,7 +6679,7 @@ self: super: with self; {
m3u8 = callPackage ../development/python-modules/m3u8 { };
mac_alias = callPackage ../development/python-modules/mac_alias { };
mac-alias = callPackage ../development/python-modules/mac-alias { };
mac-vendor-lookup = callPackage ../development/python-modules/mac-vendor-lookup { };
@ -7047,7 +7047,7 @@ self: super: with self; {
mip = callPackage ../development/python-modules/mip { };
mir_eval = callPackage ../development/python-modules/mir_eval { };
mir-eval = callPackage ../development/python-modules/mir-eval { };
mirakuru = callPackage ../development/python-modules/mirakuru { };
@ -13940,7 +13940,7 @@ self: super: with self; {
inherit (pkgs) systemd;
};
sysv_ipc = callPackage ../development/python-modules/sysv_ipc { };
sysv-ipc = callPackage ../development/python-modules/sysv-ipc { };
syrupy = callPackage ../development/python-modules/syrupy { };

View File

@ -506,6 +506,8 @@ let
haskell-language-server = lib.subtractLists [
# Support ceased as of 2.3.0.0
compilerNames.ghc8107
# Support ceased as of 2.5.0.0
compilerNames.ghc902
] released;
hoogle = lib.subtractLists [
compilerNames.ghc963