treewide: remove remaining meta = with lib;

This commit is contained in:
Ihar Hrachyshka
2025-12-14 15:16:00 -05:00
parent 0ca80f6253
commit a269d900c4
89 changed files with 181 additions and 179 deletions
@@ -824,12 +824,12 @@ stdenv.mkDerivation (finalAttrs: {
enableParallelBuilding = true;
meta = with lib; {
meta = {
homepage = "https://www.python.org";
changelog =
let
majorMinor = versions.majorMinor version;
dashedVersion = replaceStrings [ "." "a" "b" ] [ "-" "-alpha-" "-beta-" ] version;
majorMinor = lib.versions.majorMinor version;
dashedVersion = lib.replaceStrings [ "." "a" "b" ] [ "-" "-alpha-" "-beta-" ] version;
in
if sourceVersion.suffix == "" then
"https://docs.python.org/release/${version}/whatsnew/changelog.html"