Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2025-11-15 12:07:22 +00:00
committed by GitHub
51 changed files with 664 additions and 755 deletions
+2
View File
@@ -11,6 +11,8 @@
- `spoof` has been removed, as there are many issues upstream with it working on modern OS versions, and it appears to be unmaintained.
- All Log4Shell vulnerability scanners were removed, as they were all unmaintained upstream and are no longer relevant given that the vulnerability has been fixed upstream for several years.
## Other Notable Changes {#sec-nixpkgs-release-26.05-notable-changes}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+18
View File
@@ -184,6 +184,15 @@ in
'';
};
runGarbageCollection = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Whether to automatically run `nix-gc.service` after a successful
system upgrade.
'';
};
};
};
@@ -197,6 +206,12 @@ in
The options 'system.autoUpgrade.channel' and 'system.autoUpgrade.flake' cannot both be set.
'';
}
{
assertion = (cfg.runGarbageCollection -> config.nix.enable);
message = ''
The option 'system.autoUpgrade.runGarbageCollection = true' requires 'nix.enable = true'.
'';
}
];
system.autoUpgrade.flags = (
@@ -218,6 +233,9 @@ in
restartIfChanged = false;
unitConfig.X-StopOnRemoval = false;
unitConfig.OnSuccess = lib.optional (
cfg.runGarbageCollection && config.nix.enable
) "nix-gc.service";
serviceConfig.Type = "oneshot";
+2 -2
View File
@@ -5,7 +5,7 @@
onetbb,
libgit2,
curl,
fmt,
fmt_11,
nlohmann_json,
pkg-config,
}:
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libgit2
fmt
fmt_11
onetbb
nlohmann_json
curl
+4 -4
View File
@@ -21,18 +21,18 @@
rustPlatform.buildRustPackage {
pname = "crosvm";
version = "0-unstable-2025-11-05";
version = "0-unstable-2025-11-13";
src = fetchgit {
url = "https://chromium.googlesource.com/chromiumos/platform/crosvm";
rev = "cc4086ef67b347624ae2dbe3e435824e1ecedffb";
hash = "sha256-wo0opn5oZT0jPno1lLxBkEOullERh0GB95tQSvCBSrs=";
rev = "3d7db6c9fded7a184e279ca9170abfa94fd59e34";
hash = "sha256-sRl0ABggh1u3ctsqA/OSgDKtB1mO6zNHiRKvZ316sOM=";
fetchSubmodules = true;
};
separateDebugInfo = true;
cargoHash = "sha256-P6vFWs9lVn4EkXUVOi+3s/tptAV/J7tH5GBCQv/dwUA=";
cargoHash = "sha256-NeyJLsE/Uvcg/kNzS1SXEBjExKwbjcHkkhT2jSQjxx4=";
nativeBuildInputs = [
pkg-config
+3 -3
View File
@@ -17,18 +17,18 @@ let
in
maven.buildMavenPackage rec {
pname = "cryptomator";
version = "1.17.1";
version = "1.18.0";
src = fetchFromGitHub {
owner = "cryptomator";
repo = "cryptomator";
tag = version;
hash = "sha256-2iWeF2su55yQjiFe8nyqTgqNDZuj2+JpzAx5tQJE1Z0=";
hash = "sha256-UWe9iBgb6eBasHnqfBtOFnZlLF1XCIF0y+ebphYQkQw=";
};
mvnJdk = jdk;
mvnParameters = "-Dmaven.test.skip=true -Plinux";
mvnHash = "sha256-lbyNCuZOYIoznOV+DHuhNFk9ALNQbMMXBrF7y246ktE=";
mvnHash = "sha256-dOpvojr6gVtDFE52eghOVZWGspRLQrTDotOMkVGaG9k=";
preBuild = ''
VERSION=${version}
+11
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
fetchzip,
makeWrapper,
premake5,
@@ -216,6 +217,16 @@ let
sqlite
];
patches = [
# fmt::localtime was deprecated and removed
# Remove when version > 41.0.2
(fetchpatch {
name = "0001-edopro-No-longer-depend-on-fmt-for-localtime.patch";
url = "https://github.com/edo9300/edopro/commit/c40951ba09f8a8b88d1d4b9b15ca9338da01522c.patch";
hash = "sha256-wiZRCwSTp9/G97a+zaYjJgmDrc57/5bSBSYur1dcTfA=";
})
];
# nixpkgs' gcc stack currently appears to not support LTO
# Override where bundled ocgcore get looked up in, so we can supply ours
# (can't use --prebuilt-core or let it build a core on its own without making core updates impossible)
+3 -3
View File
@@ -7,13 +7,13 @@
php.buildComposerProject2 (finalAttrs: {
pname = "kimai";
version = "2.40.0";
version = "2.42.0";
src = fetchFromGitHub {
owner = "kimai";
repo = "kimai";
tag = finalAttrs.version;
hash = "sha256-/962VDi/50PMfSjMtJtlR9uIbJSzkF7kSQiRzb6o+SI=";
hash = "sha256-5CPNUneOHbKxI/7/ARRt2hDKGmpvtmJwBAWdblCNmCQ=";
};
php = php.buildEnv {
@@ -38,7 +38,7 @@ php.buildComposerProject2 (finalAttrs: {
'';
};
vendorHash = "sha256-I4v4WkPGLc8vBPjCiYzPxcLn4rH3HWtQXSqwGVKXeGg=";
vendorHash = "sha256-z0bSqSCSPF61x+zCbIVxRJ4SsxWaqL5yrK6+E8cxgiI=";
composerNoPlugins = false;
+7 -5
View File
@@ -8,7 +8,7 @@
blueprint-compiler,
gtk4,
libadwaita,
libnotify,
libglycin,
webkitgtk_6_0,
meson,
ninja,
@@ -23,7 +23,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "komikku";
version = "1.87.0";
version = "1.92.0";
pyproject = false;
src = fetchFromGitea {
@@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "valos";
repo = "Komikku";
tag = "v${version}";
hash = "sha256-mFHoQtZJlo412g0ElvpNdLN+Ni2Mr882VC7lvV+EVTs=";
hash = "sha256-eNKNVS8uSzDdXM13dQoSPy88u55RMDCh/Do3wCkscxI=";
};
nativeBuildInputs = [
@@ -50,23 +50,25 @@ python3.pkgs.buildPythonApplication rec {
glib
gtk4
libadwaita
libnotify
libglycin
webkitgtk_6_0
];
dependencies = with python3.pkgs; [
beautifulsoup4
brotli
colorthief
dateparser
emoji
keyring
lxml
modern-colorthief
natsort
piexif
pillow
curl-cffi
pygobject3
pyjwt
pypdf
python-magic
rarfile
requests
@@ -7,13 +7,13 @@
buildNpmPackage rec {
pname = "lasuite-meet-frontend";
version = "0.1.41";
version = "0.1.42";
src = fetchFromGitHub {
owner = "suitenumerique";
repo = "meet";
tag = "v${version}";
hash = "sha256-QAzkRbAxtHa7Py4DDSc2/QHHyFHp+e+/uGmGzUPtFPI=";
hash = "sha256-STb4JCEoKgzokIA5mWFqJkFH9mtdnIp8NcopLWYSbwQ=";
};
sourceRoot = "source/src/frontend";
@@ -21,7 +21,7 @@ buildNpmPackage rec {
npmDeps = fetchNpmDeps {
inherit version src;
sourceRoot = "source/src/frontend";
hash = "sha256-UJMyOCtjr7e6YaRdIrlL+p3alw4k/MzgqqFreLesAaE=";
hash = "sha256-SfAcGty6fT56eO7K3ZX87PiLiNlthl9UW3uAJmKM+lU=";
};
buildPhase = ''
+2 -2
View File
@@ -13,14 +13,14 @@ in
python.pkgs.buildPythonApplication rec {
pname = "lasuite-meet";
version = "0.1.41";
version = "0.1.42";
pyproject = true;
src = fetchFromGitHub {
owner = "suitenumerique";
repo = "meet";
tag = "v${version}";
hash = "sha256-QAzkRbAxtHa7Py4DDSc2/QHHyFHp+e+/uGmGzUPtFPI=";
hash = "sha256-STb4JCEoKgzokIA5mWFqJkFH9mtdnIp8NcopLWYSbwQ=";
};
sourceRoot = "source/src/backend";
-39
View File
@@ -1,39 +0,0 @@
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication {
pname = "log4j-detect";
version = "0-unstable-2021-12-14";
format = "other";
src = fetchFromGitHub {
owner = "takito1812";
repo = "log4j-detect";
rev = "2f5b7a598a6d0b4aee8111bb574ea72c6a1c76d6";
sha256 = "sha256-fFKW7uPBfrnze0UoPL3Mfwd4sFOuHYuDP7kv6VtdM3o=";
};
propagatedBuildInputs = with python3.pkgs; [
requests
];
postPatch = ''
sed -i "1 i #!/usr/bin/python" log4j-detect.py
'';
installPhase = ''
runHook preInstall
install -vD log4j-detect.py $out/bin/log4j-detect
runHook postInstall
'';
meta = with lib; {
description = "Tool to detect the log4j vulnerability";
homepage = "https://github.com/takito1812/log4j-detect";
license = licenses.unfree;
maintainers = with maintainers; [ fab ];
};
}
-46
View File
@@ -1,46 +0,0 @@
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication {
pname = "log4j-scan";
version = "unstable-2021-12-18";
format = "other";
src = fetchFromGitHub {
owner = "fullhunt";
repo = "log4j-scan";
rev = "070fbd00f0945645bd5e0daa199a554ef3884b95";
sha256 = "sha256-ORSc4KHyAMjuA7QHReDh6SYY5yZRunBBN1+lkCayqL4=";
};
propagatedBuildInputs = with python3.pkgs; [
pycryptodome
requests
termcolor
];
postPatch = ''
substituteInPlace log4j-scan.py \
--replace "headers.txt" "../share/headers.txt"
'';
installPhase = ''
runHook preInstall
install -vD log4j-scan.py $out/bin/log4j-scan
install -vD headers.txt headers-large.txt -t $out/share
runHook postInstall
'';
meta = with lib; {
description = "Scanner for finding hosts which are vulnerable for log4j";
mainProgram = "log4j-scan";
homepage = "https://github.com/fullhunt/log4j-scan";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
-38
View File
@@ -1,38 +0,0 @@
{
lib,
buildGoModule,
fetchFromGitHub,
gitMinimal,
}:
buildGoModule rec {
pname = "log4j-sniffer";
version = "1.9.0";
src = fetchFromGitHub {
owner = "palantir";
repo = "log4j-sniffer";
rev = "v${version}";
sha256 = "sha256-pO6difzNvQvKQtRLyksXmExtQHlnnwyF3iNEmSBgUmU=";
};
vendorHash = null;
nativeCheckInputs = [
gitMinimal
];
preCheck = ''
export HOME=$(mktemp -d);
cd $HOME
git init
'';
meta = with lib; {
description = "Tool that scans archives to check for vulnerable log4j versions";
mainProgram = "log4j-sniffer";
homepage = "https://github.com/palantir/log4j-sniffer";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}
@@ -1,31 +0,0 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "log4j-vuln-scanner";
version = "0.13";
src = fetchFromGitHub {
owner = "hillu";
repo = "local-log4j-vuln-scanner";
rev = "v${version}";
sha256 = "sha256-YMD2233EdrrF1SLjwiRcNr53b7Rf5Tu8CZC43QhSY7c=";
};
vendorHash = null;
postInstall = ''
mv $out/bin/scanner $out/bin/$pname
mv $out/bin/patcher $out/bin/log4j-vuln-patcher
'';
meta = with lib; {
description = "Local log4j vulnerability scanner";
homepage = "https://github.com/hillu/local-log4j-vuln-scanner";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}
-36
View File
@@ -1,36 +0,0 @@
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication {
pname = "log4jcheck";
version = "0-unstable-2021-12-14";
format = "other";
src = fetchFromGitHub {
owner = "NorthwaveSecurity";
repo = "log4jcheck";
rev = "736f1f4044e8a9b7bf5db515e2d1b819253f0f6d";
sha256 = "sha256-1al7EMYbE/hFXKV4mYZlkEWTUIKYxgXYU3qBLlczYvs=";
};
propagatedBuildInputs = with python3.pkgs; [
requests
];
installPhase = ''
runHook preInstall
install -vD nw_log4jcheck.py $out/bin/log4jcheck
runHook postInstall
'';
meta = with lib; {
description = "Tool to check for vulnerable Log4j (CVE-2021-44228) systems";
homepage = "https://github.com/NorthwaveSecurity/log4jcheck";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "log4jcheck";
};
}
@@ -1,46 +0,0 @@
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication {
pname = "log4shell-detector";
version = "0-unstable-2021-12-16";
format = "pyproject";
src = fetchFromGitHub {
owner = "Neo23x0";
repo = "log4shell-detector";
rev = "622b88e7ea36819da23ce6ac090785cd6cca77f9";
sha256 = "sha256-N81x9hq473LfM+bQIQLWizCAsVc/pzyB84PV7/N5jk4=";
};
build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
zstandard
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
installPhase = ''
runHook preInstall
install -vD log4shell-detector.py $out/bin/log4shell-detector
install -vd $out/${python3.sitePackages}/
cp -R Log4ShellDetector $out/${python3.sitePackages}
runHook postInstall
'';
meta = with lib; {
description = "Detector for Log4Shell exploitation attempts";
homepage = "https://github.com/Neo23x0/log4shell-detector";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "log4shell-detector";
};
}
+3 -3
View File
@@ -6,17 +6,17 @@
rustPlatform.buildRustPackage rec {
pname = "mitra";
version = "4.12.0";
version = "4.13.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "silverpill";
repo = "mitra";
rev = "v${version}";
hash = "sha256-cVGOgMK8lQOMB9a7zwl2043uJzw3a+QBDMlnFduSR1U=";
hash = "sha256-GPePSGQ40PaLo6twejaIkksJ2CDfzQ/TYcT+4qojmBY=";
};
cargoHash = "sha256-IdC5T73t3FHCXP6AWeQDcDnmZzhRvN2eyuYrko5F4+8=";
cargoHash = "sha256-KSwfDuyh6Qy2TpjylwrKTMlQI/u3kAJuyX1IVDkuICM=";
# require running database
doCheck = false;
+2 -2
View File
@@ -6,11 +6,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "pv";
version = "1.10.0";
version = "1.10.1";
src = fetchurl {
url = "https://www.ivarch.com/programs/sources/pv-${finalAttrs.version}.tar.gz";
hash = "sha256-mY5xdBnALuc1rqC41X+cvhES9A9LlHo5uiYRpBW2TaA=";
hash = "sha256-INOHlLAPqThKHd+eOVqDV6B4LNlci3TPHfjfY4iVDuw=";
};
meta = {
@@ -1,7 +1,7 @@
{ callPackage, commandLineArgs }:
callPackage ./generic.nix { inherit commandLineArgs; } {
pname = "signal-desktop-bin";
version = "7.77.1";
version = "7.79.0";
libdir = "usr/lib64/signal-desktop";
bindir = "usr/bin";
@@ -10,6 +10,6 @@ callPackage ./generic.nix { inherit commandLineArgs; } {
bsdtar -xf $downloadedFile -C "$out"
'';
url = "https://download.copr.fedorainfracloud.org/results/useidel/signal-desktop/fedora-42-aarch64/09751999-signal-desktop/signal-desktop-7.77.1-1.fc42.aarch64.rpm";
hash = "sha256-IkAJxq3JK3kKdtLy1lkVUfJNuEStMjn7iQEwsFurwOs=";
url = "https://download.copr.fedorainfracloud.org/results/useidel/signal-desktop/fedora-42-aarch64/09795013-signal-desktop/signal-desktop-7.79.0-1.fc42.aarch64.rpm";
hash = "sha256-1XH9gw5/1n10u9d67EM2Y//6+oywE0ziv2ZXafL+h0Q=";
}
@@ -6,11 +6,11 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "signal-desktop-bin";
version = "7.77.1";
version = "7.79.0";
src = fetchurl {
url = "https://updates.signal.org/desktop/signal-desktop-mac-universal-${finalAttrs.version}.dmg";
hash = "sha256-vnNR5KTdeTKUMlHnjfB+WkBtpcLP+KEmIPoTfk7Q1+w=";
hash = "sha256-gXXVj+63TyOqxVUeva48VBCYP45GTlxyDIBYZ7NDcZ8=";
};
sourceRoot = ".";
@@ -1,12 +1,12 @@
{ callPackage, commandLineArgs }:
callPackage ./generic.nix { inherit commandLineArgs; } rec {
pname = "signal-desktop-bin";
version = "7.77.1";
version = "7.79.0";
libdir = "opt/Signal";
bindir = libdir;
extractPkg = "dpkg-deb -x $downloadedFile $out";
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb";
hash = "sha256-57sm6wmtp0eXWCv7LviCiBEi5/IysubiuBYSP7eVkkU=";
hash = "sha256-LhYYJjiPjJAa/5cSe+x5ZnLuy7qx7L2hTh2kcW41vpQ=";
}
+2 -2
View File
@@ -7,7 +7,7 @@
makeDesktopItem,
copyDesktopItems,
autoPatchelfHook,
zulu24,
zulu25,
gtk3,
gsettings-desktop-schemas,
writeScript,
@@ -27,7 +27,7 @@ let
pname = "sparrow";
version = "2.2.3";
openjdk = zulu24.override { enableJavaFX = true; };
openjdk = zulu25.override { enableJavaFX = true; };
sparrowArch =
{
+2 -2
View File
@@ -37,13 +37,13 @@
stdenv.mkDerivation rec {
pname = "tuba";
version = "0.10.1";
version = "0.10.3";
src = fetchFromGitHub {
owner = "GeopJr";
repo = "Tuba";
rev = "v${version}";
hash = "sha256-t1L1TP1G6jr/jjhBYelidobzHSrjupgus19T+cMdj0I=";
hash = "sha256-uMfxHQOjL1bnKAz0MUUEv2IR4aRiR4UhIM5aHPspJDU=";
};
nativeBuildInputs = [
+3 -3
View File
@@ -9,11 +9,11 @@
}:
let
pname = "volanta";
version = "1.13.3";
build = "cdb350c9";
version = "1.14.1";
build = "4f70dc47";
src = fetchurl {
url = "https://cdn.volanta.app/software/volanta-app/${version}-${build}/volanta-${version}.AppImage";
hash = "sha256-0q0ShXqN1xA4+bKOX5jebUV+pDh+BNok5WZLLPrq0ks=";
hash = "sha256-ZZqU3+yKI6gdnX6mdrNnY3JS0mkuas7OncHnAiZumBc=";
};
appImageContents = appimageTools.extract { inherit pname version src; };
in
@@ -0,0 +1,80 @@
diff --git a/Bibata_Ghost/cursors/diamond_cross b/Bibata_Ghost/cursors/diamond_cross
deleted file mode 120000
index f406d83..0000000
--- a/Bibata_Ghost/cursors/diamond_cross
+++ /dev/null
@@ -1 +0,0 @@
-diamond_cross
\ No newline at end of file
diff --git a/Bibata_Ghost/cursors/draft_large b/Bibata_Ghost/cursors/draft_large
index 1ab4059..490f177 120000
--- a/Bibata_Ghost/cursors/draft_large
+++ b/Bibata_Ghost/cursors/draft_large
@@ -1 +1 @@
-daft
\ No newline at end of file
+draft
\ No newline at end of file
diff --git a/Bibata_Ghost/cursors/ew-resize b/Bibata_Ghost/cursors/ew-resize
index c5694de..572e2ca 120000
--- a/Bibata_Ghost/cursors/ew-resize
+++ b/Bibata_Ghost/cursors/ew-resize
@@ -1 +1 @@
-side_hor
\ No newline at end of file
+size-hor
\ No newline at end of file
diff --git a/Bibata_Spirit/cursors/diamond_cross b/Bibata_Spirit/cursors/diamond_cross
deleted file mode 120000
index f406d83..0000000
--- a/Bibata_Spirit/cursors/diamond_cross
+++ /dev/null
@@ -1 +0,0 @@
-diamond_cross
\ No newline at end of file
diff --git a/Bibata_Spirit/cursors/draft_large b/Bibata_Spirit/cursors/draft_large
index 1ab4059..490f177 120000
--- a/Bibata_Spirit/cursors/draft_large
+++ b/Bibata_Spirit/cursors/draft_large
@@ -1 +1 @@
-daft
\ No newline at end of file
+draft
\ No newline at end of file
diff --git a/Bibata_Spirit/cursors/ew-resize b/Bibata_Spirit/cursors/ew-resize
index c5694de..572e2ca 120000
--- a/Bibata_Spirit/cursors/ew-resize
+++ b/Bibata_Spirit/cursors/ew-resize
@@ -1 +1 @@
-side_hor
\ No newline at end of file
+size-hor
\ No newline at end of file
diff --git a/Bibata_Tinted/cursors/diamond_cross b/Bibata_Tinted/cursors/diamond_cross
deleted file mode 120000
index f406d83..0000000
--- a/Bibata_Tinted/cursors/diamond_cross
+++ /dev/null
@@ -1 +0,0 @@
-diamond_cross
\ No newline at end of file
diff --git a/Bibata_Tinted/cursors/draft_large b/Bibata_Tinted/cursors/draft_large
index 1ab4059..490f177 120000
--- a/Bibata_Tinted/cursors/draft_large
+++ b/Bibata_Tinted/cursors/draft_large
@@ -1 +1 @@
-daft
\ No newline at end of file
+draft
\ No newline at end of file
diff --git a/Bibata_Tinted/cursors/ew-resize b/Bibata_Tinted/cursors/ew-resize
index c5694de..572e2ca 120000
--- a/Bibata_Tinted/cursors/ew-resize
+++ b/Bibata_Tinted/cursors/ew-resize
@@ -1 +1 @@
-side_hor
\ No newline at end of file
+size-hor
\ No newline at end of file
--
2.50.1
@@ -15,6 +15,10 @@ stdenvNoCC.mkDerivation rec {
sha256 = "sha256-RroynJfdFpu+Wl9iw9NrAc9wNZsSxWI+heJXUTwEe7s=";
};
patches = [
./0001-fix-broken-symlinks.patch
];
installPhase = ''
install -dm 0755 $out/share/icons
cp -pr Bibata_* $out/share/icons/
-54
View File
@@ -1,54 +0,0 @@
{
callPackage,
enableJavaFX ? false,
...
}@args:
callPackage ./common.nix (
{
# Details from https://www.azul.com/downloads/?version=java-23-lts&package=jdk
# Note that the latest build may differ by platform
dists = {
x86_64-linux = {
zuluVersion = "23.28.85";
jdkVersion = "23.0.0";
hash =
if enableJavaFX then
"sha256-HEQ0lxHsoyHG+ZWIlWsbkqMf/rauARafzWoiElRwekA="
else
"sha256-a1YPqBMaWkoruNFoSckLyx00LCOZNsowlSn2L3XCDJA=";
};
aarch64-linux = {
zuluVersion = "23.28.85";
jdkVersion = "23.0.0";
hash =
if enableJavaFX then
throw "JavaFX is not available for aarch64-linux"
else
"sha256-/i+ch7BMAwMQ1C4e3shp9BHuQ67vVXfmIK1YKs7L24M=";
};
x86_64-darwin = {
zuluVersion = "23.28.85";
jdkVersion = "23.0.0";
hash =
if enableJavaFX then
"sha256-1/YmLWA/men8jMjnhkZVMf2irf6Tc/5x7UECxqKJcL4="
else
"sha256-rEr8M3KF9Z95gV8sHqi5lQD2RJjtssZx8Q8goy6danw=";
};
aarch64-darwin = {
zuluVersion = "23.28.85";
jdkVersion = "23.0.0";
hash =
if enableJavaFX then
"sha256-TumPJoHmvklMlcpF4PFY/Arcdc5fkX5z0xeIuNFxluQ="
else
"sha256-gFvfJL0RQgIOATLTMdfa+fStUCrdHYC3rxy0j5eNVDc=";
};
};
}
// removeAttrs args [ "callPackage" ]
)
-55
View File
@@ -1,55 +0,0 @@
{
callPackage,
enableJavaFX ? false,
...
}@args:
let
# For 24 JDK FX can be different version than regular JDK
zuluVersion = if enableJavaFX then "24.32.13" else "24.32.13";
jdkVersion = "24.0.2";
in
callPackage ./common.nix (
{
# Details from https://www.azul.com/downloads/?version=java-24&package=jdk
# Note that the latest build may differ by platform
dists = {
x86_64-linux = {
inherit zuluVersion jdkVersion;
hash =
if enableJavaFX then
"sha256-6ZCa348yFLoZ70iDjNkN17dl1IWe53HxKMGpMhFuEOE="
else
"sha256-seZl5oZmHJlAFsOR6mFAvX9CEY+WatKIeYbi7W8RO/U=";
};
aarch64-linux = {
inherit zuluVersion jdkVersion;
hash =
if enableJavaFX then
"sha256-pVspe5R5INmEIJNiihDanOwleBklUp7Svj1NwzOe+ws="
else
"sha256-hV19g22QKWngOvNGh4dCaTOzLke6VjdsPCGQiVlyij0=";
};
x86_64-darwin = {
inherit zuluVersion jdkVersion;
hash =
if enableJavaFX then
"sha256-JXsx8GvjPEQO9ZN3p+CraSWeqc0KDIRBado+jz7l2ww="
else
"sha256-UHY+Oy6g98bVk5BTfd/Mx3OT5He9SnWUR0L+LZso3Lo=";
};
aarch64-darwin = {
inherit zuluVersion jdkVersion;
hash =
if enableJavaFX then
"sha256-Z825S6qxHMm3kwHQnu15dihguDOrxlM1lca3wU8lCqk="
else
"sha256-jDHoPG4NpNXVK35yNHe5JBkmaKNAixmmMEE0P9jcfnU=";
};
};
}
// removeAttrs args [ "callPackage" ]
)
+2 -2
View File
@@ -5,14 +5,14 @@
# nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa
rec {
pname = "mesa";
version = "25.2.6";
version = "25.3.0";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mesa";
repo = "mesa";
rev = "mesa-${version}";
hash = "sha256-erfvNR1Yor3k8gVVClyiBJsgyaOv7BMFd1NSgieTY5I=";
hash = "sha256-MviXDRAbCEXM9dIzD94/CM0bjlF4zCJUVE91Xst/uII=";
};
meta = {
+8 -3
View File
@@ -13,6 +13,7 @@
spirv-tools,
intltool,
jdupes,
libdisplay-info,
libdrm,
libgbm,
libglvnd,
@@ -68,6 +69,10 @@
"vc4" # Broadcom VC4 (Raspberry Pi 0-3)
"virgl" # QEMU virtualized GPU (aka VirGL)
"zink" # generic OpenGL over Vulkan, experimental
]
++ lib.optionals stdenv.hostPlatform.is64bit [
"ethosu" # ARM Ethos NPU, does not build on 32-bit
"rocket" # Rockchip NPU, probably horribly broken on 32-bit
],
vulkanDrivers ? [
"amd" # AMD (aka RADV)
@@ -75,7 +80,7 @@
"broadcom" # Broadcom VC5 (Raspberry Pi 4, aka V3D)
"freedreno" # Qualcomm Adreno (all Qualcomm SoCs)
"gfxstream" # Android virtualized GPU
"imagination-experimental" # PowerVR Rogue (currently N/A)
"imagination" # PowerVR Rogue (currently N/A)
"intel_hasvk" # Intel Haswell/Broadwell, "legacy" Vulkan driver (https://www.phoronix.com/news/Intel-HasVK-Drop-Dead-Code)
"intel" # new Intel (aka ANV)
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
@@ -96,6 +101,7 @@
"wayland"
],
vulkanLayers ? [
"anti-lag"
"device-select"
"intel-nullhw"
"overlay"
@@ -144,8 +150,6 @@ stdenv.mkDerivation {
patches = [
./opencl.patch
# https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37027
./gallivm-llvm-21.patch
];
postPatch = ''
@@ -256,6 +260,7 @@ stdenv.mkDerivation {
elfutils
expat
spirv-tools
libdisplay-info
libdrm
libgbm
libglvnd
@@ -1,53 +0,0 @@
From eca19331d94005485de5246cfa87a21621486cd8 Mon Sep 17 00:00:00 2001
From: no92 <no92.mail@gmail.com>
Date: Wed, 27 Aug 2025 16:02:31 +0200
Subject: [PATCH] gallivm: support LLVM 21
LLVM PR#146819 changed the signature of `setObjectLinkingLayerCreator`,
dropping the Triple argument. The PR was first included in the LLVM 21
series, and the new signature is gated behind a version check for that.
`LLVMOrcThreadSafeContextGetContext` was removed in LLVM commit b18e5b6,
and the ORC examples in the LLVM tree seem to just create a context
instead, which we replicate here.
With this commit, mesa successfully builds the llvmpipe gallium driver
on riscv64 with LLVM 21.1.0.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13785
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13852
Reviewed-by: David Heidelberg <david@ixit.cz>
---
src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp
index 3d2b8cf81bc0c..0be69b02b6eef 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp
@@ -340,7 +340,12 @@ LPJit::LPJit() :jit_dylib_count(0) {
.setJITTargetMachineBuilder(std::move(JTMB))
#ifdef USE_JITLINK
.setObjectLinkingLayerCreator(
+#if LLVM_VERSION_MAJOR >= 21
+ /* LLVM 21 removed the Triple argument */
+ [&](ExecutionSession &ES) {
+#else
[&](ExecutionSession &ES, const llvm::Triple &TT) {
+#endif
return std::make_unique<ObjectLinkingLayer>(
ES, ExitOnErr(llvm::jitlink::InProcessMemoryManager::Create()));
})
@@ -552,7 +557,7 @@ init_gallivm_state(struct gallivm_state *gallivm, const char *name,
gallivm->cache = cache;
gallivm->_ts_context = context->ref;
- gallivm->context = LLVMOrcThreadSafeContextGetContext(context->ref);
+ gallivm->context = LLVMContextCreate();
gallivm->module_name = LPJit::get_unique_name(name);
gallivm->module = LLVMModuleCreateWithNameInContext(gallivm->module_name,
--
GitLab
+12 -4
View File
@@ -19,6 +19,14 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-ASgsF5ocNWAiIy2jm6ygpDkggBcEpno6iVNWYkuWcVI=";
};
# greaterThan/lessThan don't handle versions, use versionAtLeast/versionAtMost instead
# Versions are different due to versionAtLeast/-Most using an inclusive limit, while greater-/lessThan use exclusive ones
postPatch = ''
substituteInPlace src/QZXing-components.pri \
--replace-fail 'lessThan(QT_VERSION, 6.2)' 'versionAtMost(QT_VERSION, 6.1)' \
--replace-fail 'greaterThan(QT_VERSION, 6.1)' 'versionAtLeast(QT_VERSION, 6.2)'
'';
# QMake can't find qtmultimedia in buildInputs
strictDeps = false;
@@ -47,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
description = "Qt/QML wrapper library for the ZXing library";
homepage = "https://github.com/ftylitak/qzxing";
license = licenses.asl20;
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.unix;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ OPNA2608 ];
platforms = lib.platforms.unix;
pkgConfigModules = [
"QZXing"
];
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
aiohttp,
yarl,
@@ -22,11 +23,14 @@ buildPythonPackage rec {
hash = "sha256-s4bE8ACFCfpNq+HGEO8fv3VCGPI4OOdR5A7RjY2bTKY=";
};
postPatch = ''
# TypeError: 'Timeout' object does not support the context manager protocol
substituteInPlace directv/directv.py \
--replace-fail "with async_timeout.timeout" "async with async_timeout.timeout"
'';
patches = [
# https://github.com/ctalkington/python-directv/pull/365
(fetchpatch {
name = "replace-async-timeout-with-asyncio.timeout.patch";
url = "https://github.com/ctalkington/python-directv/commit/a161454b09e144de15883d25378fbb13069e241b.patch";
hash = "sha256-jI+ALoQ0EDUQCSQp90SE+e3sGMWLwojNtLevAbgoScc=";
})
];
build-system = [ setuptools ];
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "disposable-email-domains";
version = "0.0.147";
version = "0.0.149";
pyproject = true;
# No tags on GitHub
src = fetchPypi {
pname = "disposable_email_domains";
inherit version;
hash = "sha256-sbMQ9izDOzrQOoYKpSLWO/+W2/3bGMhlyFP34oOff5g=";
hash = "sha256-bgGs6F41rKVAI6qIyNiqOr5hfCs6ardq6WFJtpZxFCc=";
};
build-system = [
@@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "fpdf2";
version = "2.8.4";
version = "2.8.5";
pyproject = true;
src = fetchFromGitHub {
owner = "py-pdf";
repo = "fpdf2";
tag = version;
hash = "sha256-MD1ci80FBX8pVspMPqAX2UaTjymWHReI3lA9J4ZiBio=";
hash = "sha256-LQZ7OMfL+PFxEc7q/dSw+YJoKr+eYEaZF8XCzd7AdBI=";
};
build-system = [ setuptools ];
@@ -4,7 +4,7 @@
backoff,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
fetchpatch,
reverse-geocode,
setuptools-scm,
yarl,
@@ -15,8 +15,6 @@ buildPythonPackage rec {
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Sholofly";
repo = "geocachingapi-python";
@@ -24,6 +22,15 @@ buildPythonPackage rec {
hash = "sha256-zme1jqn3qtoo39zyj4dKxt9M7gypMqJu0bfgY1iYhjs=";
};
patches = [
# https://github.com/Sholofly/geocachingapi-python/pull/25
(fetchpatch {
name = "replace-async-timeout-with-asyncio.timeout.patch";
url = "https://github.com/Sholofly/geocachingapi-python/commit/2ba042bc2a6ebb4a494f71821502df4534eeb1a1.patch";
hash = "sha256-AtjZJ9tnBeOv76fVIiqY45MeYTzcWvXCtbc6DevH8aM=";
})
];
build-system = [ setuptools-scm ];
dependencies = [
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "hcloud";
version = "2.10.0";
version = "2.11.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-EIO8s47temWK/pgm/8Gi2xgQyoOQoi9LjEN4cTjosbo=";
hash = "sha256-8hL+H1PL+J7d2sDnAF7C6wIep4n4K+cJe9dM1wWynys=";
};
build-system = [ setuptools ];
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "plugwise";
version = "1.9.0";
version = "1.10.0";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "plugwise";
repo = "python-plugwise";
tag = "v${version}";
hash = "sha256-OKbzN4IWrXCrn0qUd7hL6Oh2dvO9udxymo7pZXPmqA4=";
hash = "sha256-jLSX9tNJMsjdTzzSkjHpDm4QYWI+Xjw/nlKj33/lTLs=";
};
postPatch = ''
@@ -5,18 +5,16 @@
asynccmd,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyspcwebgw";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.9";
pyproject = true;
src = fetchFromGitHub {
owner = "mbrrg";
@@ -25,9 +23,18 @@ buildPythonPackage rec {
hash = "sha256-gdIrbr25GXaX26B1f7u0NKbqqnAC2tmMFZspzW6I4HI=";
};
nativeBuildInputs = [ poetry-core ];
patches = [
# https://github.com/pyspcwebgw/pyspcwebgw/pull/27
(fetchpatch {
name = "replace-async-timeout-with-asyncio.timeout.patch";
url = "https://github.com/pyspcwebgw/pyspcwebgw/commit/22cacc8db53cf2a244c30c0e62a0dad90fbcb00b.patch";
hash = "sha256-Og0imZts49jwjbz7Yp41UIzwU/lVjKVc/Tp4+vNz32U=";
})
];
propagatedBuildInputs = [
build-system = [ poetry-core ];
dependencies = [
asynccmd
aiohttp
];
@@ -38,8 +45,6 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlags = [ "--asyncio-mode=auto" ];
pythonImportsCheck = [ "pyspcwebgw" ];
meta = with lib; {
@@ -1,8 +1,8 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
fetchpatch,
aiohttp,
netifaces,
pytest-aio,
@@ -14,9 +14,7 @@
buildPythonPackage rec {
pname = "python-izone";
version = "1.2.9";
format = "setuptools";
disabled = pythonOlder "3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "Swamp-Ig";
@@ -25,9 +23,24 @@ buildPythonPackage rec {
hash = "sha256-0rj+tKn2pbFe+nczTMGLwIwmc4jCznGGF4/IMjlEvQg=";
};
nativeBuildInputs = [ setuptools-scm ];
patches = [
# https://github.com/Swamp-Ig/pizone/pull/26
(fetchpatch {
name = "replace-async-timeout-with-asyncio.timeout.patch";
url = "https://github.com/Swamp-Ig/pizone/commit/776a7c5682ecd1b75a0b36dea71c914c25476a77.patch";
hash = "sha256-Cl71BErInSPtFNbPaV7E/LEDZPMuFNGKA8i5e+C3BMA=";
})
];
propagatedBuildInputs = [
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools_scm[toml] >= 4, <6" "setuptools-scm[toml]" \
--replace-fail '"setuptools_scm_git_archive",' ""
'';
build-system = [ setuptools-scm ];
dependencies = [
aiohttp
netifaces
];
@@ -22,13 +22,13 @@
buildPythonPackage rec {
pname = "python-manilaclient";
version = "5.6.0";
version = "5.7.0";
pyproject = true;
src = fetchPypi {
pname = "python_manilaclient";
inherit version;
hash = "sha256-Vw8ei22MEmXOygtwOtKLDIMcb3nBjqONgRrhfSGFuJc=";
hash = "sha256-ozpvEpIR1DdfG8+7RD0NisDfqa109GtMDEVB+H91uAQ=";
};
build-system = [
@@ -5,29 +5,41 @@
backoff,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "tesla-wall-connector";
version = "1.1.0";
format = "pyproject";
disabled = pythonOlder "3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "einarhauks";
repo = "tesla-wall-connector";
rev = version;
tag = version;
hash = "sha256-3jj3LU0xRIC6U5DmitkTNjejvSZJWguTS/TeotOD8oc=";
};
nativeBuildInputs = [ poetry-core ];
patches = [
# https://github.com/einarhauks/tesla-wall-connector/pull/16
(fetchpatch {
name = "replace-async-timeout-with-asyncio.timeout.patch";
url = "https://github.com/einarhauks/tesla-wall-connector/commit/4683738b4d2cccb2be337a383243ab3f7623bf8e.patch";
excludes = [
".github/workflows/python-package.yml"
"poetry.lock"
"pyproject.toml"
];
hash = "sha256-V9Ra7xA5JzBGe8tE8urVJNqCCdBkNmmqUcXo0cswSoY=";
})
];
propagatedBuildInputs = [
build-system = [ poetry-core ];
dependencies = [
aiohttp
backoff
];
@@ -40,10 +52,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "tesla_wall_connector" ];
meta = with lib; {
meta = {
changelog = "https://github.com/einarhauks/tesla-wall-connector/releases/tag/${src.tag}";
description = "Library for communicating with a Tesla Wall Connector";
homepage = "https://github.com/einarhauks/tesla-wall-connector";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
@@ -3,7 +3,6 @@
mkKdeDerivation,
replaceVars,
qtdeclarative,
kauth,
samba,
shadow,
}:
@@ -22,7 +21,6 @@ mkKdeDerivation {
extraBuildInputs = [
qtdeclarative
kauth
];
# We can't actually install samba via PackageKit, so let's not confuse users any more than we have to
-2
View File
@@ -1,7 +1,6 @@
{
mkKdeDerivation,
qtsvg,
kirigami-addons,
pkg-config,
libsodium,
}:
@@ -15,7 +14,6 @@ mkKdeDerivation {
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtsvg
kirigami-addons
libsodium
];
meta.mainProgram = "keysmith";
+14 -19
View File
@@ -1818,6 +1818,7 @@
],
"kdenetwork-filesharing": [
"extra-cmake-modules",
"kauth",
"kcompletion",
"kcoreaddons",
"ki18n",
@@ -2252,6 +2253,7 @@
"kguiaddons",
"ki18n",
"kirigami",
"kirigami-addons",
"kwidgetsaddons",
"kwindowsystem",
"prison",
@@ -2660,7 +2662,6 @@
"ki18n",
"kio",
"libkexiv2",
"phonon",
"plasma-activities",
"plasma-activities-stats",
"qcoro",
@@ -2754,16 +2755,6 @@
"kirigami",
"kirigami-addons"
],
"kiss": [
"extra-cmake-modules",
"kconfig",
"kcoreaddons",
"ki18n",
"kpackage",
"libkscreen",
"plasma-desktop",
"plasma-workspace"
],
"kitemmodels": [
"extra-cmake-modules"
],
@@ -3418,11 +3409,6 @@
"kwindowsystem",
"kxmlgui"
],
"kontainer": [
"extra-cmake-modules",
"ki18n",
"kio"
],
"kontrast": [
"extra-cmake-modules",
"futuresql",
@@ -5579,6 +5565,16 @@
"kirigami-addons",
"kitemmodels"
],
"plasma-setup": [
"extra-cmake-modules",
"kconfig",
"kcoreaddons",
"ki18n",
"kpackage",
"libkscreen",
"plasma-desktop",
"plasma-workspace"
],
"plasma-systemmonitor": [
"attica",
"extra-cmake-modules",
@@ -5698,7 +5694,6 @@
"kstatusnotifieritem",
"ktexteditor",
"ktextwidgets",
"kunitconversion",
"kuserfeedback",
"kwallet",
"kwayland",
@@ -6269,6 +6264,7 @@
],
"systemsettings": [
"extra-cmake-modules",
"kauth",
"kcmutils",
"kcolorscheme",
"kconfig",
@@ -6282,7 +6278,6 @@
"kirigami",
"kitemmodels",
"kitemviews",
"knotifications",
"krunner",
"kservice",
"kwidgetsaddons",
@@ -6515,5 +6510,5 @@
"kwindowsystem"
]
},
"version": "4fa0d47e"
"version": "0bb9fa37"
}
+160 -16
View File
@@ -1103,6 +1103,12 @@
"project_path": "edu/gcompris-data",
"repo_path": "education/gcompris-data"
},
"gcompris-teachers-handbook": {
"description": "Official documentation for the GCompris-teachers tool",
"name": "gcompris-teachers-handbook",
"project_path": "documentation/gcompris-teachers-handbook",
"repo_path": "documentation/gcompris-teachers-handbook"
},
"geonames-data": {
"description": "Cache of geo name exports from geonames.org",
"name": "geonames-data",
@@ -2873,12 +2879,6 @@
"project_path": "base/kirogi",
"repo_path": "utilities/kirogi"
},
"kiss": {
"description": "KDE Initial System Setup",
"name": "kiss",
"project_path": "plasma/kiss",
"repo_path": "plasma/kiss"
},
"kitemmodels": {
"description": "KItemModels",
"name": "kitemmodels",
@@ -3335,12 +3335,6 @@
"project_path": "pim/kontactinterface",
"repo_path": "pim/kontactinterface"
},
"kontainer": {
"description": "Qt DistroBox GUI",
"name": "kontainer",
"project_path": "sysadmin/kontainer",
"repo_path": "system/kontainer"
},
"kontaminuti": {
"description": "Kontaminuti is a simple helper utility to time your activities according to the Pomodoro Technique.",
"name": "kontaminuti",
@@ -3758,8 +3752,8 @@
"krita-marketing": {
"description": "Working together to creating marketing and introduction documents for Krita",
"name": "krita-marketing",
"project_path": "others/krita-marketing",
"repo_path": "unmaintained/krita-marketing"
"project_path": "graphics/krita-marketing",
"repo_path": "graphics/krita-marketing"
},
"krita-pyramidalsharpening": {
"description": "Use a pyramid to reconstruct a sharper image.",
@@ -4451,6 +4445,12 @@
"project_path": "graphics/kxstitch",
"repo_path": "graphics/kxstitch"
},
"l10n-templates": {
"description": "Templates for localization of KDE software",
"name": "l10n-templates",
"project_path": "localization/l10n-templates",
"repo_path": "localization/l10n-templates"
},
"labplot": {
"description": "LabPlot is a FREE, open source and cross-platform Data Visualization and Analysis software accessible to everyone.",
"name": "labplot",
@@ -4823,6 +4823,12 @@
"project_path": "base/mark",
"repo_path": "education/mark"
},
"markdown-gettext": {
"description": "Command Line program to do i18n and l10n for individual Markdown files.",
"name": "markdown-gettext",
"project_path": "sdk/markdown-gettext",
"repo_path": "sdk/markdown-gettext"
},
"markdownpart": {
"description": "KPart for rendering Markdown content",
"name": "markdownpart",
@@ -5009,6 +5015,18 @@
"project_path": "libs/md4qt",
"repo_path": "libraries/md4qt"
},
"mdit-py-hugo": {
"description": "mdit-py-hugo",
"name": "mdit-py-hugo",
"project_path": "sdk/mdit-py-hugo",
"repo_path": "sdk/mdit-py-hugo"
},
"mdit-py-i18n": {
"description": "Markdown i18n and l10n using markdown-it-py",
"name": "mdit-py-i18n",
"project_path": "sdk/mdit-py-i18n",
"repo_path": "sdk/mdit-py-i18n"
},
"melon": {
"description": "Desktop QML file manager",
"name": "melon",
@@ -5789,6 +5807,12 @@
"project_path": "base/plasma-settings",
"repo_path": "plasma-mobile/plasma-settings"
},
"plasma-setup": {
"description": "Plasma first run setup tool",
"name": "plasma-setup",
"project_path": "workspace/plasma-setup",
"repo_path": "plasma/plasma-setup"
},
"plasma-simplemenu": {
"description": "Simplified menu for your Plasma Desktop",
"name": "plasma-simplemenu",
@@ -6452,7 +6476,7 @@
"spectacle": {
"description": "Screenshot capture utility",
"name": "spectacle",
"project_path": "kdeworkspace/spectacle",
"project_path": "workspace/spectacle",
"repo_path": "plasma/spectacle"
},
"sprinter": {
@@ -7380,7 +7404,7 @@
"repo_path": "websites/dot-kde-org"
},
"websites-download-kde-org": {
"description": "MirrorBrain configuration, templates, etc. - download.kde.org",
"description": "MirrorBits templates, etc. for download.kde.org",
"name": "websites-download-kde-org",
"project_path": "websites/download-kde-org",
"repo_path": "websites/download-kde-org"
@@ -7517,6 +7541,12 @@
"project_path": "websites/hugo-bootstrap",
"repo_path": "websites/hugo-bootstrap"
},
"websites-hugo-gettext": {
"description": "Hugo integration with Gettext",
"name": "websites-hugo-gettext",
"project_path": "websites/hugo-gettext",
"repo_path": "websites/hugo-gettext"
},
"websites-hugo-i18n": {
"description": "Tooling to help translate Hugo generated websites with gettext",
"name": "websites-hugo-i18n",
@@ -7787,6 +7817,120 @@
"project_path": "websites/lakademy-kde-org",
"repo_path": "websites/lakademy-kde-org"
},
"websites-libregraphicsmeeting-org-2006": {
"description": "Website for Libre Graphics Meeting 2006",
"name": "websites-libregraphicsmeeting-org-2006",
"project_path": "websites/libregraphicsmeeting-org-2006",
"repo_path": "websites/libregraphicsmeeting-org-2006"
},
"websites-libregraphicsmeeting-org-2007": {
"description": "Website for Libre Graphics Meeting 2007",
"name": "websites-libregraphicsmeeting-org-2007",
"project_path": "websites/libregraphicsmeeting-org-2007",
"repo_path": "websites/libregraphicsmeeting-org-2007"
},
"websites-libregraphicsmeeting-org-2008": {
"description": "Website for Libre Graphics Meeting 2008",
"name": "websites-libregraphicsmeeting-org-2008",
"project_path": "websites/libregraphicsmeeting-org-2008",
"repo_path": "websites/libregraphicsmeeting-org-2008"
},
"websites-libregraphicsmeeting-org-2009": {
"description": "Website for Libre Graphics Meeting 2009",
"name": "websites-libregraphicsmeeting-org-2009",
"project_path": "websites/libregraphicsmeeting-org-2009",
"repo_path": "websites/libregraphicsmeeting-org-2009"
},
"websites-libregraphicsmeeting-org-2010": {
"description": "Website for Libre Graphics Meeting 2010",
"name": "websites-libregraphicsmeeting-org-2010",
"project_path": "websites/libregraphicsmeeting-org-2010",
"repo_path": "websites/libregraphicsmeeting-org-2010"
},
"websites-libregraphicsmeeting-org-2011": {
"description": "Website for Libre Graphics Meeting 2011",
"name": "websites-libregraphicsmeeting-org-2011",
"project_path": "websites/libregraphicsmeeting-org-2011",
"repo_path": "websites/libregraphicsmeeting-org-2011"
},
"websites-libregraphicsmeeting-org-2012": {
"description": "Website for Libre Graphics Meeting 2012",
"name": "websites-libregraphicsmeeting-org-2012",
"project_path": "websites/libregraphicsmeeting-org-2012",
"repo_path": "websites/libregraphicsmeeting-org-2012"
},
"websites-libregraphicsmeeting-org-2013": {
"description": "Website for Libre Graphics Meeting 2013",
"name": "websites-libregraphicsmeeting-org-2013",
"project_path": "websites/libregraphicsmeeting-org-2013",
"repo_path": "websites/libregraphicsmeeting-org-2013"
},
"websites-libregraphicsmeeting-org-2014": {
"description": "Website for Libre Graphics Meeting 2014",
"name": "websites-libregraphicsmeeting-org-2014",
"project_path": "websites/libregraphicsmeeting-org-2014",
"repo_path": "websites/libregraphicsmeeting-org-2014"
},
"websites-libregraphicsmeeting-org-2015": {
"description": "Website for Libre Graphics Meeting 2015",
"name": "websites-libregraphicsmeeting-org-2015",
"project_path": "websites/libregraphicsmeeting-org-2015",
"repo_path": "websites/libregraphicsmeeting-org-2015"
},
"websites-libregraphicsmeeting-org-2016": {
"description": "Website for Libre Graphics Meeting 2016",
"name": "websites-libregraphicsmeeting-org-2016",
"project_path": "websites/libregraphicsmeeting-org-2016",
"repo_path": "websites/libregraphicsmeeting-org-2016"
},
"websites-libregraphicsmeeting-org-2017": {
"description": "Website for Libre Graphics Meeting 2017",
"name": "websites-libregraphicsmeeting-org-2017",
"project_path": "websites/libregraphicsmeeting-org-2017",
"repo_path": "websites/libregraphicsmeeting-org-2017"
},
"websites-libregraphicsmeeting-org-2018": {
"description": "Website for Libre Graphics Meeting 2018",
"name": "websites-libregraphicsmeeting-org-2018",
"project_path": "websites/libregraphicsmeeting-org-2018",
"repo_path": "websites/libregraphicsmeeting-org-2018"
},
"websites-libregraphicsmeeting-org-2019": {
"description": "Website for Libre Graphics Meeting 2019",
"name": "websites-libregraphicsmeeting-org-2019",
"project_path": "websites/libregraphicsmeeting-org-2019",
"repo_path": "websites/libregraphicsmeeting-org-2019"
},
"websites-libregraphicsmeeting-org-2020": {
"description": "Website for Libre Graphics Meeting 2020",
"name": "websites-libregraphicsmeeting-org-2020",
"project_path": "websites/libregraphicsmeeting-org-2020",
"repo_path": "websites/libregraphicsmeeting-org-2020"
},
"websites-libregraphicsmeeting-org-2021": {
"description": "Website for Libre Graphics Meeting 2021",
"name": "websites-libregraphicsmeeting-org-2021",
"project_path": "websites/libregraphicsmeeting-org-2021",
"repo_path": "websites/libregraphicsmeeting-org-2021"
},
"websites-libregraphicsmeeting-org-2024": {
"description": "Website for Libre Graphics Meeting 2024",
"name": "websites-libregraphicsmeeting-org-2024",
"project_path": "websites/libregraphicsmeeting-org-2024",
"repo_path": "websites/libregraphicsmeeting-org-2024"
},
"websites-libregraphicsmeeting-org-2025": {
"description": "Website for Libre Graphics Meeting 2025",
"name": "websites-libregraphicsmeeting-org-2025",
"project_path": "websites/libregraphicsmeeting-org-2025",
"repo_path": "websites/libregraphicsmeeting-org-2025"
},
"websites-libregraphicsmeeting-org-2026": {
"description": "Website for Libre Graphics Meeting 2026",
"name": "websites-libregraphicsmeeting-org-2026",
"project_path": "websites/libregraphicsmeeting-org-2026",
"repo_path": "websites/libregraphicsmeeting-org-2026"
},
"websites-lists-kde-org": {
"description": "Necessary code to redirect from lists.kde.org to appropriate mail archives",
"name": "websites-lists-kde-org",
+216 -216
View File
@@ -1,362 +1,362 @@
{
"attica": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/attica-6.19.0.tar.xz",
"hash": "sha256-MIE++1d/dbh+7E8CMAqQbl85qN0sfnSIlYp//qqu4ag="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/attica-6.20.0.tar.xz",
"hash": "sha256-jvla0nmHYyAs3WWVIbvmTKWOyMpoRl6s5KgXov8uTcQ="
},
"baloo": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/baloo-6.19.0.tar.xz",
"hash": "sha256-rz1dhdTtIpY1ZPpsxVV9SJ8Xy6MNWDCLuoxMk9ToRog="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/baloo-6.20.0.tar.xz",
"hash": "sha256-BqDcJLnK4IxyKK68MhUYUEK1jE/FjvhsiGPld0k9ExQ="
},
"bluez-qt": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/bluez-qt-6.19.0.tar.xz",
"hash": "sha256-JC2gUwckI/4jpnaz1NCvC29bBWYDPC9KqhT94farC6Q="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/bluez-qt-6.20.0.tar.xz",
"hash": "sha256-aWuYVTE7Tqo68Ke67u3baRguVYN1TRopYC+iSZcS7jc="
},
"breeze-icons": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/breeze-icons-6.19.0.tar.xz",
"hash": "sha256-LKyjXEgnH9xkGzKBKemUSK4f2rxEcmKpLkgFMh0iqkw="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/breeze-icons-6.20.0.tar.xz",
"hash": "sha256-CkeyigSghsy1tK+1HWZ3GAAGgZ0NkwJSRyFom/pK0Tw="
},
"extra-cmake-modules": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/extra-cmake-modules-6.19.0.tar.xz",
"hash": "sha256-pPDB2BgfQ+mvS5tEaWx3dgtbydrlvbkh8JC85mTpyoQ="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/extra-cmake-modules-6.20.0.tar.xz",
"hash": "sha256-NxHehXLbXaYY7+PyjMCUyiWhq7C93/xj3O0SxPjKrl8="
},
"frameworkintegration": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/frameworkintegration-6.19.0.tar.xz",
"hash": "sha256-+2vBKzQrZoEb1SgSRI2KZ+H+bg038cZsVBaIUhR+WaQ="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/frameworkintegration-6.20.0.tar.xz",
"hash": "sha256-HuYcksEhQVmHfA4ROpI1hyT5rD7ldxChUDjIXcT9x9g="
},
"kapidox": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kapidox-6.19.0.tar.xz",
"hash": "sha256-fQ6FrtCRz4xyWuT7llxAOolEOiaeU56jySskd/hSjFM="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kapidox-6.20.0.tar.xz",
"hash": "sha256-7K8kuEuSRT7aCCLVrvGOBH5ihI+AsBnDCDLsVygvq9M="
},
"karchive": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/karchive-6.19.0.tar.xz",
"hash": "sha256-lEMy2ALQ4SjOvQh//VC3JtEANHlzwgN8YFHHLVRRKp4="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/karchive-6.20.0.tar.xz",
"hash": "sha256-9qUI1TfSg+KhBuhIqTnpcc3xoFl3mCXkSCYJqpgf+t0="
},
"kauth": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kauth-6.19.0.tar.xz",
"hash": "sha256-+GNjrrf5IjpCm2NW+qh9L9sazeTCdQs3mUMEtck3GqU="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kauth-6.20.0.tar.xz",
"hash": "sha256-qRhFX0LhafpV6WXkB1iMIssYvrVSnasyHUWsr9t71lI="
},
"kbookmarks": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kbookmarks-6.19.0.tar.xz",
"hash": "sha256-ej1/2/5Md4exoZQey/omH9RPp71NgnVnLg0iwqNQQ5A="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kbookmarks-6.20.0.tar.xz",
"hash": "sha256-OWfTkBVecYPdXeAIeqS7EiZJWDMawYofjEBaXtvcGhQ="
},
"kcalendarcore": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcalendarcore-6.19.0.tar.xz",
"hash": "sha256-nmVjbDLNS8jL9mDE3YGwcyGX729ZP2ugr4pheIcItvw="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcalendarcore-6.20.0.tar.xz",
"hash": "sha256-X2ECezRRDQ3i8rFRwnmwAKoX4cNJBv8F4PAIbu0vN4U="
},
"kcmutils": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcmutils-6.19.0.tar.xz",
"hash": "sha256-N2CkbM8ZbMUNDQsA1Ecb7HRo8Ta+V6GQNYvD5Dekj1M="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcmutils-6.20.0.tar.xz",
"hash": "sha256-otcmx7a4/q3f8p3A514cFUZ/AtHr5vjpbzXNhLI+Fu0="
},
"kcodecs": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcodecs-6.19.0.tar.xz",
"hash": "sha256-OmHCaLy8Tzr0FuLPbTCokaxwNUyXV1ifup7g6ulkrtE="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcodecs-6.20.0.tar.xz",
"hash": "sha256-FZILmoWTQbE4MebtSbrO6i5yjHlv3QghKOUfjhJ/86A="
},
"kcolorscheme": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcolorscheme-6.19.0.tar.xz",
"hash": "sha256-wnjPCG1Emdzr06oOYZBxZXjcBuyAxj2V3msMQEV2U/A="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcolorscheme-6.20.0.tar.xz",
"hash": "sha256-FQWsxpsswb6a0yWnCrlmm7jTFvxdYBzPQDK+Ivq4wMI="
},
"kcompletion": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcompletion-6.19.0.tar.xz",
"hash": "sha256-i3HW6Is446rNJZGAW/KtnBK3vwLX+b3kDYr4apBu3UA="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcompletion-6.20.0.tar.xz",
"hash": "sha256-OycAA7Zh24lPUOn5D93dMJw+qXAQ42O8VR91Lbbvzsw="
},
"kconfig": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kconfig-6.19.0.tar.xz",
"hash": "sha256-1P++zQaQgHEiN0kn8Zbra2XzdT8ipqFhCeBKp+mLMus="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kconfig-6.20.0.tar.xz",
"hash": "sha256-2uz0mJr5lYFEE55JGMIs0FtallJ8Udc36ufFdxgWfRU="
},
"kconfigwidgets": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kconfigwidgets-6.19.0.tar.xz",
"hash": "sha256-HXhbaDB8BUphM7jk5GK1afAux624qv4blfSVMbmof3w="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kconfigwidgets-6.20.0.tar.xz",
"hash": "sha256-XF6Nx+mG2Fw2ArilK42JCfkedDPsrYA3CZSRJQ9fTjY="
},
"kcontacts": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcontacts-6.19.0.tar.xz",
"hash": "sha256-ydAy89mIBQ40SbAJ2WHxN/+dgcwSj2O67KzLKnGPWUk="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcontacts-6.20.0.tar.xz",
"hash": "sha256-slPNSGSj89Q0NIXMS/4bA0TM9RNurSraNZ5pM+CSU94="
},
"kcoreaddons": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcoreaddons-6.19.0.tar.xz",
"hash": "sha256-flMza5BpC3C3GvI6sGlkx1yd6+o8182gl40yulhuk5o="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcoreaddons-6.20.0.tar.xz",
"hash": "sha256-wdRVh2Ft9eqjZnoCix9/kJyccjCsQtYtppz7KsRs1QU="
},
"kcrash": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kcrash-6.19.0.tar.xz",
"hash": "sha256-f+sBC3WgfFElsvNq2Jie7NtqXUHeFCxVLXHhzsQxYt0="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kcrash-6.20.0.tar.xz",
"hash": "sha256-H0LpxU6tny2Bs+xerPVatv9N0cOgchxo86s57UbzWXM="
},
"kdav": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdav-6.19.0.tar.xz",
"hash": "sha256-d1O5qH2bWpn/wKjFnpjb1mrK3lcp1a4vCm0/vmbqCpI="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdav-6.20.0.tar.xz",
"hash": "sha256-vRjVo9sBwnetydoy3SCkX8lbKLEfv/U5mEKwUkpJ0IQ="
},
"kdbusaddons": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdbusaddons-6.19.0.tar.xz",
"hash": "sha256-BfSupUzov55i69SHkems66XLxarxlaMs4kl/rCtkqg0="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdbusaddons-6.20.0.tar.xz",
"hash": "sha256-XbL2tyNSOAcCJO6KUiX0H/2zJJ1VioGnwGqOVNZ3Kfc="
},
"kdeclarative": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdeclarative-6.19.0.tar.xz",
"hash": "sha256-DHGpoI9EeyD6Br6DbQWbLNR5HpcuJ52ZRk4t0Nv/epA="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdeclarative-6.20.0.tar.xz",
"hash": "sha256-sBx/oCct0szMlipgbmMyiCW9O4yOwI7jbDzqdfqKMU0="
},
"kded": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kded-6.19.0.tar.xz",
"hash": "sha256-nFoEInv2PzbIeLfmklR2yMgFrL21Q7imwUw13kagvAI="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kded-6.20.0.tar.xz",
"hash": "sha256-HWyVAEjgW56AOM/fhJY9HUuL/F8ybzAedDIReR6an2U="
},
"kdesu": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdesu-6.19.0.tar.xz",
"hash": "sha256-Avku35BqOXsFVU/0vWcc1/WsbCzvVnMlQaLCfMA9IJ8="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdesu-6.20.0.tar.xz",
"hash": "sha256-3iMT9C9XuJafr/Ez8OKyFMW6lokcFhZFEhMPzLXz+4Q="
},
"kdnssd": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdnssd-6.19.0.tar.xz",
"hash": "sha256-mk6eZTxmcLRoFRbOrePSZk1Xf15vAXPXu5u+XdAJwnE="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdnssd-6.20.0.tar.xz",
"hash": "sha256-/GFuf51W/0MEpb3G0E5+915f99hDdRdfCyWkS6ia9go="
},
"kdoctools": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kdoctools-6.19.0.tar.xz",
"hash": "sha256-wgSLKXkkdUD5uiL9fG83LOhpaZw6PoGpevL6L3M8dLw="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kdoctools-6.20.0.tar.xz",
"hash": "sha256-9WU2JVynRVSpwC05X9eMi0oNKhx9ADzmIbMk6In4XA8="
},
"kfilemetadata": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kfilemetadata-6.19.0.tar.xz",
"hash": "sha256-XUZSJYJqBmByNPKaZESIMWftKpIccRXCLjCDQyEVQcE="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kfilemetadata-6.20.0.tar.xz",
"hash": "sha256-MxZQXcgmzt5AnGBizofKF2gBR6dgVEA2wxc5+/dVf5c="
},
"kglobalaccel": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kglobalaccel-6.19.0.tar.xz",
"hash": "sha256-G751AmWDGXZ8BIA56NrCvRe8EgQi2OWO9vIrpjhArkk="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kglobalaccel-6.20.0.tar.xz",
"hash": "sha256-7iq9kd9Hpq5Hj4bmf0Y0h+MAMvPA2M/Xfy1rlWfIbbQ="
},
"kguiaddons": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kguiaddons-6.19.0.tar.xz",
"hash": "sha256-rENBbFunkMiYzTuAbGur5FtB33LsxlpDKMwaUyyooeY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kguiaddons-6.20.0.tar.xz",
"hash": "sha256-M8r1rkbxpiFPVllhgODGzLSvLM4NyuBgrk+3B4JgpHY="
},
"kholidays": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kholidays-6.19.0.tar.xz",
"hash": "sha256-eHYRbcAi/nIilDBc1Y3eU/0hvNZkGIrSas7tY+Vd3IY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kholidays-6.20.0.tar.xz",
"hash": "sha256-spp6J/hfO1M8AgAr1e/Tdf7WQmjomMtA5tN3sNckOGQ="
},
"ki18n": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/ki18n-6.19.0.tar.xz",
"hash": "sha256-YI/yY0zRlzaoCRx1DHGyPbCzP9gegvufxLzOdnEihKY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/ki18n-6.20.0.tar.xz",
"hash": "sha256-8pyAUTevnO5qurQks4D+qWSlmwifkPuQlgHZ/HjfX3M="
},
"kiconthemes": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kiconthemes-6.19.0.tar.xz",
"hash": "sha256-sLZzcbphh0l2qE/v5ZLnhvx/+5xUVDkUq8IKMiQb4uk="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kiconthemes-6.20.0.tar.xz",
"hash": "sha256-YbkGBRzWbbHdJZ7HbQiIXT/nSeDTlHrqdJAh0sllN6U="
},
"kidletime": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kidletime-6.19.0.tar.xz",
"hash": "sha256-34LDhv743JjqWXb/7x2hFTnBkU0ht3POYvRTO1rRb2U="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kidletime-6.20.0.tar.xz",
"hash": "sha256-7LysXgYqJ9MWF0fWv0ndYDKBo3jSbASJFediqxlFQNk="
},
"kimageformats": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kimageformats-6.19.0.tar.xz",
"hash": "sha256-/IJTJqprjBMhlH/1I9PQBu70xl/eQPN5xpANBpZ/rhw="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kimageformats-6.20.0.tar.xz",
"hash": "sha256-vb2R8BuIthvFs+f2AVOui2PV8fKEDp6zGui3M597jXk="
},
"kio": {
"version": "6.19.1",
"url": "mirror://kde/stable/frameworks/6.19/kio-6.19.1.tar.xz",
"hash": "sha256-Lw6nr0yiJwMfDwNBojLRhtQNsAHVu2KH75+kvKEn7j8="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kio-6.20.0.tar.xz",
"hash": "sha256-fmfUcfwQt989dubOhZSAvl1uZ10xZZLnqEGbl/Ab1kk="
},
"kirigami": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kirigami-6.19.0.tar.xz",
"hash": "sha256-jGaF3eVfABzGIbOMYUhtDp4u9/sdUCyl3QSREiKep8w="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kirigami-6.20.0.tar.xz",
"hash": "sha256-tn/qciXM70zv0KnTpUdIMVASkWfEdZVzbqxFeYb3Cdk="
},
"kitemmodels": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kitemmodels-6.19.0.tar.xz",
"hash": "sha256-ludKExANAmasMb/RUnkBY38r9Na8fUakl+bckpG9uY4="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kitemmodels-6.20.0.tar.xz",
"hash": "sha256-RbbNVHj+NfCWanXjzFVKXbhBisfWOHdFoAcPOcr5Iak="
},
"kitemviews": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kitemviews-6.19.0.tar.xz",
"hash": "sha256-1YZVEu7jOZfpe3ZqysyzIja5Pg+BoaeRIGXMfAKz8lI="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kitemviews-6.20.0.tar.xz",
"hash": "sha256-Y/bWR4DT6xv90vL5A2Amos3BY7Z2Fowpwnl1RPmtYwU="
},
"kjobwidgets": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kjobwidgets-6.19.0.tar.xz",
"hash": "sha256-29STbQiZDNdnSWkiqhDor5iu7rofkjOpNwFWTgMurHU="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kjobwidgets-6.20.0.tar.xz",
"hash": "sha256-OTtutrNdaA1Ipcewk1lmi93B7YnU+nC4qKgfsthBzno="
},
"knewstuff": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/knewstuff-6.19.0.tar.xz",
"hash": "sha256-cJD7gvBPpjS6mK0VDIgSPIDBF9Wu2FWWM9gx4chZGv8="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/knewstuff-6.20.0.tar.xz",
"hash": "sha256-SUQ63U8cqs4uZP59y+TPeM1raSvwx3ugEILIJ2Hfork="
},
"knotifications": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/knotifications-6.19.0.tar.xz",
"hash": "sha256-hvJkXyvENEDxGQmb8lqlMp6EV3YahV5L1fCKX3gJsrY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/knotifications-6.20.0.tar.xz",
"hash": "sha256-qubZKOr1JUC2Qr2cfqYpPiwND1NhLl+08KYAFpL4BVo="
},
"knotifyconfig": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/knotifyconfig-6.19.0.tar.xz",
"hash": "sha256-zRkzumhjATnNG/RW8IWzPgw1T9Dx8OTEaCKwnrXFwx8="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/knotifyconfig-6.20.0.tar.xz",
"hash": "sha256-oCGW5Q9I2tCQhlbjJF1YvwOw05EC+pKwVr7n1QuRr6c="
},
"kpackage": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kpackage-6.19.0.tar.xz",
"hash": "sha256-muRBkwlV5eu8o2JDvzJmOLe628dMVvickGwIHAS3AJ0="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kpackage-6.20.0.tar.xz",
"hash": "sha256-YYhBFK9gT4J8S4NjRVHqZJIQUOIzycbV/EALl+QCUp4="
},
"kparts": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kparts-6.19.0.tar.xz",
"hash": "sha256-zdw7ak/Ao/QfpXkZl8nd9MqYhVg5vkZevl0MPO/jUNg="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kparts-6.20.0.tar.xz",
"hash": "sha256-nnHj0gyVJfZlM916WEbw2YLu/ddCW/ut7NaheQjr1wk="
},
"kpeople": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kpeople-6.19.0.tar.xz",
"hash": "sha256-VA/GQ5l8ShxNB+bDxbsrxeEfWtYQLglX+UNCKqki9zE="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kpeople-6.20.0.tar.xz",
"hash": "sha256-cvd1HViefXIEZloa34dRq9vb1uS1gmYsMT7HndsBP7I="
},
"kplotting": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kplotting-6.19.0.tar.xz",
"hash": "sha256-UgM0fVQ5oz0cLDMcWuIfvDKUBKp8AWkrLBxIuVCNgpI="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kplotting-6.20.0.tar.xz",
"hash": "sha256-UM2Jhqz0fpqMDfKxHwaKedJBoT9uQmdxcDqeGI5qpD8="
},
"kpty": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kpty-6.19.0.tar.xz",
"hash": "sha256-eFRMFs7Mfbz/0DNb+UXuyBAxFXhuEVgjVIGsFS9LtAw="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kpty-6.20.0.tar.xz",
"hash": "sha256-ZmbwXxc1IJ2m/K4f0h/5SuZ3LTKwok97hM21biIgKWY="
},
"kquickcharts": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kquickcharts-6.19.0.tar.xz",
"hash": "sha256-UPBHDpYflfq3XLSuiIvdQjm0YvGH1yWkdu8boM5q9DU="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kquickcharts-6.20.0.tar.xz",
"hash": "sha256-lPUs5CwVy33FFM6YaNukHtjwZFuUH/IlbQIid0YwF5I="
},
"krunner": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/krunner-6.19.0.tar.xz",
"hash": "sha256-1ZyhpxQlKb3KKPU53Hs3hPl1vmizbGnQw+aDWWbsMqs="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/krunner-6.20.0.tar.xz",
"hash": "sha256-c1ss8VPtG9IjOJ8ptLYZMZ+7MQBx2sbH6frdoRldOhw="
},
"kservice": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kservice-6.19.0.tar.xz",
"hash": "sha256-gV4IST5ruQ+C6Scmr/eL3PE1ipQpcvx1ES6Zy4QJYb0="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kservice-6.20.0.tar.xz",
"hash": "sha256-wzpbzSzhVOJ175RFkBooE8JJQ+JOryOC0khlcXiSNTw="
},
"kstatusnotifieritem": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kstatusnotifieritem-6.19.0.tar.xz",
"hash": "sha256-XkDLPu6a1WldUEx5BHUiNgHoVpz+X7w3F0gNovNVaUk="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kstatusnotifieritem-6.20.0.tar.xz",
"hash": "sha256-2w7bkosVcISH6orQB9tLzzlJMyaYzHi07XUSi+obL6Y="
},
"ksvg": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/ksvg-6.19.0.tar.xz",
"hash": "sha256-kqLLxGBKPqhtm4rZIa3/k2RhVgF7yPpcdZWO8yS16e8="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/ksvg-6.20.0.tar.xz",
"hash": "sha256-f/Qc8Yr50apIYqUukVHgoZaAmfcdoH2oRU2IDWdpVqg="
},
"ktexteditor": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/ktexteditor-6.19.0.tar.xz",
"hash": "sha256-8jgpEP4y6Sv9B9706PU9WNhXJRlKJEEj2TirDEKoB/E="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/ktexteditor-6.20.0.tar.xz",
"hash": "sha256-P1nRb9cd4lj+Uxtlcg12T6uF0LPPBCMgHJ9mxAQuZMw="
},
"ktexttemplate": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/ktexttemplate-6.19.0.tar.xz",
"hash": "sha256-QIc1OsION2o9zi70m8YviFbrO3kzcH+vYrsxsXnBHIM="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/ktexttemplate-6.20.0.tar.xz",
"hash": "sha256-FRWVkQX87XRoPJGqG7+JM4J5YUwe17F6vpVOARRPTBk="
},
"ktextwidgets": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/ktextwidgets-6.19.0.tar.xz",
"hash": "sha256-2fpJ7pXPAzIdKy2JvWlSc0Mjt1otmDuXcC0UvOSAnxY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/ktextwidgets-6.20.0.tar.xz",
"hash": "sha256-eB5/rVcg3n8xOAssSkWLwodZQESe2RaLSMYNR0tt8iA="
},
"kunitconversion": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kunitconversion-6.19.0.tar.xz",
"hash": "sha256-1PDjnidZbGVQ8/xy+2ew1JZqz9fXAqARoPykILb5s5M="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kunitconversion-6.20.0.tar.xz",
"hash": "sha256-WrTuOFPnew1qaaZkQ3JLCeqmEhq4Nf7UbQkdNeb+qj8="
},
"kuserfeedback": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kuserfeedback-6.19.0.tar.xz",
"hash": "sha256-Z2jnP9IaKQ+Si41XFPYjHKXfinLfYl9DrI96trtxH58="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kuserfeedback-6.20.0.tar.xz",
"hash": "sha256-Y4zU6SE3KE3hhiCUVEFEc5EXOk9nhbqp5rg4VbuoCLQ="
},
"kwallet": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kwallet-6.19.0.tar.xz",
"hash": "sha256-HeSj9gsMFw2NnQR27Y4M/fN/ZxG/TlB6j37EJo6txK0="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kwallet-6.20.0.tar.xz",
"hash": "sha256-tlZa0EGlfTkLNyimWZ/A4zl4TSpNq1mQrORauqUC5B4="
},
"kwidgetsaddons": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kwidgetsaddons-6.19.0.tar.xz",
"hash": "sha256-YiqW9pf4O4zw4qvocLNkivzhAVDL6/tGyzdpt3pphno="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kwidgetsaddons-6.20.0.tar.xz",
"hash": "sha256-OZdLhc3/2MbW4KXAaEknoh4HHB5j18zjiIMx8BaaSDc="
},
"kwindowsystem": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kwindowsystem-6.19.0.tar.xz",
"hash": "sha256-fvhwzGw3/JjkZVwmfNoGmygllkBSTRCI1ENDUIJ+Wdo="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kwindowsystem-6.20.0.tar.xz",
"hash": "sha256-g2vgBd88jPyB2coZnxnja6DfUV1p59iwY0NGVBL29Hc="
},
"kxmlgui": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/kxmlgui-6.19.0.tar.xz",
"hash": "sha256-KcKdxxwWaK7xjc0KjIZXOfXcwuL1zqZr7HXSQIB/2e4="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/kxmlgui-6.20.0.tar.xz",
"hash": "sha256-oW/Tc0ESkU71DtJmahaQXYfmeVS8NoclzLHVsu3I+PE="
},
"modemmanager-qt": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/modemmanager-qt-6.19.0.tar.xz",
"hash": "sha256-NnFIx/fE7Ikjyvy6StDcUAQ0yV25Y3VXBKJSHMbC8NA="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/modemmanager-qt-6.20.0.tar.xz",
"hash": "sha256-GmBrJlMN5NnCcsuXk7Y7JegP56nAth5CI5lFP/Xlynk="
},
"networkmanager-qt": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/networkmanager-qt-6.19.0.tar.xz",
"hash": "sha256-g7oQYAgNwZPGKDdCHhy3llAKuzkxtQWugnXEQGdK/8Q="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/networkmanager-qt-6.20.0.tar.xz",
"hash": "sha256-aFb+yykzq82tCniaF55AVM8kkB3Cn5Q/ADaj4Vz0PoY="
},
"prison": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/prison-6.19.0.tar.xz",
"hash": "sha256-v9Yj+V4AryXsSZZmeQEMQR74eYt8GjHCWEhMMQZ9U1Y="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/prison-6.20.0.tar.xz",
"hash": "sha256-NuxvguzDwGYY1FXMFpirEXVNZC+rPxuFCnzwHOEbPR8="
},
"purpose": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/purpose-6.19.0.tar.xz",
"hash": "sha256-eZ/z5phyQA0vpuXiyR/tZu1r0NepFj78AE7uC/bQk6I="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/purpose-6.20.0.tar.xz",
"hash": "sha256-OjOgaVNPXPzXUeZ7fcN3hfO47J0CfPHXoNQvD/v8mFc="
},
"qqc2-desktop-style": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/qqc2-desktop-style-6.19.0.tar.xz",
"hash": "sha256-aPm5P26LD7okTwItg2fvRzVCK+dG5nUnZKs4h+BfhTU="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/qqc2-desktop-style-6.20.0.tar.xz",
"hash": "sha256-D50V/w3TuXRFYzYIYMux4Tex2biTdiEOcyiqoC7Uq34="
},
"solid": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/solid-6.19.0.tar.xz",
"hash": "sha256-OsmpiyAe7eGuB4KxoyCidVdnK+jTxcgbukRnUXk8o8s="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/solid-6.20.0.tar.xz",
"hash": "sha256-Ayg4GEWhHPz6jBjI1gyd97haB7zXsb02txx+s8w0ktY="
},
"sonnet": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/sonnet-6.19.0.tar.xz",
"hash": "sha256-SxAqNZxdoXloYtvCT7OVwSIIR/BYT6epdOwRjWRKz6A="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/sonnet-6.20.0.tar.xz",
"hash": "sha256-NWzdr3zyqryvhQMUuySPpWoVuChf6nTY86fH5N7CqDo="
},
"syndication": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/syndication-6.19.0.tar.xz",
"hash": "sha256-FhEQdE1bx7mw+GBo2FAY2mEpyMB6pHScmhi963XBcWY="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/syndication-6.20.0.tar.xz",
"hash": "sha256-4reeqVio7f1MnAeQklzEPR9AMexl7lRaYFkQCL4VkkI="
},
"syntax-highlighting": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/syntax-highlighting-6.19.0.tar.xz",
"hash": "sha256-E6cuibrgr5NqLVSwJHPpbepWDv/EsD/UPWnkWCwdvRk="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/syntax-highlighting-6.20.0.tar.xz",
"hash": "sha256-bihio4V8EemnWszG46z8wW9jTuh4WGtNKpe1c/Ur/cA="
},
"threadweaver": {
"version": "6.19.0",
"url": "mirror://kde/stable/frameworks/6.19/threadweaver-6.19.0.tar.xz",
"hash": "sha256-2NTQtuYrBnqM5P7Xrv7tAu1DpD+X8IXbO67fkhAHDaE="
"version": "6.20.0",
"url": "mirror://kde/stable/frameworks/6.20/threadweaver-6.20.0.tar.xz",
"hash": "sha256-kxPyWi6m4kMdNOCwD2ja1ogYScNPHkBRWlOacN1vuxk="
}
}
+2 -2
View File
@@ -9,11 +9,11 @@
}:
mkKdeDerivation rec {
pname = "klevernotes";
version = "1.2.4";
version = "1.2.5";
src = fetchurl {
url = "mirror://kde/stable/klevernotes/${version}/klevernotes-${version}.tar.xz";
hash = "sha256-btnCn9YhA0aIhg6PXYuxsZQa6JeHyIrYwSKvTuqrsj8=";
hash = "sha256-47iWAcW1IMC50ty0dF900rZvswhgoc78uvUlQate1ko=";
};
extraBuildInputs = [
@@ -1,11 +1,7 @@
{
mkKdeDerivation,
kauth,
}:
mkKdeDerivation {
pname = "systemsettings";
extraBuildInputs = [ kauth ];
meta.mainProgram = "systemsettings";
}
+8
View File
@@ -961,6 +961,12 @@ mapAliases {
llvmPackages_16 = throw "llvmPackages_16 has been removed, as it is unmaintained and obsolete"; # Added 2025-08-09
llvmPackages_17 = throw "llvmPackages_17 has been removed, as it is unmaintained and obsolete"; # Added 2025-08-09
loco-cli = throw "'loco-cli' has been renamed to/replaced by 'loco'"; # Converted to throw 2025-10-27
log4j-detect = throw "'log4j-detect' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
log4j-scan = throw "'log4j-scan' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
log4j-sniffer = throw "'log4j-sniffer' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
log4j-vuln-scanner = throw "'log4j-vuln-scanner' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
log4jcheck = throw "'log4jcheck' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
log4shell-detector = throw "'log4shell-detector' has been removed, as it was unmaintained upstream and no longer relevant given that the Log4Shell vulnerability has been fixed."; # Added 2025-11-15
lowPrio = warnAlias "'lowPrio' has been removed from pkgs, use `lib.lowPrio` instead" lib.lowPrio; # Added 2025-10-30
LPCNet = throw "'LPCNet' has been renamed to/replaced by 'lpcnet'"; # Converted to throw 2025-10-27
luci-go = throw "luci-go has been removed since it was unused and failing to build for 5 months"; # Added 2025-08-27
@@ -1689,6 +1695,8 @@ mapAliases {
zotify = throw "zotify has been removed due to lack of upstream maintenance"; # Added 2025-09-26
zq = throw "zq has been replaced by zed"; # Converted to throw 2025-10-26
zsh-git-prompt = throw "zsh-git-prompt was removed as it is unmaintained upstream"; # Added 2025-08-28
zulu23 = throw "Zulu OpenJDK 23 was removed as it has reached its end of life"; # Added 2025-11-14
zulu24 = throw "Zulu OpenJDK 24 was removed as it has reached its end of life"; # Added 2025-11-14
zyn-fusion = throw "'zyn-fusion' has been renamed to/replaced by 'zynaddsubfx'"; # Converted to throw 2025-10-27
# keep-sorted end
}
-4
View File
@@ -5427,16 +5427,12 @@ with pkgs;
zulu11 = callPackage ../development/compilers/zulu/11.nix { };
zulu17 = callPackage ../development/compilers/zulu/17.nix { };
zulu21 = callPackage ../development/compilers/zulu/21.nix { };
zulu23 = callPackage ../development/compilers/zulu/23.nix { };
zulu24 = callPackage ../development/compilers/zulu/24.nix { };
zulu25 = callPackage ../development/compilers/zulu/25.nix { };
})
zulu8
zulu11
zulu17
zulu21
zulu23
zulu24
zulu25
;
zulu = zulu21;