diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index fef6397cb0ed..1a5fafe77b21 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -7215,6 +7215,11 @@ name = "Tom van Dijk"; keys = [ { fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51"; } ]; }; + dtvillafana = { + github = "dtvillafana"; + githubId = 82293276; + name = "David VillafaƱa"; + }; dudeofawesome = { email = "tourist-04.iced@icloud.com"; github = "dudeofawesome"; diff --git a/nixos/modules/services/hardware/auto-cpufreq.nix b/nixos/modules/services/hardware/auto-cpufreq.nix index 7c88b63f604e..71461fc8ff95 100644 --- a/nixos/modules/services/hardware/auto-cpufreq.nix +++ b/nixos/modules/services/hardware/auto-cpufreq.nix @@ -24,6 +24,16 @@ in ''; default = { }; + example = { + charger = { + governor = "performance"; + turbo = "auto"; + }; + battery = { + governor = "powersave"; + turbo = "never"; + }; + }; type = lib.types.submodule { freeformType = format.type; }; }; }; diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix index b979cdd657ba..fe1eacafebbd 100644 --- a/nixos/modules/services/mail/roundcube.nix +++ b/nixos/modules/services/mail/roundcube.nix @@ -10,6 +10,10 @@ let localDB = cfg.database.host == "localhost"; user = cfg.database.username; phpWithPspell = pkgs.php83.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled); + + env = { + ASPELL_CONF = "dict-dir ${pkgs.aspellWithDicts (_: cfg.dicts)}/lib/aspell"; + }; in { options.services.roundcube = { @@ -263,7 +267,7 @@ in "catch_workers_output" = true; }; phpPackage = phpWithPspell; - phpEnv.ASPELL_CONF = "dict-dir ${pkgs.aspellWithDicts (_: cfg.dicts)}/lib/aspell"; + phpEnv = env; }; systemd.services.phpfpm-roundcube.after = [ "roundcube-setup.service" ]; @@ -282,6 +286,8 @@ in after = [ "network-online.target" ]; wantedBy = [ "multi-user.target" ]; + environment = env; + path = [ (if localDB then config.services.postgresql.package else pkgs.postgresql) ]; diff --git a/nixos/tests/caddy.nix b/nixos/tests/caddy.nix index 97658291d4e3..c86ce21c5919 100644 --- a/nixos/tests/caddy.nix +++ b/nixos/tests/caddy.nix @@ -73,7 +73,7 @@ services.caddy = { package = pkgs.caddy.withPlugins { plugins = [ "github.com/caddyserver/replace-response@v0.0.0-20241211194404-3865845790a7" ]; - hash = "sha256-RrB0/qXL0mCvkxKaz8zhj5GWKEtOqItXP2ASYz7VdMU="; + hash = "sha256-P6rYPJeJcKZgH/d29YQrPf68uWWuav2tQq/2+sVT3tg="; }; configFile = pkgs.writeText "Caddyfile" '' { diff --git a/nixos/tests/lomiri-calendar-app.nix b/nixos/tests/lomiri-calendar-app.nix index 726b09eae2aa..39c60fd4602e 100644 --- a/nixos/tests/lomiri-calendar-app.nix +++ b/nixos/tests/lomiri-calendar-app.nix @@ -57,7 +57,7 @@ # Still on main page machine.succeed("xdotool mousemove 500 740 click 1") machine.sleep(2) - machine.wait_for_text(r"(Date|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday|All day|Name|Details|More)") + machine.wait_for_text(r"(Date|January|February|March|April|May|June|July|August|September|October|November|December|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday|All day|Name|Details|More)") machine.screenshot("lomiri-calendar_newevent") # On New Event page diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix index 5b70b7a10e89..72dceba2484d 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix @@ -28,12 +28,12 @@ zlib, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "bitwig-studio"; version = "4.4.10"; src = fetchurl { - url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb"; + url = "https://downloads.bitwig.com/stable/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.deb"; sha256 = "sha256-gtQ1mhXk0AqGidZk5TCzSR58pD1JJoELMBmELtqyb4U="; }; @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { "''${gappsWrapperArgs[@]}" \ --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" \ --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ - --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}" + --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath finalAttrs.buildInputs}" done find $out -type f -executable -name 'jspawnhelper' | \ @@ -127,4 +127,4 @@ stdenv.mkDerivation rec { ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; -} +}) diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix index 44689e616fe0..6bcf62b00943 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix @@ -35,13 +35,13 @@ zlib, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "bitwig-studio-unwrapped"; version = "5.3.13"; src = fetchurl { - name = "bitwig-studio-${version}.deb"; - url = "https://www.bitwig.com/dl/Bitwig%20Studio/${version}/installer_linux/"; + name = "bitwig-studio-${finalAttrs.version}.deb"; + url = "https://www.bitwig.com/dl/Bitwig%20Studio/${finalAttrs.version}/installer_linux/"; hash = "sha256-tx+Dz9fTm4DIobwLa055ZOCMG+tU7vQl11NFnEKMAno="; }; @@ -117,7 +117,7 @@ stdenv.mkDerivation rec { "''${gappsWrapperArgs[@]}" \ --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" \ --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ - --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}" + --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath finalAttrs.buildInputs}" done find $out -type f -executable -name 'jspawnhelper' | \ @@ -143,4 +143,4 @@ stdenv.mkDerivation rec { ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; -} +}) diff --git a/pkgs/applications/audio/codecserver/default.nix b/pkgs/applications/audio/codecserver/default.nix index c39392851d24..ce95575b0fd3 100644 --- a/pkgs/applications/audio/codecserver/default.nix +++ b/pkgs/applications/audio/codecserver/default.nix @@ -8,14 +8,14 @@ protobuf, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "codecserver"; version = "0.2.0"; src = fetchFromGitHub { owner = "jketterl"; repo = "codecserver"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-JzaVBFl3JsFNDm4gy1qOKA9uAjUjNeMiI39l5gfH0aE="; }; @@ -43,4 +43,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; mainProgram = "codecserver"; }; -} +}) diff --git a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix index 7444e5106cb8..e3b474a345a4 100644 --- a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix +++ b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix @@ -12,14 +12,14 @@ gtk3, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "deadbeef-headerbar-gtk3-plugin"; version = "1.2"; src = fetchFromGitHub { owner = "saivert"; repo = "ddb_misc_headerbar_GTK3"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "1v1schvnps7ypjqgcbqi74a45w8r2gbhrawz7filym22h1qr9wn0"; }; @@ -49,4 +49,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.jtojnar ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix b/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix index 4cd945cc3c4e..f23e967d5687 100644 --- a/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix +++ b/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix @@ -9,14 +9,14 @@ libdbusmenu, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "deadbeef-statusnotifier-plugin"; version = "1.6"; src = fetchFromGitHub { owner = "vovochka404"; repo = "deadbeef-statusnotifier-plugin"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-6WEbY59vPNrL3W5GUwFQJimmSS+td8Ob+G46fPAxfV4="; }; @@ -48,4 +48,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.kurnevsky ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/espeak/default.nix b/pkgs/applications/audio/espeak/default.nix index e4a4bc289e6f..b2d68e2c24bf 100644 --- a/pkgs/applications/audio/espeak/default.nix +++ b/pkgs/applications/audio/espeak/default.nix @@ -6,12 +6,12 @@ portaudio, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "espeak"; version = "1.48.04"; src = fetchurl { - url = "mirror://sourceforge/espeak/espeak-${version}-source.zip"; + url = "mirror://sourceforge/espeak/espeak-${finalAttrs.version}-source.zip"; sha256 = "0n86gwh9pw0jqqpdz7mxggllfr8k0r7pc67ayy7w5z6z79kig6mz"; }; @@ -42,4 +42,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/espeak/edit.nix b/pkgs/applications/audio/espeak/edit.nix index 9e6adde36162..abb59307d08e 100644 --- a/pkgs/applications/audio/espeak/edit.nix +++ b/pkgs/applications/audio/espeak/edit.nix @@ -9,12 +9,12 @@ sox, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "espeakedit"; version = "1.48.03"; src = fetchurl { - url = "mirror://sourceforge/espeak/espeakedit-${version}.zip"; + url = "mirror://sourceforge/espeak/espeakedit-${finalAttrs.version}.zip"; sha256 = "0x8s7vpb7rw5x37yjzy1f98m4f2csdg89libb74fm36gn8ly0hli"; }; @@ -76,4 +76,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/ladspa-plugins/default.nix b/pkgs/applications/audio/ladspa-plugins/default.nix index ef888adf40cf..5f44a883a95a 100644 --- a/pkgs/applications/audio/ladspa-plugins/default.nix +++ b/pkgs/applications/audio/ladspa-plugins/default.nix @@ -11,14 +11,14 @@ perlPackages, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "swh-plugins"; version = "0.4.17"; src = fetchFromGitHub { owner = "swh"; repo = "ladspa"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-eOtIhNcuItREUShI8JRlBVKfMfovpdfIYu+m37v4KLE="; }; @@ -57,4 +57,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.magnetophon ]; platforms = lib.platforms.unix; }; -} +}) diff --git a/pkgs/applications/audio/librespot/default.nix b/pkgs/applications/audio/librespot/default.nix index 39f44d6c585c..94c51b22b5eb 100644 --- a/pkgs/applications/audio/librespot/default.nix +++ b/pkgs/applications/audio/librespot/default.nix @@ -21,14 +21,14 @@ tlsBackend ? "native-tls", # "native-tls" "rustls-tls-native-roots" "rustls-tls-webpki-roots" }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "librespot"; version = "0.8.0"; src = fetchFromGitHub { owner = "librespot-org"; repo = "librespot"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-twWndV6z5Cdivz7pfAJzdlIjddEiZPEFnTzipMczmJo="; }; @@ -71,8 +71,8 @@ rustPlatform.buildRustPackage rec { description = "Open Source Spotify client library and playback daemon"; mainProgram = "librespot"; homepage = "https://github.com/librespot-org/librespot"; - changelog = "https://github.com/librespot-org/librespot/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/librespot-org/librespot/blob/v${finalAttrs.version}/CHANGELOG.md"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ bennofs ]; }; -} +}) diff --git a/pkgs/applications/audio/lmms/default.nix b/pkgs/applications/audio/lmms/default.nix index 409a5b768ba3..f8e9cb71366c 100644 --- a/pkgs/applications/audio/lmms/default.nix +++ b/pkgs/applications/audio/lmms/default.nix @@ -26,14 +26,14 @@ SDL ? null, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "lmms"; version = "1.2.2"; src = fetchFromGitHub { owner = "LMMS"; repo = "lmms"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "006hwv1pbh3y5whsxkjk20hsbgwkzr4dawz43afq1gil69y7xpda"; fetchSubmodules = true; }; @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DWANT_QT5=ON" ] - ++ lib.optionals (lib.versionOlder version "11.4") [ + ++ lib.optionals (lib.versionOlder finalAttrs.version "11.4") [ # Fix the build with CMake 4. "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; @@ -96,4 +96,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix index 6de176840115..089d86926865 100644 --- a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "CharacterCompressor"; version = "0.3.3"; src = fetchFromGitHub { owner = "magnetophon"; repo = "CharacterCompressor"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "1h0bhjhx023476gbijq842b6f8z71zcyn4c9mddwyb18w9cdamp5"; }; @@ -46,4 +46,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix index 528c972a9829..0d66e1e0cedd 100644 --- a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "CompBus"; version = "1.1.1"; src = fetchFromGitHub { owner = "magnetophon"; repo = "CompBus"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "0yhj680zgk4dn4fi8j3apm72f3z2mjk12amf2a7p0lwn9iyh4a2z"; }; @@ -50,4 +50,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix index 24dda36ca000..65bfa3aaae0d 100644 --- a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "constant-detune-chorus"; version = "0.1.3"; src = fetchFromGitHub { owner = "magnetophon"; repo = "constant-detune-chorus"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "1sipmc25fr7w7xqx1r0y6i2zwfkgszzwvhk1v15mnsb3cqvk8ybn"; }; @@ -43,4 +43,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix index cc968b5226cc..b34338cf0047 100644 --- a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "LazyLimiter"; version = "0.3.2"; src = fetchFromGitHub { owner = "magnetophon"; repo = "LazyLimiter"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "10xdydwmsnkx8hzsm74pa546yahp29wifydbc48yywv3sfj5anm7"; }; @@ -43,4 +43,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix index 3dfea346b60a..39c3335480d9 100644 --- a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix @@ -6,14 +6,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "MBdistortion"; version = "1.1.1"; src = fetchFromGitHub { owner = "magnetophon"; repo = "MBdistortion"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; }; @@ -51,4 +51,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix index ab7e651fc691..7f0df8582b3f 100644 --- a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "RhythmDelay"; version = "2.1"; src = fetchFromGitHub { owner = "magnetophon"; repo = "RhythmDelay"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "1j0bjl9agz43dcrcrbiqd7fv7xsxgd65s4ahhv5pvcr729y0fxg4"; }; @@ -43,4 +43,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix index f1845e2a3279..f03a0480d0ec 100644 --- a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix @@ -8,23 +8,23 @@ puredata-with-plugins, jack-example-tools, }: -stdenv.mkDerivation rec { +let + plugins = [ + helmholtz + ]; + pitchTracker = puredata-with-plugins plugins; +in +stdenv.mkDerivation (finalAttrs: { pname = "VoiceOfFaust"; version = "1.1.7"; src = fetchFromGitHub { owner = "magnetophon"; repo = "VoiceOfFaust"; - tag = "V${version}"; + tag = "V${finalAttrs.version}"; sha256 = "sha256-wsc4yzytK2hPVBQwMhdhjnH1pDtpkNCFJnItyzszEs0="; }; - plugins = [ - helmholtz - ]; - - pitchTracker = puredata-with-plugins plugins; - nativeBuildInputs = [ faust2jack faust2lv2 @@ -52,4 +52,4 @@ stdenv.mkDerivation rec { license = lib.licenses.agpl3Only; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix index beb40dcbfece..d9c127eae4a3 100644 --- a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "faustCompressors"; version = "1.2"; src = fetchFromGitHub { owner = "magnetophon"; repo = "faustCompressors"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "144f6g17q4m50kxzdncsfzdyycdfprnpwdaxcwgxj4jky1xsha1d"; }; @@ -55,4 +55,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix index 7c81a87cfe9f..a70eacd6ea4d 100644 --- a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "pluginUtils"; version = "1.1"; src = fetchFromGitHub { owner = "magnetophon"; repo = "pluginUtils"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "1hnr5sp7k6ypf4ks61lnyqx44dkv35yllf3a3xcbrw7yqzagwr1c"; }; @@ -50,4 +50,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix index 70020efe0980..ab908bd90a55 100644 --- a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix @@ -5,14 +5,14 @@ faust2jaqt, faust2lv2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "shelfMultiBand"; version = "0.6.1"; src = fetchFromGitHub { owner = "magnetophon"; repo = "shelfMultiBand"; - rev = "V${version}"; + rev = "V${finalAttrs.version}"; sha256 = "1b1h4z5fs2xm7wvw11p9wnd0bxs3m88124f5phh0gwvpsdrd0im5"; }; @@ -46,4 +46,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; }; -} +}) diff --git a/pkgs/applications/audio/midas/generic.nix b/pkgs/applications/audio/midas/generic.nix index b21ab315a178..fdb60633f2dc 100644 --- a/pkgs/applications/audio/midas/generic.nix +++ b/pkgs/applications/audio/midas/generic.nix @@ -26,7 +26,7 @@ let '') debs ); in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "${lib.toLower type}-edit"; inherit version; @@ -40,9 +40,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp ${type}-Edit $out/bin/.${pname} + cp ${type}-Edit $out/bin/.${finalAttrs.pname} - cat >$out/bin/${pname} <$out/bin/${finalAttrs.pname} < !libOnly; -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "${lib.optionalString libOnly "lib"}mpg123"; version = "1.33.4"; src = fetchurl { - url = "mirror://sourceforge/mpg123/mpg123-${version}.tar.bz2"; + url = "mirror://sourceforge/mpg123/mpg123-${finalAttrs.version}.tar.bz2"; hash = "sha256-OujJ/4Cpe/wOIuifvNdGh+yk/B2zFbEmB/J/ActaR9k="; }; @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { # Expect the text in format of '' new_version="$(curl -s https://mpg123.org/download.shtml | pcregrep -o1 '')" - update-source-version ${pname} "$new_version" + update-source-version ${finalAttrs.pname} "$new_version" ''; }; @@ -99,4 +99,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ ftrvxmtrx ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/audio/pd-plugins/timbreid/default.nix b/pkgs/applications/audio/pd-plugins/timbreid/default.nix index b11e6ffcdb55..83b29d1e6f7f 100644 --- a/pkgs/applications/audio/pd-plugins/timbreid/default.nix +++ b/pkgs/applications/audio/pd-plugins/timbreid/default.nix @@ -7,12 +7,12 @@ fftw, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { version = "0.7.0"; pname = "timbreid"; src = fetchurl { - url = "http://williambrent.conflations.com/pd/timbreID-${version}-src.zip"; + url = "http://williambrent.conflations.com/pd/timbreID-${finalAttrs.version}-src.zip"; sha256 = "14k2xk5zrzrw1zprdbwx45hrlc7ck8vq4drpd3l455i5r8yk4y6b"; }; @@ -53,4 +53,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.magnetophon ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/pianoteq/default.nix b/pkgs/applications/audio/pianoteq/default.nix index 969e65253ec0..7778fed0e1c2 100644 --- a/pkgs/applications/audio/pianoteq/default.nix +++ b/pkgs/applications/audio/pianoteq/default.nix @@ -41,7 +41,7 @@ let version, ... }: - stdenv.mkDerivation rec { + stdenv.mkDerivation (finalAttrs: { inherit src version; pname = "pianoteq-${name}"; @@ -66,11 +66,11 @@ let desktopItems = [ (makeDesktopItem { - name = pname; + name = finalAttrs.pname; exec = ''"${mainProgram}"''; desktopName = mainProgram; icon = "pianoteq"; - comment = meta.description; + comment = finalAttrs.meta.description; categories = [ "AudioVideo" "Audio" @@ -114,7 +114,7 @@ let ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; - }; + }); fetchWithCurlScript = { diff --git a/pkgs/applications/audio/playbar2/default.nix b/pkgs/applications/audio/playbar2/default.nix index 105d37a5529c..3dc5ada3ef2f 100644 --- a/pkgs/applications/audio/playbar2/default.nix +++ b/pkgs/applications/audio/playbar2/default.nix @@ -8,14 +8,14 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "playbar2"; version = "2.5"; src = fetchFromGitHub { owner = "jsmitar"; repo = "PlayBar2"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "0iv2m4flgaz2r0k7f6l0ca8p6cw8j8j2gin1gci2pg3l5g5khbch"; }; @@ -43,4 +43,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ pjones ]; }; -} +}) diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index afade20b517c..26e6716018fe 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -44,7 +44,7 @@ python3, xvfb-run, }: -python3.pkgs.buildPythonApplication rec { +python3.pkgs.buildPythonApplication (finalAttrs: { pname = "quodlibet${tag}"; version = "4.7.1"; pyproject = true; @@ -57,7 +57,7 @@ python3.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "quodlibet"; repo = "quodlibet"; - tag = "release-${version}"; + tag = "release-${finalAttrs.version}"; hash = "sha256-xr3c1e4tjw2YHuKbvNeUPBIFdHEcpztqXjHVDSSxYlo="; }; @@ -197,4 +197,4 @@ python3.pkgs.buildPythonApplication rec { license = lib.licenses.gpl2Plus; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/audio/rakarrack/default.nix b/pkgs/applications/audio/rakarrack/default.nix index bcab38ff170d..08d7d1d961f8 100644 --- a/pkgs/applications/audio/rakarrack/default.nix +++ b/pkgs/applications/audio/rakarrack/default.nix @@ -15,12 +15,12 @@ zlib, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "rakarrack"; version = "0.6.1"; src = fetchurl { - url = "mirror://sourceforge/rakarrack/${pname}-${version}.tar.bz2"; + url = "mirror://sourceforge/rakarrack/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2"; sha256 = "1rpf63pdn54c4yg13k7cb1w1c7zsvl97c4qxcpz41c8l91xd55kn"; }; @@ -53,4 +53,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index c5d26cd14a66..482dbb6a1643 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -36,12 +36,12 @@ let builtins.replaceStrings [ "." ] [ "" ] version }_linux_${arch}.tar.xz"; in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "reaper"; version = "7.59"; src = fetchurl { - url = url_for_platform version stdenv.hostPlatform.qemuArch; + url = url_for_platform finalAttrs.version stdenv.hostPlatform.qemuArch; hash = if stdenv.hostPlatform.isDarwin then "sha256-S4RAXWss1tPzmO0zzKfkXPrcgBqwNN5EE1jpjEZ5mYk=" @@ -152,4 +152,4 @@ stdenv.mkDerivation rec { viraptor ]; }; -} +}) diff --git a/pkgs/applications/audio/sfxr-qt/default.nix b/pkgs/applications/audio/sfxr-qt/default.nix index f94171ef892b..dcd07bbe57c2 100644 --- a/pkgs/applications/audio/sfxr-qt/default.nix +++ b/pkgs/applications/audio/sfxr-qt/default.nix @@ -14,14 +14,14 @@ nixosTests, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "sfxr-qt"; version = "1.5.1"; src = fetchFromGitHub { owner = "agateau"; repo = "sfxr-qt"; - rev = version; + rev = finalAttrs.version; hash = "sha256-JAWDk7mGkPtQ5yaA6UT9hlAy770MHrTBhBP9G8UqFKg="; fetchSubmodules = true; }; @@ -68,4 +68,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ fgaz ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/audio/snapcast/default.nix b/pkgs/applications/audio/snapcast/default.nix index 2b938c7c57da..d2511baae213 100644 --- a/pkgs/applications/audio/snapcast/default.nix +++ b/pkgs/applications/audio/snapcast/default.nix @@ -24,14 +24,14 @@ openssl, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "snapcast"; version = "0.34.0"; src = fetchFromGitHub { owner = "badaix"; repo = "snapcast"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-BPsAGFLWUfONuyQ1pzsJzGV/Jlxv+4TkVT1KG7j8H0s="; }; @@ -84,4 +84,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux ++ lib.platforms.darwin; license = lib.licenses.gpl3Plus; }; -} +}) diff --git a/pkgs/applications/audio/zynaddsubfx/default.nix b/pkgs/applications/audio/zynaddsubfx/default.nix index ed60872781c2..7c5506413386 100644 --- a/pkgs/applications/audio/zynaddsubfx/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/default.nix @@ -64,14 +64,14 @@ let mruby-zest = callPackage ./mruby-zest { }; in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "zynaddsubfx"; version = "3.0.6"; src = fetchFromGitHub { owner = "zynaddsubfx"; repo = "zynaddsubfx"; - tag = version; + tag = finalAttrs.version; fetchSubmodules = true; hash = "sha256-0siAx141DZx39facXWmKbsi0rHBNpobApTdey07EcXg="; }; @@ -204,4 +204,4 @@ stdenv.mkDerivation rec { # - Zest UI fails to start on pulg_setup: Could not open display, aborting. broken = stdenv.hostPlatform.isDarwin; }; -} +}) diff --git a/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix b/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix index 7160a2cd1631..ff9ce3f10486 100644 --- a/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix @@ -11,14 +11,14 @@ libx11, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "mruby-zest"; version = "3.0.6"; src = fetchFromGitHub { - owner = pname; - repo = "${pname}-build"; - tag = version; + owner = "mruby-zest"; + repo = "mruby-zest-build"; + tag = finalAttrs.version; fetchSubmodules = true; sha256 = "sha256-rIb6tQimwrUj+623IU5zDyKNWsNYYBElLQClOsP+5Dc="; }; @@ -70,4 +70,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/blockchains/digibyte/default.nix b/pkgs/applications/blockchains/digibyte/default.nix index 04161c6e0ac9..3ea3e96181e2 100644 --- a/pkgs/applications/blockchains/digibyte/default.nix +++ b/pkgs/applications/blockchains/digibyte/default.nix @@ -17,16 +17,16 @@ wrapQtAppsHook ? null, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "digibyte"; version = "7.17.3"; - name = pname + toString (lib.optional (!withGui) "d") + "-" + version; + name = finalAttrs.pname + toString (lib.optional (!withGui) "d") + "-" + finalAttrs.version; src = fetchFromGitHub { owner = "digibyte-core"; - repo = pname; - rev = "v${version}"; + repo = "digibyte"; + rev = "v${finalAttrs.version}"; sha256 = "zPwnC2qd28fA1saG4nysPlKU1nnXhfuSG3DpCY6T+kM="; }; @@ -69,4 +69,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.mmahut ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/blockchains/elements/default.nix b/pkgs/applications/blockchains/elements/default.nix index f5de301da757..3252b1095731 100644 --- a/pkgs/applications/blockchains/elements/default.nix +++ b/pkgs/applications/blockchains/elements/default.nix @@ -24,14 +24,14 @@ withWallet ? true, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = if withGui then "elements" else "elementsd"; version = "23.3.2"; src = fetchFromGitHub { owner = "ElementsProject"; repo = "elements"; - rev = "elements-${version}"; + rev = "elements-${finalAttrs.version}"; sha256 = "sha256-NLLM+stYOXcnAjEfXRerjvgMXM8jFSOyZhu/A0ZTnRw="; }; @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { "--with-boost-libdir=${boost.out}/lib" "--disable-bench" ] - ++ lib.optionals (!doCheck) [ + ++ lib.optionals (!finalAttrs.doCheck) [ "--disable-tests" "--disable-gui-tests" ] @@ -112,4 +112,4 @@ stdenv.mkDerivation rec { license = lib.licenses.mit; platforms = lib.platforms.unix; }; -} +}) diff --git a/pkgs/applications/blockchains/gridcoin-research/default.nix b/pkgs/applications/blockchains/gridcoin-research/default.nix index ba5a14a53845..f124f96eafd8 100644 --- a/pkgs/applications/blockchains/gridcoin-research/default.nix +++ b/pkgs/applications/blockchains/gridcoin-research/default.nix @@ -18,14 +18,14 @@ hexdump, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "gridcoin-research"; version = "5.4.9.0"; src = fetchFromGitHub { owner = "gridcoin-community"; repo = "Gridcoin-Research"; - rev = "${version}"; + rev = "${finalAttrs.version}"; hash = "sha256-nupZB4nNbitpf5EBCNy0e+ovjayAszup/r7qxbxA5jI="; }; @@ -70,4 +70,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ gigglesquid ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/blockchains/nano-wallet/default.nix b/pkgs/applications/blockchains/nano-wallet/default.nix index 4e986699d220..821e8b1880bb 100644 --- a/pkgs/applications/blockchains/nano-wallet/default.nix +++ b/pkgs/applications/blockchains/nano-wallet/default.nix @@ -12,7 +12,7 @@ python3, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "nano-wallet"; version = "28.2"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "nanocurrency"; repo = "nano-node"; - tag = "V${version}"; + tag = "V${finalAttrs.version}"; fetchSubmodules = true; hash = "sha256-Wo1Gd6dOnCoPiGmuJQhZmKKSg7LrKpfdvLNNKBYTUWI="; }; @@ -82,5 +82,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ jluttine ]; }; - -} +}) diff --git a/pkgs/applications/blockchains/optimism/default.nix b/pkgs/applications/blockchains/optimism/default.nix index d60a6b12509f..a1b7f3ec2d04 100644 --- a/pkgs/applications/blockchains/optimism/default.nix +++ b/pkgs/applications/blockchains/optimism/default.nix @@ -5,14 +5,14 @@ libpcap, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "optimism"; version = "1.9.4"; src = fetchFromGitHub { owner = "ethereum-optimism"; repo = "optimism"; - rev = "op-node/v${version}"; + rev = "op-node/v${finalAttrs.version}"; hash = "sha256-pAmstWA6up0CvHEQW5RnDYumdwKP0i6fpz59EYTBsmU="; fetchSubmodules = true; }; @@ -41,4 +41,4 @@ buildGoModule rec { maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "cmd"; }; -} +}) diff --git a/pkgs/applications/blockchains/optimism/geth.nix b/pkgs/applications/blockchains/optimism/geth.nix index 488bddd45c1f..8c6d98e5e21b 100644 --- a/pkgs/applications/blockchains/optimism/geth.nix +++ b/pkgs/applications/blockchains/optimism/geth.nix @@ -4,14 +4,14 @@ fetchFromGitHub, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "op-geth"; version = "1.101305.3"; src = fetchFromGitHub { owner = "ethereum-optimism"; repo = "op-geth"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-AKVwwvt77FZlm7089EeayYVRYLo7c3v6LFVpsQN68Zk="; fetchSubmodules = true; }; @@ -46,4 +46,4 @@ buildGoModule rec { license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ happysalada ]; }; -} +}) diff --git a/pkgs/applications/blockchains/vertcoin/default.nix b/pkgs/applications/blockchains/vertcoin/default.nix index 95a95a8de832..cee10b73be0e 100644 --- a/pkgs/applications/blockchains/vertcoin/default.nix +++ b/pkgs/applications/blockchains/vertcoin/default.nix @@ -19,15 +19,15 @@ wrapQtAppsHook ? null, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "vertcoin"; version = "0.18.0"; - name = pname + toString (lib.optional (!withGui) "d") + "-" + version; + name = finalAttrs.pname + toString (lib.optional (!withGui) "d") + "-" + finalAttrs.version; src = fetchFromGitHub { - owner = pname + "-project"; - repo = pname + "-core"; + owner = "vertcoin-project"; + repo = "vertcoin-core"; rev = "2bd6dba7a822400581d5a6014afd671fb7e61f36"; sha256 = "ua9xXA+UQHGVpCZL0srX58DDUgpfNa+AAIKsxZbhvMk="; }; @@ -86,4 +86,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.mmahut ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/blockchains/zcash/default.nix b/pkgs/applications/blockchains/zcash/default.nix index 1dfbd0f39559..d195c38cdefa 100644 --- a/pkgs/applications/blockchains/zcash/default.nix +++ b/pkgs/applications/blockchains/zcash/default.nix @@ -25,14 +25,14 @@ zeromq, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "zcash"; version = "5.4.2"; src = fetchFromGitHub { owner = "zcash"; repo = "zcash"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-XGq/cYUo43FcpmRDO2YiNLCuEQLsTFLBFC4M1wM29l8="; }; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ]; cargoDeps = rustPlatform.fetchCargoVendor { - inherit pname version src; + inherit (finalAttrs) pname version src; hash = "sha256-VBqasLpxqI4kr73Mr7OVuwb2OIhUwnY9CTyZZOyEElU="; }; @@ -115,4 +115,4 @@ stdenv.mkDerivation rec { # https://github.com/zcash/zcash/issues/4405 broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin; }; -} +}) diff --git a/pkgs/applications/editors/cudatext/default.nix b/pkgs/applications/editors/cudatext/default.nix index c40381110a64..ba0cdf1ea046 100644 --- a/pkgs/applications/editors/cudatext/default.nix +++ b/pkgs/applications/editors/cudatext/default.nix @@ -40,14 +40,14 @@ let } ) (lib.importJSON ./deps.json); in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "cudatext"; version = "1.202.1"; src = fetchFromGitHub { owner = "Alexey-T"; repo = "CudaText"; - tag = version; + tag = finalAttrs.version; hash = "sha256-ZFMO986D4RtrTnLFdcL0a2BNjcsB+9pIolylblku7j4="; }; @@ -84,7 +84,7 @@ stdenv.mkDerivation rec { env.NIX_LDFLAGS = toString [ "--as-needed" "-rpath" - (lib.makeLibraryPath buildInputs) + (lib.makeLibraryPath finalAttrs.buildInputs) ]; buildPhase = @@ -146,4 +146,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; mainProgram = "cudatext"; }; -} +}) diff --git a/pkgs/applications/editors/eclipse/build-eclipse.nix b/pkgs/applications/editors/eclipse/build-eclipse.nix index b43949c12542..4a60a0396352 100644 --- a/pkgs/applications/editors/eclipse/build-eclipse.nix +++ b/pkgs/applications/editors/eclipse/build-eclipse.nix @@ -28,7 +28,7 @@ version, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { inherit pname version src; desktopItem = makeDesktopItem { @@ -103,7 +103,7 @@ stdenv.mkDerivation rec { # Create desktop item. mkdir -p $out/share/applications - cp ${desktopItem}/share/applications/* $out/share/applications + cp ${finalAttrs.desktopItem}/share/applications/* $out/share/applications mkdir -p $out/share/pixmaps ln -s $out/eclipse/icon.xpm $out/share/pixmaps/eclipse.xpm @@ -123,5 +123,4 @@ stdenv.mkDerivation rec { ]; maintainers = [ lib.maintainers.jerith666 ]; }; - -} +}) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix index 6eeb435f31e2..61893469dedd 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix @@ -4,12 +4,12 @@ fetchzip, }: -melpaBuild rec { +melpaBuild (finalAttrs: { pname = "ebuild-mode"; version = "1.81"; src = fetchzip { - url = "https://gitweb.gentoo.org/proj/ebuild-mode.git/snapshot/ebuild-mode-${version}.tar.bz2"; + url = "https://gitweb.gentoo.org/proj/ebuild-mode.git/snapshot/ebuild-mode-${finalAttrs.version}.tar.bz2"; hash = "sha256-b+59Ec+NOHvFgbFOmnsvGjnq392VR1JCsPx/ORSdffo="; }; @@ -19,4 +19,4 @@ melpaBuild rec { license = lib.licenses.gpl2Plus; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix index 418f201fa933..eb7430c0344a 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix @@ -4,12 +4,12 @@ fetchurl, }: -melpaBuild rec { +melpaBuild (finalAttrs: { pname = "jam-mode"; version = "0.3"; src = fetchurl { - url = "https://dev.gentoo.org/~ulm/distfiles/${pname}-${version}.el.xz"; + url = "https://dev.gentoo.org/~ulm/distfiles/${finalAttrs.pname}-${finalAttrs.version}.el.xz"; hash = "sha256-0IlYqbPa4AAwOpjdd20k8hqtvDhZmcz1WHa/LHx8kMk="; }; @@ -32,4 +32,4 @@ melpaBuild rec { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ qyliss ]; }; -} +}) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix index 9896e8bd4b35..f66bf92548bd 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix @@ -4,14 +4,14 @@ lib, }: -melpaBuild rec { +melpaBuild (finalAttrs: { pname = "session-management-for-emacs"; ename = "session"; version = "2.2a"; melpaVersion = "2.2"; # default value derived from version is not valid for Emacs src = fetchzip { - url = "mirror://sourceforge/emacs-session/session-${version}.tar.gz"; + url = "mirror://sourceforge/emacs-session/session-${finalAttrs.version}.tar.gz"; hash = "sha256-lc6NIX+lx97qCs5JqG7x0iVE6ki09Gy7DEQuPW2c+7s="; }; @@ -28,4 +28,4 @@ melpaBuild rec { homepage = "https://emacs-session.sourceforge.net/"; license = lib.licenses.gpl2; }; -} +}) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix index 3f7608dc5ced..35e9335e4e5f 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix @@ -10,20 +10,20 @@ let libExt = stdenv.hostPlatform.extensions.sharedLibrary; - tsc-dyn = rustPlatform.buildRustPackage rec { + tsc-dyn = rustPlatform.buildRustPackage (finalAttrs: { pname = "tsc-dyn"; version = "0.18.0"; src = fetchFromGitHub { owner = "emacs-tree-sitter"; repo = "emacs-tree-sitter"; - tag = version; + tag = finalAttrs.version; hash = "sha256-LrakDpP3ZhRQqz47dPcyoQnu5lROdaNlxGaQfQT6u+k="; }; cargoHash = "sha256-Tua3ZFfSyWVYXU9mPLWXE6ejGlXowTNe3nvZBaicmSQ="; - sourceRoot = "${src.name}/core"; + sourceRoot = "${finalAttrs.src.name}/core"; postInstall = '' pushd $out/lib @@ -31,7 +31,7 @@ let echo -n $version > DYN-VERSION popd ''; - }; + }); in melpaBuild { pname = "tsc"; diff --git a/pkgs/applications/editors/formiko/default.nix b/pkgs/applications/editors/formiko/default.nix index a67be9d8cc98..d2f0fc1791b6 100644 --- a/pkgs/applications/editors/formiko/default.nix +++ b/pkgs/applications/editors/formiko/default.nix @@ -13,7 +13,7 @@ webkitgtk_4_1, }: -buildPythonApplication rec { +buildPythonApplication (finalAttrs: { pname = "formiko"; version = "1.5.0"; format = "setuptools"; @@ -21,7 +21,7 @@ buildPythonApplication rec { src = fetchFromGitHub { owner = "ondratu"; repo = "formiko"; - tag = version; + tag = finalAttrs.version; sha256 = "sha256-slfpkckCvxHJ/jlBP7QAhzaf9TAcS6biDQBZcBTyTKI="; }; @@ -50,4 +50,4 @@ buildPythonApplication rec { license = lib.licenses.bsd3; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/editors/jetbrains/plugins/default.nix b/pkgs/applications/editors/jetbrains/plugins/default.nix index 58cbde88a814..5eaf7dbbff43 100644 --- a/pkgs/applications/editors/jetbrains/plugins/default.nix +++ b/pkgs/applications/editors/jetbrains/plugins/default.nix @@ -23,8 +23,8 @@ plugins = map processPlugin unprocessedPlugins; in - stdenv.mkDerivation rec { - pname = meta.mainProgram + "-with-plugins"; + stdenv.mkDerivation (finalAttrs: { + pname = finalAttrs.meta.mainProgram + "-with-plugins"; version = ide.version; src = ide; dontInstall = true; @@ -45,7 +45,8 @@ buildPhase = let appDir = lib.optionalString stdenv.hostPlatform.isDarwin "Applications/${lib.escapeShellArg ide.product}.app"; - rootDir = if stdenv.hostPlatform.isDarwin then "${appDir}/Contents" else meta.mainProgram; + rootDir = + if stdenv.hostPlatform.isDarwin then "${appDir}/Contents" else finalAttrs.meta.mainProgram; in '' cp -r ${ide} $out @@ -74,5 +75,5 @@ done ) ''; - }; + }); } diff --git a/pkgs/applications/editors/jetbrains/source/build.nix b/pkgs/applications/editors/jetbrains/source/build.nix index 80e53e88874b..37d776045f6e 100644 --- a/pkgs/applications/editors/jetbrains/source/build.nix +++ b/pkgs/applications/editors/jetbrains/source/build.nix @@ -231,10 +231,10 @@ let }; in -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation (finalAttrs: { pname = "${buildType}-oss"; inherit version buildNumber; - name = "${pname}-${version}.tar.gz"; + name = "${finalAttrs.pname}-${version}.tar.gz"; inherit src; nativeBuildInputs = [ p7zip @@ -321,4 +321,4 @@ stdenvNoCC.mkDerivation rec { jps-bootstrap ; }; -} +}) diff --git a/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix b/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix index dba9bfeefc1c..de84b09b0d25 100644 --- a/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix +++ b/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix @@ -6,14 +6,14 @@ with python3Packages; -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "octave-kernel"; version = "0.34.2"; format = "setuptools"; src = fetchPypi { pname = "octave_kernel"; - inherit version; + inherit (finalAttrs) version; sha256 = "sha256-5ki2lekfK7frPsmPBIzYQOfANCUY9x+F2ZRAQSdPTxo="; }; @@ -33,4 +33,4 @@ buildPythonPackage rec { maintainers = with lib.maintainers; [ thomasjm ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix b/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix index a06afcf42f75..d74f7ad07d91 100644 --- a/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix +++ b/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix @@ -4,14 +4,14 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "wolfram-for-jupyter-kernel"; version = "0.9.2"; src = fetchFromGitHub { owner = "WolframResearch"; repo = "WolframLanguageForJupyter"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "19d9dvr0bv7iy0x8mk4f576ha7z7h7id39nyrggwf9cp7gymxf47"; }; @@ -33,4 +33,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ fbeffa ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix b/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix index 6c3d0acd67d4..50ee8bbd685c 100644 --- a/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix +++ b/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix @@ -51,14 +51,14 @@ let in -clangStdenv.mkDerivation rec { +clangStdenv.mkDerivation (finalAttrs: { pname = "xeus-cling"; version = "0.15.3"; src = fetchFromGitHub { owner = "QuantStack"; repo = "xeus-cling"; - rev = "${version}"; + rev = "${finalAttrs.version}"; hash = "sha256-OfZU+z+p3/a36GntusBfwfFu3ssJW4Fu7SV3SMCoo1I="; }; @@ -109,4 +109,4 @@ clangStdenv.mkDerivation rec { platforms = lib.platforms.unix; license = lib.licenses.mit; }; -} +}) diff --git a/pkgs/applications/editors/kakoune/plugins/overrides.nix b/pkgs/applications/editors/kakoune/plugins/overrides.nix index 9e42f0cb523e..ed0cbd1c17e5 100644 --- a/pkgs/applications/editors/kakoune/plugins/overrides.nix +++ b/pkgs/applications/editors/kakoune/plugins/overrides.nix @@ -45,14 +45,14 @@ self: super: { ''; }); - kak-ansi = stdenv.mkDerivation rec { + kak-ansi = stdenv.mkDerivation (finalAttrs: { pname = "kak-ansi"; version = "0.2.4"; src = fetchFromGitHub { owner = "eraserhd"; repo = "kak-ansi"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "kFjTYFy0KF5WWEHU4hHFAnD/03/d3ptjqMMbTSaGImE="; }; @@ -77,16 +77,16 @@ self: super: { ]; platforms = lib.platforms.all; }; - }; + }); - kak-plumb = stdenv.mkDerivation rec { + kak-plumb = stdenv.mkDerivation (finalAttrs: { pname = "kak-plumb"; version = "0.1.1"; src = fetchFromGitHub { owner = "eraserhd"; repo = "kak-plumb"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "1rz6pr786slnf1a78m3sj09axr4d2lb5rg7sfa4mfg1zcjh06ps6"; }; @@ -110,7 +110,7 @@ self: super: { ]; platforms = lib.platforms.all; }; - }; + }); kakoune-rainbow = super.kakoune-rainbow.overrideAttrs (oldAttrs: { preFixup = '' diff --git a/pkgs/applications/editors/manuskript/default.nix b/pkgs/applications/editors/manuskript/default.nix index f22ca6f7ee26..400b73ee5062 100644 --- a/pkgs/applications/editors/manuskript/default.nix +++ b/pkgs/applications/editors/manuskript/default.nix @@ -6,7 +6,7 @@ wrapQtAppsHook, }: -python3Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication (finalAttrs: { pname = "manuskript"; version = "0.17.0"; @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec { src = fetchFromGitHub { repo = "manuskript"; owner = "olivierkes"; - tag = version; + tag = finalAttrs.version; hash = "sha256-jOhbN6lMx04q60S0VOABmSNE/x9Er9exFYvWJe2INlE="; }; @@ -66,4 +66,4 @@ python3Packages.buildPythonApplication rec { platforms = lib.platforms.unix; mainProgram = "manuskript"; }; -} +}) diff --git a/pkgs/applications/editors/molsketch/default.nix b/pkgs/applications/editors/molsketch/default.nix index 7c08ea25f5de..f042627055e7 100644 --- a/pkgs/applications/editors/molsketch/default.nix +++ b/pkgs/applications/editors/molsketch/default.nix @@ -11,12 +11,12 @@ desktop-file-utils, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "molsketch"; version = "0.8.1"; src = fetchurl { - url = "mirror://sourceforge/molsketch/Molsketch-${version}-src.tar.gz"; + url = "mirror://sourceforge/molsketch/Molsketch-${finalAttrs.version}-src.tar.gz"; hash = "sha256-6wFvl3Aktv8RgEdI2ENsKallKlYy/f8Tsm5C0FB/igI="; }; @@ -62,4 +62,4 @@ stdenv.mkDerivation rec { mainProgram = "molsketch"; platforms = lib.platforms.unix; }; -} +}) diff --git a/pkgs/applications/editors/neovim/gnvim/default.nix b/pkgs/applications/editors/neovim/gnvim/default.nix index 5fabde8a695b..19ac86417e71 100644 --- a/pkgs/applications/editors/neovim/gnvim/default.nix +++ b/pkgs/applications/editors/neovim/gnvim/default.nix @@ -7,14 +7,14 @@ gtk4, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "gnvim-unwrapped"; version = "0.3.1"; src = fetchFromGitHub { owner = "vhakulinen"; repo = "gnvim"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-VyyHlyMW/9zYECobQwngFARQYqcoXmopyCHUwHolXfo="; }; @@ -52,4 +52,4 @@ rustPlatform.buildRustPackage rec { license = lib.licenses.mit; maintainers = with lib.maintainers; [ minijackson ]; }; -} +}) diff --git a/pkgs/applications/editors/notepadqq/default.nix b/pkgs/applications/editors/notepadqq/default.nix index 5e40331bf42f..43f2aef74697 100644 --- a/pkgs/applications/editors/notepadqq/default.nix +++ b/pkgs/applications/editors/notepadqq/default.nix @@ -13,7 +13,7 @@ qtwebsockets, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "notepadqq"; # shipping a beta build as there's no proper release which supports qtwebengine version = "2.0.0-beta"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "notepadqq"; repo = "notepadqq"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-XA9Ay9kJApY+bDeOf0iPv+BWYFuTmIuqsLEPgRTCZCE="; }; @@ -69,4 +69,4 @@ stdenv.mkDerivation rec { maintainers = [ lib.maintainers.rszibele ]; mainProgram = "notepadqq"; }; -} +}) diff --git a/pkgs/applications/editors/okteta/default.nix b/pkgs/applications/editors/okteta/default.nix index 1bf3ef393884..9c5e90861df6 100644 --- a/pkgs/applications/editors/okteta/default.nix +++ b/pkgs/applications/editors/okteta/default.nix @@ -18,12 +18,12 @@ shared-mime-info, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "okteta"; version = "0.26.25"; src = fetchurl { - url = "mirror://kde/stable/okteta/${version}/src/${pname}-${version}.tar.xz"; + url = "mirror://kde/stable/okteta/${finalAttrs.version}/src/${finalAttrs.pname}-${finalAttrs.version}.tar.xz"; sha256 = "sha256-K+GJG/SYyzgDDKXbGtAixQJVfBwLj/asP9rIJUpbt2s="; }; @@ -62,4 +62,4 @@ stdenv.mkDerivation rec { ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/editors/qxmledit/default.nix b/pkgs/applications/editors/qxmledit/default.nix index 7dc2b74f7d8c..2064586e5eeb 100644 --- a/pkgs/applications/editors/qxmledit/default.nix +++ b/pkgs/applications/editors/qxmledit/default.nix @@ -10,7 +10,7 @@ libGLU, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "qxmledit"; version = "0.9.17"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "lbellonda"; repo = "qxmledit"; - rev = version; + rev = finalAttrs.version; hash = "sha256-UzN5U+aC/uKokSdeUG2zv8+mkaH4ndYZ0sfzkpQ3l1M="; }; @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { homepage = "https://sourceforge.net/projects/qxmledit"; license = lib.licenses.lgpl2; platforms = lib.platforms.unix; - changelog = "https://github.com/lbellonda/qxmledit/blob/${version}/NEWS"; + changelog = "https://github.com/lbellonda/qxmledit/blob/${finalAttrs.version}/NEWS"; mainProgram = "qxmledit"; }; -} +}) diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix index 863fd40dde12..535adc0dc200 100644 --- a/pkgs/applications/editors/rednotebook/default.nix +++ b/pkgs/applications/editors/rednotebook/default.nix @@ -14,7 +14,7 @@ setuptools, }: -buildPythonApplication rec { +buildPythonApplication (finalAttrs: { pname = "rednotebook"; version = "2.42"; pyproject = true; @@ -22,7 +22,7 @@ buildPythonApplication rec { src = fetchFromGitHub { owner = "jendrikseipp"; repo = "rednotebook"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; sha256 = "sha256-4e3LvBVrhqzNja9kOZ5xJVYvwjGkKNvIuXou4YfD6w4="; }; @@ -54,10 +54,10 @@ buildPythonApplication rec { meta = { homepage = "https://rednotebook.sourceforge.io/"; - changelog = "https://github.com/jendrikseipp/rednotebook/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/jendrikseipp/rednotebook/blob/${finalAttrs.src.tag}/CHANGELOG.md"; description = "Modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds"; license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "rednotebook"; }; -} +}) diff --git a/pkgs/applications/editors/sublime/4/common.nix b/pkgs/applications/editors/sublime/4/common.nix index 1db60808f0d9..535475b3d655 100644 --- a/pkgs/applications/editors/sublime/4/common.nix +++ b/pkgs/applications/editors/sublime/4/common.nix @@ -64,11 +64,11 @@ let sqlite ]; - binaryPackage = stdenv.mkDerivation rec { + binaryPackage = stdenv.mkDerivation (finalAttrs: { pname = "${pnameBase}-bin"; version = buildVersion; - src = passthru.sources.${stdenv.hostPlatform.system}; + src = finalAttrs.passthru.sources.${stdenv.hostPlatform.system}; dontStrip = true; dontPatchELF = true; @@ -135,9 +135,9 @@ let }; }; }; - }; + }); in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = pnameBase; version = buildVersion; @@ -191,7 +191,7 @@ stdenv.mkDerivation rec { exit 0 fi - for platform in ${lib.escapeShellArgs meta.platforms}; do + for platform in ${lib.escapeShellArgs finalAttrs.meta.platforms}; do update-source-version "${packageAttribute}".unwrapped "$latestVersion" --ignore-same-version --file="$versionFile" --version-key=buildVersion --source-key="sources.$platform" done ''; @@ -218,4 +218,4 @@ stdenv.mkDerivation rec { "x86_64-linux" ]; }; -} +}) diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index a12d991b1557..b200b92cbed6 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -26,7 +26,7 @@ let ]; in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "tiled"; # nixpkgs-update: no auto update version = "1.11.2"; @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "mapeditor"; repo = "tiled"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-9oUKn51MQcsStgIJrp9XW5YAIpAUcO0kzfGnYA3gz/E="; }; @@ -96,4 +96,4 @@ stdenv.mkDerivation rec { ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 3cf5d3804387..fae828cc736c 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -87,12 +87,12 @@ final: prev: { Coqtail = buildVimPlugin { pname = "Coqtail"; - version = "1.8.0-unstable-2026-02-14"; + version = "1.9.0-unstable-2026-02-14"; src = fetchFromGitHub { owner = "whonore"; repo = "Coqtail"; - rev = "447f7c05bbc49b4f1cbced0f8e3c5106bbfd1b37"; - hash = "sha256-I3LyfnHFn6ZMvjbBKyMS/9ND15dhL1Shq3hth39C31w="; + rev = "abd905d27e45fcb49009074aa6bcdaebb637594a"; + hash = "sha256-VKTfLdU7SwQohuTNefuhS5KCPbGLCDsr/mTABq+8hlk="; }; meta.homepage = "https://github.com/whonore/Coqtail/"; meta.hydraPlatforms = [ ]; @@ -412,12 +412,12 @@ final: prev: { SchemaStore-nvim = buildVimPlugin { pname = "SchemaStore.nvim"; - version = "0-unstable-2026-02-12"; + version = "0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "2abb594d69a43c0a48a11b30bb0ef17ad90dceea"; - hash = "sha256-9a122lS7BH8TO52ePsDlIR6CDEsVzCRmgdgRSOx+JzU="; + rev = "55ca969ceed5209d62cbf4c20cef023ff188b6c5"; + hash = "sha256-svmvtIpyXTnLGvxm8eRBO3lvkqhAcv5l0EGZOJsUjfM="; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; meta.hydraPlatforms = [ ]; @@ -791,12 +791,12 @@ final: prev: { ale = buildVimPlugin { pname = "ale"; - version = "4.0.0-unstable-2026-02-12"; + version = "4.0.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "cb8c4662aaa5c4ce91357932dab71992763ae8be"; - hash = "sha256-8+RuC4ybcGAZTbFgPqqKs5LA+2Fdiw8fE2py3eE5Dro="; + rev = "69c945d5daecadf8e4c4c499d0a7babda748d603"; + hash = "sha256-FSabpNexVFMdJaD1Y/o5Zrgy8Nx9vtn4mV6q+R3dqqU="; }; meta.homepage = "https://github.com/dense-analysis/ale/"; meta.hydraPlatforms = [ ]; @@ -973,12 +973,12 @@ final: prev: { astrocore = buildVimPlugin { pname = "astrocore"; - version = "2.1.0-unstable-2026-02-06"; + version = "2.1.1-unstable-2026-02-18"; src = fetchFromGitHub { owner = "AstroNvim"; repo = "astrocore"; - rev = "852ea56065c502b6bc94561e41b5248affcc1b29"; - hash = "sha256-L+KycbIYEOagfytHWCrk+mbvKqr29+YkIq73vkQsM/I="; + rev = "a29046604356b977df0df874face71cca78dc124"; + hash = "sha256-Rc/5EluObfP8/FQWIWKiIaXUDVzGptmu6yrgMTwfMGY="; }; meta.homepage = "https://github.com/AstroNvim/astrocore/"; meta.hydraPlatforms = [ ]; @@ -999,12 +999,12 @@ final: prev: { astrotheme = buildVimPlugin { pname = "astrotheme"; - version = "4.10.0-unstable-2026-01-21"; + version = "4.10.0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "AstroNvim"; repo = "astrotheme"; - rev = "4163138098bb0c933919bf1a799ab50c9b94f865"; - hash = "sha256-/Yymc+NlXXnsGXwsbtBD1By35NVPhVCAeAFagxeh33w="; + rev = "7894b0368a5beeaca95fc0d421a7b67d3a818681"; + hash = "sha256-nCuMnUZgprNna4MZmA721iTiAOpOEEsINqc6vrD+cYo="; }; meta.homepage = "https://github.com/AstroNvim/astrotheme/"; meta.hydraPlatforms = [ ]; @@ -1181,12 +1181,12 @@ final: prev: { aurora = buildVimPlugin { pname = "aurora"; - version = "0-unstable-2025-04-07"; + version = "0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "ray-x"; repo = "aurora"; - rev = "8524a501e42636b8697d6630c6076058ab02de49"; - hash = "sha256-u5IXL7ny2/I++evWPZE566EEkFOSkAXBCtSGBetGFGg="; + rev = "ac4dda6839e6057d7752dfeb76394f19a5387238"; + hash = "sha256-GSelduKp3s2M6litBAbxGBCoGnD4elNyAAXyrOQwCLw="; }; meta.homepage = "https://github.com/ray-x/aurora/"; meta.hydraPlatforms = [ ]; @@ -1259,12 +1259,12 @@ final: prev: { auto-session = buildVimPlugin { pname = "auto-session"; - version = "0-unstable-2026-02-09"; + version = "0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "rmagatti"; repo = "auto-session"; - rev = "dcbc339a1a0e6505f755d980ad11f892b6a8d492"; - hash = "sha256-NOEMxpl2J1QBx5s1u6PpEwjNxYB2bWQ6luYdl+v1j54="; + rev = "62437532b38495551410b3f377bcf4aaac574ebe"; + hash = "sha256-VboD/4FNA/LVad0Nu/ul43pcUMnwpNpP0cAhs14u3dI="; }; meta.homepage = "https://github.com/rmagatti/auto-session/"; meta.hydraPlatforms = [ ]; @@ -1454,12 +1454,12 @@ final: prev: { base16-nvim = buildVimPlugin { pname = "base16-nvim"; - version = "0-unstable-2026-02-12"; + version = "0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "RRethy"; repo = "base16-nvim"; - rev = "21f2946e45cb92a336638d68c8de292fdf451d0c"; - hash = "sha256-CFY3xOLmEmlZfhidyHGwKO15NvUeoAfVdnr7C5nWywQ="; + rev = "80ce668de796d1564d875a3c31822b4db3ae1d91"; + hash = "sha256-x5tYFb2K0k+RTZhcDctzAnJrJxuROp2e3NnG7ez/hjU="; }; meta.homepage = "https://github.com/RRethy/base16-nvim/"; meta.hydraPlatforms = [ ]; @@ -1623,12 +1623,12 @@ final: prev: { blink-cmp-dictionary = buildVimPlugin { pname = "blink-cmp-dictionary"; - version = "3.0.0-unstable-2026-02-09"; + version = "3.0.1-unstable-2026-02-16"; src = fetchFromGitHub { owner = "Kaiser-Yang"; repo = "blink-cmp-dictionary"; - rev = "07d5f9dc1b83be8b60483418c1a7ab9bd2c87602"; - hash = "sha256-Z8HEAT7wCmZRIhXoy50mopM1llMBWplb7IidYVqaZbA="; + rev = "a39c05e1f535ecf89b95777e471d0bf2569acb8b"; + hash = "sha256-O8j93VWUfa6Bhv9aPAQkmr3sVf9rp+ftkqmch8kAkWo="; }; meta.homepage = "https://github.com/Kaiser-Yang/blink-cmp-dictionary/"; meta.hydraPlatforms = [ ]; @@ -1818,12 +1818,12 @@ final: prev: { blink-ripgrep-nvim = buildVimPlugin { pname = "blink-ripgrep.nvim"; - version = "2.2.2-unstable-2026-02-14"; + version = "2.2.2-unstable-2026-02-19"; src = fetchFromGitHub { owner = "mikavilpas"; repo = "blink-ripgrep.nvim"; - rev = "a089cfe705492829d337767c71ce3f712e870e81"; - hash = "sha256-t3/dypJLb6lZwGUutA9Tqj4OHHOQmlk5NdoZp0txNtQ="; + rev = "735af6c5d531f39c253c6270356c822a5d0fe03d"; + hash = "sha256-oZrw4ywCSF2g6Eu0662wSuLR6YhasM1rQ1bHqNQDKwQ="; }; meta.homepage = "https://github.com/mikavilpas/blink-ripgrep.nvim/"; meta.hydraPlatforms = [ ]; @@ -2039,12 +2039,12 @@ final: prev: { catppuccin-nvim = buildVimPlugin { pname = "catppuccin-nvim"; - version = "1.11.0-unstable-2026-01-08"; + version = "1.11.0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "beaf41a30c26fd7d6c386d383155cbd65dd554cd"; - hash = "sha256-cZ6VeF69s0eQ9I7Tz8MoEKuF9w+TbA94vXj2EuDoSgU="; + rev = "0a5de4da015a175f416d6ef1eda84661623e0500"; + hash = "sha256-0kxEY6QowwlDlGbxj5FI1MlEeeTcPfcf8PK+sgjYmb0="; }; meta.homepage = "https://github.com/catppuccin/nvim/"; meta.hydraPlatforms = [ ]; @@ -2780,12 +2780,12 @@ final: prev: { cmp-nvim-ultisnips = buildVimPlugin { pname = "cmp-nvim-ultisnips"; - version = "1.0.0-unstable-2024-08-02"; + version = "1.0.0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "quangnguyen30192"; repo = "cmp-nvim-ultisnips"; - rev = "2be0eda0f7fbf47ebd9fbdace369cc45d57acf49"; - hash = "sha256-cwnOABVkZOwvMqcZJKy0YlQT91cLkKkoVNWzGy6qMl0="; + rev = "43ee7b9b112511f8442324773cc7680aa94cd20e"; + hash = "sha256-KDjD7vuMceuqEZX7EDC2L1bzGqBBroSIzeLnRQxqtI0="; }; meta.homepage = "https://github.com/quangnguyen30192/cmp-nvim-ultisnips/"; meta.hydraPlatforms = [ ]; @@ -3118,12 +3118,12 @@ final: prev: { coc-nvim = buildVimPlugin { pname = "coc.nvim"; - version = "0.0.82-unstable-2026-02-11"; + version = "0.0.82-unstable-2026-02-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc.nvim"; - rev = "acaac49d5d3fe358ce0d67c91d78b1ada683d148"; - hash = "sha256-Ybx0ylQpUmOqzfVg/qHUGqyoj8Y5su7W3ZlMkzaNnus="; + rev = "b2874f4ad26754ba0c6deaa00bc46f5ab7b0050c"; + hash = "sha256-pZb/eD+FgyKjRx4tXcYPxDxqc0gDfsRotPzhQKQOiFc="; }; meta.homepage = "https://github.com/neoclide/coc.nvim/"; meta.hydraPlatforms = [ ]; @@ -3196,12 +3196,12 @@ final: prev: { codecompanion-nvim = buildVimPlugin { pname = "codecompanion.nvim"; - version = "18.6.0-unstable-2026-02-10"; + version = "18.7.0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "olimorris"; repo = "codecompanion.nvim"; - rev = "42cf6d1637fc8934421fe69745fd01098068ece6"; - hash = "sha256-PA5zZeFjQbR0zvi1gHac/aZLuHsgkZGtEvMmxAQmttU="; + rev = "558518f8d78a44198cd428f6bf8bf48bfa38d76d"; + hash = "sha256-QZddLQ+0BR0/T+UjJcdzL+y6gTyBslnvf8yFmLzLL3M="; }; meta.homepage = "https://github.com/olimorris/codecompanion.nvim/"; meta.hydraPlatforms = [ ]; @@ -3222,12 +3222,12 @@ final: prev: { codesettings-nvim = buildVimPlugin { pname = "codesettings.nvim"; - version = "1.6.2-unstable-2026-02-14"; + version = "1.6.2-unstable-2026-02-19"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "codesettings.nvim"; - rev = "4857deee017fded1fd9a04070909466448637e34"; - hash = "sha256-PpaNqvz3PV1lo6I6UtQ3uYJYPAu9thU5k1YkMSATS68="; + rev = "87ea60f13f51a6e9dc804becc139841bd818377a"; + hash = "sha256-GM2BD8K3CKzCW0GcaF/58CwZuoIejauDI4xOWeR8iwg="; }; meta.homepage = "https://github.com/mrjones2014/codesettings.nvim/"; meta.hydraPlatforms = [ ]; @@ -3300,12 +3300,12 @@ final: prev: { colorful-winsep-nvim = buildVimPlugin { pname = "colorful-winsep.nvim"; - version = "0-unstable-2026-01-19"; + version = "0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "nvim-zh"; repo = "colorful-winsep.nvim"; - rev = "cc514e64dd9b33f56d28fbd977ebd8397892e349"; - hash = "sha256-Sd1y7ITgYYT32k5OF0GueB+Uiu+ix+aUgIF+4aNn9Os="; + rev = "84432d9966fafaa08dd9040c98b0011045d8e964"; + hash = "sha256-xZKDP/9iG2+tt8nqNpirvCe5olNj/jLYrVV9D6o+UXk="; }; meta.homepage = "https://github.com/nvim-zh/colorful-winsep.nvim/"; meta.hydraPlatforms = [ ]; @@ -3352,12 +3352,12 @@ final: prev: { command-t = buildVimPlugin { pname = "command-t"; - version = "8.0-unstable-2025-12-30"; + version = "8.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "wincent"; repo = "command-t"; - rev = "a2dd6ab57f4570f72435a2ef1a47f6301b4ffebf"; - hash = "sha256-zO3HLATgCWdfqufrilInwcEStN2yuMvwMfZY1dZUSAQ="; + rev = "34b309f09b3bf4b9bed81db41e0abe127a2c91e9"; + hash = "sha256-/7q80NF6JkirzYuuZVh6p5CynIephrhPdVzOVi9tF2M="; }; meta.homepage = "https://github.com/wincent/command-t/"; meta.hydraPlatforms = [ ]; @@ -3626,12 +3626,12 @@ final: prev: { copilot-lua = buildVimPlugin { pname = "copilot.lua"; - version = "0-unstable-2026-02-06"; + version = "0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot.lua"; - rev = "3faffefbd6ddeb52578535ec6b730e0b72d7fd1a"; - hash = "sha256-pZjz2W9DERdHHNJS6ilLsfnCIdB7N0NaDYxjcyOvTKU="; + rev = "dd3e345d59051464573d821b042f0a0c82410b5d"; + hash = "sha256-0aPy0GE51H3HzhlX5eT4y/0BaFVRPY6kk5qMh/yY0+E="; }; meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; meta.hydraPlatforms = [ ]; @@ -3964,12 +3964,12 @@ final: prev: { darkearth-nvim = buildVimPlugin { pname = "darkearth-nvim"; - version = "2.1.0-unstable-2025-08-20"; + version = "2.3.0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "ptdewey"; repo = "darkearth-nvim"; - rev = "1a33a92f083f1ec069ce5653121cb181c0c4cdf3"; - hash = "sha256-Iwl1neb5uLFsmYwIMtpQMnwx94cVYIg/z4Xgo2QIkzE="; + rev = "42bbec786c12079262ef068b1ee53957032a0cc9"; + hash = "sha256-1so2RdpRuKUowCM6CxZq9CEgPxN3zh121tsryInTj1w="; }; meta.homepage = "https://github.com/ptdewey/darkearth-nvim/"; meta.hydraPlatforms = [ ]; @@ -4811,12 +4811,12 @@ final: prev: { easy-dotnet-nvim = buildVimPlugin { pname = "easy-dotnet.nvim"; - version = "0-unstable-2026-02-14"; + version = "0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "GustavEikaas"; repo = "easy-dotnet.nvim"; - rev = "fee00df7d4671b10bb31c13e980acee934b3572a"; - hash = "sha256-DhemkqxpOuNF2UmJ3kWY/b3BzdFQgVLuvCsYswpunik="; + rev = "14ed344ab36318ea76507d661d838fb8c218b217"; + hash = "sha256-q6RiyDlPdBEQm7dG3TdRBdbQRFlj6lCRKXkWFqL+LXU="; }; meta.homepage = "https://github.com/GustavEikaas/easy-dotnet.nvim/"; meta.hydraPlatforms = [ ]; @@ -5073,11 +5073,11 @@ final: prev: { evergarden-nvim = buildVimPlugin { pname = "evergarden-nvim"; - version = "0-unstable-2026-02-11"; + version = "0-unstable-2026-02-17"; src = fetchgit { url = "https://codeberg.org/evergarden/nvim"; - rev = "1949d2b7ed441f18e0e58cd23ac4dfdd91b332e9"; - hash = "sha256-n40y4UTWjxZq6m1Gc8gN6S4fSbEYBCCe1JEsM9O8pdQ="; + rev = "99c96fb681512531222c309206f94b6f97ee68d7"; + hash = "sha256-WVLSJtK37dst8PBKwWW2tqZvY6Qy2aYpMqz3ptdbRg4="; }; meta.homepage = "https://codeberg.org/evergarden/nvim"; meta.hydraPlatforms = [ ]; @@ -6192,12 +6192,12 @@ final: prev: { gruvbox-nvim = buildVimPlugin { pname = "gruvbox.nvim"; - version = "2.0.0-unstable-2026-01-13"; + version = "2.0.0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "ellisonleao"; repo = "gruvbox.nvim"; - rev = "a472496e1a4465a2dd574389dcf6cdb29af9bf1b"; - hash = "sha256-dotM6G4JG1dC9/JwHDR+lg4bMv7zPVI9MgEqCgCGECQ="; + rev = "561126520034a1dac2f78ab063db025d12555998"; + hash = "sha256-15WvcgoOa+aLRgj6Sqnq17EnjRR7w6Gntzc7f4gdJmU="; }; meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; meta.hydraPlatforms = [ ]; @@ -6831,12 +6831,12 @@ final: prev: { inc-rename-nvim = buildVimPlugin { pname = "inc-rename.nvim"; - version = "0-unstable-2025-11-05"; + version = "0-unstable-2026-02-15"; src = fetchFromGitHub { owner = "smjonas"; repo = "inc-rename.nvim"; - rev = "2597bccb57d1b570fbdbd4adf88b955f7ade715b"; - hash = "sha256-IoB6TM8DFq1hCJof5wOap5hrv5HrPheJjGVRyXFekAQ="; + rev = "a2f4b564c72ea1f22cba2caa97db603618d16d6f"; + hash = "sha256-jnv0GLBqqD13FMU9HE+PWY/CxtK3k6iGWaRnDRpTEXM="; }; meta.homepage = "https://github.com/smjonas/inc-rename.nvim/"; meta.hydraPlatforms = [ ]; @@ -6896,12 +6896,12 @@ final: prev: { indent-blankline-nvim = buildVimPlugin { pname = "indent-blankline.nvim"; - version = "3.9.0-unstable-2025-03-17"; + version = "3.9.1-unstable-2026-02-17"; src = fetchFromGitHub { owner = "lukas-reineke"; repo = "indent-blankline.nvim"; - rev = "005b56001b2cb30bfa61b7986bc50657816ba4ba"; - hash = "sha256-0q/V+b4UrDRnaC/eRWOi9HU9a61vQSAM9/C8ZQyKt+Y="; + rev = "d28a3f70721c79e3c5f6693057ae929f3d9c0a03"; + hash = "sha256-Vc79ff416uJFqKH8zlM1y208SxaQGpQPqGVbiz5Vflg="; }; meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; meta.hydraPlatforms = [ ]; @@ -7157,12 +7157,12 @@ final: prev: { jj-nvim = buildVimPlugin { pname = "jj.nvim"; - version = "0.4.1-unstable-2026-02-13"; + version = "0.4.1-unstable-2026-02-19"; src = fetchFromGitHub { owner = "NicolasGB"; repo = "jj.nvim"; - rev = "3d78c28f7e26d5c87f53e66e05a1393e6ca9fec2"; - hash = "sha256-G7ksxOJJmQeTbsdAYddSFWUs9kyW/nIL4mv0F3FiXAI="; + rev = "86d15cecec172f343c22a70c7e4fa5a052d34244"; + hash = "sha256-Lwjz/3s4o29W8cC5XsPXafipIh33K973ZPaFNjIDoqo="; }; meta.homepage = "https://github.com/NicolasGB/jj.nvim/"; meta.hydraPlatforms = [ ]; @@ -7548,12 +7548,12 @@ final: prev: { lean-nvim = buildVimPlugin { pname = "lean.nvim"; - version = "2025.10.1-unstable-2026-02-06"; + version = "2025.10.1-unstable-2026-02-17"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "d6d480493345f0f6c02979a91622c6d5f186307d"; - hash = "sha256-uvADPSaW8kSsSdakE9Q2jqoSzGE2hhZxMsHwCJyN/RM="; + rev = "7b2807a759b9b895e6e5e20ae4b147074584fd9c"; + hash = "sha256-0ybbB3/HWT9zudIlArbxzwUQR2o9DkBg8acYG1jTrls="; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; meta.hydraPlatforms = [ ]; @@ -7587,11 +7587,11 @@ final: prev: { leap-nvim = buildVimPlugin { pname = "leap.nvim"; - version = "0-unstable-2026-02-10"; + version = "0-unstable-2026-02-17"; src = fetchgit { url = "https://codeberg.org/andyg/leap.nvim/"; - rev = "9a26da7a14c09cd84c05a4e8326890ef0f92a590"; - hash = "sha256-DzsXBRGGgS5KU5qPmU/bO/B7+kso7tIwhcftCyLdKMM="; + rev = "eda0138a408a5600c45e324c69fe73c9df30939c"; + hash = "sha256-KI6wQLoLiI4g/X8//uVHlfcW7cW/u5xwb7WhBHfNsKM="; }; meta.homepage = "https://codeberg.org/andyg/leap.nvim/"; meta.hydraPlatforms = [ ]; @@ -8314,12 +8314,12 @@ final: prev: { maple-nvim = buildVimPlugin { pname = "maple.nvim"; - version = "0.1.3-unstable-2025-11-04"; + version = "0.2.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "forest-nvim"; repo = "maple.nvim"; - rev = "6fce52a264005884003567fd75978a4503ba8386"; - hash = "sha256-yIX1+b3GHnkPAiDz6vH/WtfvTgc39ilM78F1dtRx+DI="; + rev = "6b9be3d52a12487469b80c2e3bad27241f210dd0"; + hash = "sha256-iejN+W0pWyjaS0q+EJKnbvMiIiYHrJ2K1Jl6mLjcWQM="; }; meta.homepage = "https://github.com/forest-nvim/maple.nvim/"; meta.hydraPlatforms = [ ]; @@ -8640,12 +8640,12 @@ final: prev: { mini-ai = buildVimPlugin { pname = "mini.ai"; - version = "0.17.0-unstable-2026-01-17"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.ai"; - rev = "9eae720f2b20f6ad28cbfa0ddc524e10dc2c3201"; - hash = "sha256-Ehib6aeth855q4DKgdVxDXZ+Cgp0qFBa5Nr7E0LogcU="; + rev = "b0247752cf629ce7c6bd0a1efd82fb58ff60f9d6"; + hash = "sha256-ej4G9SxjQxLa+VaroxOJls9+EQZY60iBxRjHkC+4tmk="; }; meta.homepage = "https://github.com/nvim-mini/mini.ai/"; meta.hydraPlatforms = [ ]; @@ -8653,12 +8653,12 @@ final: prev: { mini-align = buildVimPlugin { pname = "mini.align"; - version = "0.17.0-unstable-2026-01-17"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.align"; - rev = "6d8a6ca3a0fd313938374abccb50cad026229db3"; - hash = "sha256-4GxHFM4aIDaDVZk1uM5DS3t0JEaRMX5TdZPf8qm/yVY="; + rev = "94a80efd1979839121bf011c856acb0459598433"; + hash = "sha256-AK5XAFGmiyqlelRRGU7j7Tee+Nt2mh+PRKFc0BVfgCM="; }; meta.homepage = "https://github.com/nvim-mini/mini.align/"; meta.hydraPlatforms = [ ]; @@ -8952,12 +8952,12 @@ final: prev: { mini-jump = buildVimPlugin { pname = "mini.jump"; - version = "0.17.0-unstable-2025-11-03"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.jump"; - rev = "99799e8ca33fe936b81a70b5ab9a081f8794c8a1"; - hash = "sha256-nWrWtsnNECCFFSKBwC7pujgVdEJhHSc8i/TivOI35cU="; + rev = "827d9bdabc47147e9f62d48bf9dbf0df5c2dc4c5"; + hash = "sha256-Lh3v4OP1e+ppcvKRkKP1tp/Polfn7XeWMJIbQVULUOw="; }; meta.homepage = "https://github.com/nvim-mini/mini.jump/"; meta.hydraPlatforms = [ ]; @@ -8965,12 +8965,12 @@ final: prev: { mini-jump2d = buildVimPlugin { pname = "mini.jump2d"; - version = "0.17.0-unstable-2026-01-17"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.jump2d"; - rev = "3cac3679b6fecbdfeeffaa0a6e23f43c8f0df29f"; - hash = "sha256-TGn+61ZyjWkrNH4BQ8kXQonSglzYfAWofG8U16tYnc8="; + rev = "c142dfbb60f22968bfda2968b70d820948388c5c"; + hash = "sha256-6Oy3RZvycGZnBk+BY+B7PJTKGWa7z90iAxSx9as5PRU="; }; meta.homepage = "https://github.com/nvim-mini/mini.jump2d/"; meta.hydraPlatforms = [ ]; @@ -9043,12 +9043,12 @@ final: prev: { mini-nvim = buildVimPlugin { pname = "mini.nvim"; - version = "0.17.0-unstable-2026-02-14"; + version = "0.17.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.nvim"; - rev = "4ca988557786c9a4e41d5e5b6e31b4c9d7379f53"; - hash = "sha256-Naly7jCAcc9YFx3O5h2QrFfKRAaGUPBxMRQWvlMAWgQ="; + rev = "dbb073bd2ed4a7bb35daafc7989567f0ff1426ee"; + hash = "sha256-X3CM4KH+wKLAtV+TULmXMGXg8eeSSK+vwGCscYuC8Fo="; }; meta.homepage = "https://github.com/nvim-mini/mini.nvim/"; meta.hydraPlatforms = [ ]; @@ -9095,12 +9095,12 @@ final: prev: { mini-sessions = buildVimPlugin { pname = "mini.sessions"; - version = "0.17.0-unstable-2025-11-03"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.sessions"; - rev = "6b69f4cf206ed8560669446a0310937d88e1c871"; - hash = "sha256-rPBKLx9RPIK/hG6vlk3yosBEO1rVASpfUoM+wYRKQmw="; + rev = "e4890a2cecfbb35d9ecc8449568d41b1d30cb358"; + hash = "sha256-JDTI2u5j2RrATG4CvtgjlDuuZhLXMjvuwp/q4v3AB8k="; }; meta.homepage = "https://github.com/nvim-mini/mini.sessions/"; meta.hydraPlatforms = [ ]; @@ -9160,12 +9160,12 @@ final: prev: { mini-surround = buildVimPlugin { pname = "mini.surround"; - version = "0.17.0-unstable-2026-02-03"; + version = "0.17.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-mini"; repo = "mini.surround"; - rev = "d648a5601e1c48f175b07d10eba141da338a0a2a"; - hash = "sha256-rw1Dut9qVqvwaH0VOqsA4E5CpFxiorJHJCQZAFXCxIU="; + rev = "01dd2620e50ebc0f28f7d4ea2db6f846f1540c95"; + hash = "sha256-rT/FleAco1JSSGkNS2y9qc+E7ZrLkO/fhKUNBMAgOiM="; }; meta.homepage = "https://github.com/nvim-mini/mini.surround/"; meta.hydraPlatforms = [ ]; @@ -9251,12 +9251,12 @@ final: prev: { mkdnflow-nvim = buildVimPlugin { pname = "mkdnflow.nvim"; - version = "2.15.0-unstable-2026-02-13"; + version = "2.20.1-unstable-2026-02-18"; src = fetchFromGitHub { owner = "jakewvincent"; repo = "mkdnflow.nvim"; - rev = "cd00051e84762ea17edc525305887660fa6752fc"; - hash = "sha256-xsoE3kp8N4IYsfuRJYk5Ob8gKmGEZRaAeRkwKm/aq8s="; + rev = "c6b2a37c031b66f5535e930698dda4bfc34b1bf3"; + hash = "sha256-rs9MeEd02L7CN88DmgRsFiah5fy7NHEGla4MwSPDpAw="; }; meta.homepage = "https://github.com/jakewvincent/mkdnflow.nvim/"; meta.hydraPlatforms = [ ]; @@ -9719,12 +9719,12 @@ final: prev: { neo-tree-nvim = buildVimPlugin { pname = "neo-tree.nvim"; - version = "3.38.0-unstable-2026-02-13"; + version = "3.38.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-neo-tree"; repo = "neo-tree.nvim"; - rev = "1d682ea4b77890e4cdb7e6da17368a46ebdd6fb2"; - hash = "sha256-pd+PSYmmO5xqDDIgqkjXmzyLpvDpQ98jxFxKpomAaXU="; + rev = "9a1f0461c4cc62e64616bafe9425572ff6a5f245"; + hash = "sha256-l2JVLEyW6s1A83sifTZklMRtTwWF9gzK3rLBJRJiYEM="; }; meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; meta.hydraPlatforms = [ ]; @@ -9745,12 +9745,12 @@ final: prev: { neoconf-nvim = buildVimPlugin { pname = "neoconf.nvim"; - version = "1.4.0-unstable-2026-02-14"; + version = "1.4.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "ace3447e4e800deb13f00bf2af275e0b7c9488c0"; - hash = "sha256-lyIR17HCyvPAQld9vLRI0DPEbUz6A+0JbuFwn7bFh+w="; + rev = "ee74a07465efff0338b1093b0f9c7e2bbeb479f9"; + hash = "sha256-N5efKIEYHKG3pyPuwSbrAODcZIfJYG5Dw9aLmok3rsE="; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; meta.hydraPlatforms = [ ]; @@ -9823,12 +9823,12 @@ final: prev: { neogit = buildVimPlugin { pname = "neogit"; - version = "3.0.0-unstable-2026-02-12"; + version = "3.0.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "NeogitOrg"; repo = "neogit"; - rev = "75ca811db3ca3e43137596d25d26e57331540ee0"; - hash = "sha256-zJyLNQPSTL1o7IZiKYxMhEz9OcadYOTszMrPpV5MAj0="; + rev = "22433eae87236c217e0810c836fa5e529c043d4c"; + hash = "sha256-RjrnabiSs0NVYcUC+uOIQNAM0CY+tqmoR2y3JWMCIDw="; }; meta.homepage = "https://github.com/NeogitOrg/neogit/"; meta.hydraPlatforms = [ ]; @@ -10138,12 +10138,12 @@ final: prev: { neotest-haskell = buildVimPlugin { pname = "neotest-haskell"; - version = "3.0.1-unstable-2026-02-08"; + version = "3.0.1-unstable-2026-02-17"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "neotest-haskell"; - rev = "14106f0bc345fdb1273ff38935bc770fd55ca38c"; - hash = "sha256-qvrEjfKajwPyZStiSDujKKnu5vIVyoCpsJlhC+zfamw="; + rev = "0e6fd549b0906c23d8522faebab34072a4149ff9"; + hash = "sha256-jDQ8U/By+Edn+WdKec4A1mKDWY9vUz1iZEWJw52mAxo="; }; meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; meta.hydraPlatforms = [ ]; @@ -10644,12 +10644,12 @@ final: prev: { nlsp-settings-nvim = buildVimPlugin { pname = "nlsp-settings.nvim"; - version = "0-unstable-2026-02-13"; + version = "0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "tamago324"; repo = "nlsp-settings.nvim"; - rev = "c7dcbbf3b63eef63a801fa87014fe1e9203a7e05"; - hash = "sha256-SUCMPyMbtL8YD4bmpC3YTRCGqIUKk4RKD/DzC1bMO2M="; + rev = "1dea7acd79c90ed71f19b82e9e7c53d5bc1570c0"; + hash = "sha256-KXgIPkPpHkiOYpt4e3vfzS3aaGEbaNR3H+43KqAcw5M="; }; meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; meta.hydraPlatforms = [ ]; @@ -10722,12 +10722,12 @@ final: prev: { none-ls-nvim = buildVimPlugin { pname = "none-ls.nvim"; - version = "0-unstable-2026-02-04"; + version = "0-unstable-2026-02-16"; src = fetchFromGitHub { owner = "nvimtools"; repo = "none-ls.nvim"; - rev = "68ed8b9bf5dfdae4d579fcd19723926f84d7b6cb"; - hash = "sha256-thbg8cmtpkKhAhKHlYCqCfi2HxceLe2H6me14hQm1vs="; + rev = "f61f46ded0ca9edce7a09b674f8e162d10921426"; + hash = "sha256-x/x3eQwc9HrdYvpqOkvhiXvO6i/NbutFrAPGl2VcVkY="; }; meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; meta.hydraPlatforms = [ ]; @@ -11175,12 +11175,12 @@ final: prev: { nvim-dap-view = buildVimPlugin { pname = "nvim-dap-view"; - version = "0-unstable-2026-02-11"; + version = "0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "igorlfs"; repo = "nvim-dap-view"; - rev = "8d08da19c2108b1f2f45d13c7b9728fcbc5d831d"; - hash = "sha256-AMRay2JmyQ3WvPQ18eQShDh12yqehuPiqboinKNUUDg="; + rev = "4b2bd1773bbb0e2fa740ed6101dfeb50bd98ac38"; + hash = "sha256-GoKUDrk1ErgvTGXmE2oZOaQmNLiN7cnGMsyKQ4DPnmg="; }; meta.homepage = "https://github.com/igorlfs/nvim-dap-view/"; meta.hydraPlatforms = [ ]; @@ -11331,12 +11331,12 @@ final: prev: { nvim-highlite = buildVimPlugin { pname = "nvim-highlite"; - version = "4.21.0-unstable-2026-02-08"; + version = "4.22.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "Iron-E"; repo = "nvim-highlite"; - rev = "2de97e12b34ccb68acf4a3fc858cb9d0cc6fcd2f"; - hash = "sha256-0d9INWHvLamJufhdppQFLwxwslwxYceN+NiEeDapz4k="; + rev = "5f012564a38a5f0e9883a955c582f9cdb728431e"; + hash = "sha256-ovXz31+cIDzai8sQj4jBLiVrEbu+IF5TTz37xsF+8A8="; }; meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; meta.hydraPlatforms = [ ]; @@ -11473,12 +11473,12 @@ final: prev: { nvim-k8s-crd = buildVimPlugin { pname = "nvim-k8s-crd"; - version = "0-unstable-2025-12-12"; + version = "0-unstable-2026-02-16"; src = fetchFromGitHub { owner = "anasinnyk"; repo = "nvim-k8s-crd"; - rev = "c87cfdccfea006b6c0b2304220904402f4c95ca3"; - hash = "sha256-tvjelqlA6tBTCBnUCSgqcp6h2Zwp8U3ecgiIvRajAh4="; + rev = "863672c95d52e0217a3363b6c8b978dd08610278"; + hash = "sha256-BleCITG11FKFAdSLjFyqJHDN3/zYV0ONvkmeRfoK4SI="; }; meta.homepage = "https://github.com/anasinnyk/nvim-k8s-crd/"; meta.hydraPlatforms = [ ]; @@ -11538,11 +11538,11 @@ final: prev: { nvim-lint = buildVimPlugin { pname = "nvim-lint"; - version = "0-unstable-2026-01-31"; + version = "0-unstable-2026-02-18"; src = fetchgit { url = "https://codeberg.org/mfussenegger/nvim-lint/"; - rev = "bcd1a44edbea8cd473af7e7582d3f7ffc60d8e81"; - hash = "sha256-VStV1yw2CkH/OhjRJj7ANuh4qBSE9LZQxFuJkQB9sqc="; + rev = "486474c2ace8d78d28995074dbdbe29011bc63d0"; + hash = "sha256-aK7iQMJJfUJO6KsafSHgDvGQXkf1V6jbNlLz0MNdM34="; }; meta.homepage = "https://codeberg.org/mfussenegger/nvim-lint/"; meta.hydraPlatforms = [ ]; @@ -11940,12 +11940,12 @@ final: prev: { nvim-scrollview = buildVimPlugin { pname = "nvim-scrollview"; - version = "6.3.0-unstable-2026-02-14"; + version = "6.3.0-unstable-2026-02-16"; src = fetchFromGitHub { owner = "dstein64"; repo = "nvim-scrollview"; - rev = "1b4a88844396e8a8ef9cec8a6c2e49a98f88b0f4"; - hash = "sha256-sY/PL7vRnGczL+JKWGjrHoRQEQbtNnc/O9HolYjgs98="; + rev = "0efc4e82094dbda2e411f7c8d44928716d00b655"; + hash = "sha256-McUlWmCQiyCmGP+O9pgsvINeMgHuJp6lCpcvyP1NPs0="; }; meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; meta.hydraPlatforms = [ ]; @@ -12109,12 +12109,12 @@ final: prev: { nvim-tree-lua = buildVimPlugin { pname = "nvim-tree.lua"; - version = "1.15.0-unstable-2026-02-14"; + version = "1.15.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-tree.lua"; - rev = "1df1960d0e3a26643a4100f64fa03b991b9f4b85"; - hash = "sha256-Q4AuJBbDu/xmA0Gy62aPRZ8T+Sy8q7GZ5GPCyzNkN0U="; + rev = "e11ce83ed9a00f065bf676ae4e6c261c766989ba"; + hash = "sha256-zUA1RxWhYz1x2OcO9DL+XxFvjcwnCQ0Pft+NQ/3+S+8="; }; meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; meta.hydraPlatforms = [ ]; @@ -12122,12 +12122,12 @@ final: prev: { nvim-treesitter = buildVimPlugin { pname = "nvim-treesitter"; - version = "0.10.0-unstable-2026-02-14"; + version = "0.10.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "4d9466677a5ceadef104eaa0fe08d60d91c4e9a7"; - hash = "sha256-hHvQaQg9BsFKc8jzXk6F5ns/O04VFXu27FMKjz13SDk="; + rev = "3edb01f912867603c2aef9079f208f0244c0885b"; + hash = "sha256-ywgu2j2Dt2YOGFgeWgJvdcCdYf5t9yINqT5CK8SLbHk="; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; meta.hydraPlatforms = [ ]; @@ -12499,12 +12499,12 @@ final: prev: { obsidian-nvim = buildVimPlugin { pname = "obsidian.nvim"; - version = "3.15.9-unstable-2026-02-14"; + version = "3.15.10-unstable-2026-02-18"; src = fetchFromGitHub { owner = "obsidian-nvim"; repo = "obsidian.nvim"; - rev = "e73c0d65b3c4777271ad01567580d03f98aaf23d"; - hash = "sha256-3cpWqD27I+fNgoJ0CkA2iYcxxTirgcYM2iOZVxmhfvg="; + rev = "20432a5ca03d99a9d5ad51d362e19d9b832e46f0"; + hash = "sha256-zS6pX05kGFEsKlHef6xkfqIBCtNPbgbNKvzqj8ld5KM="; }; meta.homepage = "https://github.com/obsidian-nvim/obsidian.nvim/"; meta.hydraPlatforms = [ ]; @@ -12785,12 +12785,12 @@ final: prev: { opencode-nvim = buildVimPlugin { pname = "opencode.nvim"; - version = "0.2.0-unstable-2026-02-14"; + version = "0.3.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "nickjvandyke"; repo = "opencode.nvim"; - rev = "d080eb4e4f03cfdcb3c5eacc88cc4e17bd8c1980"; - hash = "sha256-BTGf6XBBbn+K1FCl4PxEo35/4D7YK7waHZIdpT7yAlA="; + rev = "c06a18288d5487498ff6be164bc3a7fe171615dd"; + hash = "sha256-e6ju58Sky+FXtbz41DcQwY8n9jFLjA0SnQuMIbbDLlU="; }; meta.homepage = "https://github.com/nickjvandyke/opencode.nvim/"; meta.hydraPlatforms = [ ]; @@ -13385,12 +13385,12 @@ final: prev: { project-nvim = buildVimPlugin { pname = "project.nvim"; - version = "1.0.3-1-unstable-2026-02-14"; + version = "1.0.4-1-unstable-2026-02-16"; src = fetchFromGitHub { owner = "DrKJeff16"; repo = "project.nvim"; - rev = "14887685e2507cfa90c13710a066dcea399769e1"; - hash = "sha256-cXco0RNFGZiKS+rv4b32bIME4MaX8QDuEOm/mn0leUo="; + rev = "379f79a5405add7bd8390695f187fe07d5b46495"; + hash = "sha256-toPsSD9cQrAabM3rT4Pm7oavuk0pVUiBQOkR6RrH70I="; }; meta.homepage = "https://github.com/DrKJeff16/project.nvim/"; meta.hydraPlatforms = [ ]; @@ -13437,12 +13437,12 @@ final: prev: { pum-vim = buildVimPlugin { pname = "pum.vim"; - version = "2.0-unstable-2026-02-14"; + version = "2.0-unstable-2026-02-19"; src = fetchFromGitHub { owner = "Shougo"; repo = "pum.vim"; - rev = "5c17ead748c63b98d5dde6e6ee366263c0e98afc"; - hash = "sha256-SHHp3F08Ry9tXgVsIdUbuX4e9LMP5fQLADtRZIjDPCg="; + rev = "e4a023b7d910cf0955e73c4ae22425077e34dcf5"; + hash = "sha256-xWh0U1fVsyOJPXhooV6sPIn2RoyU4MmOSJyDWmQ/PM0="; }; meta.homepage = "https://github.com/Shougo/pum.vim/"; meta.hydraPlatforms = [ ]; @@ -14858,12 +14858,12 @@ final: prev: { substitute-nvim = buildVimPlugin { pname = "substitute.nvim"; - version = "2.0.0-unstable-2026-02-05"; + version = "2.0.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "gbprod"; repo = "substitute.nvim"; - rev = "4e55389c4e3331aa3a2e945e22ad19b1bd2c176c"; - hash = "sha256-ggBrsMc3R/Y5gKIftTuspROs59/d9HZTW6pBFY6FlrI="; + rev = "0d2077398552f069abccbd964a26dd7cd26882cd"; + hash = "sha256-t3wgyUtHab0erJkA7kUOGvbyHTzMmWlNE5WNtjDZL0g="; }; meta.homepage = "https://github.com/gbprod/substitute.nvim/"; meta.hydraPlatforms = [ ]; @@ -15890,12 +15890,12 @@ final: prev: { tinted-nvim = buildVimPlugin { pname = "tinted-nvim"; - version = "0-unstable-2026-01-16"; + version = "1.0.0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "tinted-theming"; repo = "tinted-nvim"; - rev = "7dfd6456abd855bed658c9589cf4b784aceab7bc"; - hash = "sha256-p3wM3oIYna39AtFf9SnuOK1kM6/RWc2ktjo0gE5fn1g="; + rev = "d23eddcf4ec6c59af6a8a64844ff02487e832007"; + hash = "sha256-7HueCGAKlEZUCnm+yAgmaRGMRejHJ38YSi0EXDeXh8U="; }; meta.homepage = "https://github.com/tinted-theming/tinted-nvim/"; meta.hydraPlatforms = [ ]; @@ -15903,12 +15903,12 @@ final: prev: { tinted-vim = buildVimPlugin { pname = "tinted-vim"; - version = "0-unstable-2026-02-12"; + version = "0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "tinted-theming"; repo = "tinted-vim"; - rev = "a2bcea64b9c2fd73b6dd681fbadfc01152d6f6ac"; - hash = "sha256-YFVf2+nRPtiWPEMaVNMJ7V1vpLYBlMJAE7NQHWbdTIM="; + rev = "097ffe816fef295197cf615bc0f65eff04a8a463"; + hash = "sha256-xuEcOgu2T/+OZT2bo3DsW3NifTQCRlkwJwbtxT/8gMA="; }; meta.homepage = "https://github.com/tinted-theming/tinted-vim/"; meta.hydraPlatforms = [ ]; @@ -16505,12 +16505,12 @@ final: prev: { unified-nvim = buildVimPlugin { pname = "unified.nvim"; - version = "0.0.2-unstable-2026-02-13"; + version = "0.0.2-unstable-2026-02-16"; src = fetchFromGitHub { owner = "axkirillov"; repo = "unified.nvim"; - rev = "430bb5565ffacbdfc964672f4ec094eea51a2af3"; - hash = "sha256-YDUvX0oF8YYH3AqCSYcIo5D0TJH9cnzNrx4VgY4kLfw="; + rev = "19ed2e122f8c856c0d9373ae6cd9b63355f3580a"; + hash = "sha256-oZ/nyb4pW2bRJNg8HXcCeKq0zvPjAtF/jCkjucc1+so="; }; meta.homepage = "https://github.com/axkirillov/unified.nvim/"; meta.hydraPlatforms = [ ]; @@ -16648,12 +16648,12 @@ final: prev: { vague-nvim = buildVimPlugin { pname = "vague.nvim"; - version = "1.6.0-unstable-2026-02-05"; + version = "1.6.0-unstable-2026-02-17"; src = fetchFromGitHub { owner = "vague-theme"; repo = "vague.nvim"; - rev = "c1ab4d4891ff3a27deba6a80222d895ac8ffb2e5"; - hash = "sha256-V9aKPbRI/dbSurFVvYnFTNVJGFsRmmUJEMQJAUfQvQI="; + rev = "24cd29d277bf5259ab347c49d223d8cfb9057565"; + hash = "sha256-P1M4zDPI7s753yvrpwZ13mR+oRZzH5Fol2YVILgmX3k="; }; meta.homepage = "https://github.com/vague-theme/vague.nvim/"; meta.hydraPlatforms = [ ]; @@ -16674,12 +16674,12 @@ final: prev: { venv-selector-nvim = buildVimPlugin { pname = "venv-selector.nvim"; - version = "0-unstable-2026-02-13"; + version = "0-unstable-2026-02-16"; src = fetchFromGitHub { owner = "linux-cultist"; repo = "venv-selector.nvim"; - rev = "5b738baf1ea8aac6ab1cf10f42aaeb495fce0c73"; - hash = "sha256-QM9wplHOeXpwGKwXCboKz66ykX/wR2xXfdtRvf6A91Q="; + rev = "d4367f29df803e1fe79c0aa8e4c6250cd0ff0e5f"; + hash = "sha256-Lzeag+BKDMAm4AYTUkj3hmGyKeSPhO3ZFlB+4cfjwIE="; }; meta.homepage = "https://github.com/linux-cultist/venv-selector.nvim/"; meta.hydraPlatforms = [ ]; @@ -16700,12 +16700,12 @@ final: prev: { vifm-vim = buildVimPlugin { pname = "vifm.vim"; - version = "0.14-unstable-2026-01-13"; + version = "0.14-unstable-2026-02-19"; src = fetchFromGitHub { owner = "vifm"; repo = "vifm.vim"; - rev = "50b86897b07ba9c0efd5b059a42d9f82aadd8dab"; - hash = "sha256-r5XvAWosAqaZkE6Jg99CEhk175gdUGsqLAyEnmVc/eY="; + rev = "a74d2474821ac8ff3f8db9d89b2d6ebda84ee3ca"; + hash = "sha256-6BD+tkNd4xRuRKsEOkgJ0cggPhEkrgH9LH+8gmWmFqw="; }; meta.homepage = "https://github.com/vifm/vifm.vim/"; meta.hydraPlatforms = [ ]; @@ -18715,12 +18715,12 @@ final: prev: { vim-gist = buildVimPlugin { pname = "vim-gist"; - version = "7.3-unstable-2022-10-09"; + version = "7.3-unstable-2026-02-17"; src = fetchFromGitHub { owner = "mattn"; repo = "vim-gist"; - rev = "5bfbb5450d9eff248f6c074de0b7800392439304"; - hash = "sha256-wDF+k5yKHEuW7bOWbPNpEOQKlnltHpOIi5OuJVOh2wM="; + rev = "515285dd3daf564668d254fd71bec486e1e5adb8"; + hash = "sha256-UcXQuZ/JTllktD0QlqxGbvTlwqdhHVRRS/v6JOmYnd4="; }; meta.homepage = "https://github.com/mattn/vim-gist/"; meta.hydraPlatforms = [ ]; @@ -18832,12 +18832,12 @@ final: prev: { vim-go = buildVimPlugin { pname = "vim-go"; - version = "1.29-unstable-2026-02-04"; + version = "1.29-unstable-2026-02-16"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "a5a612535a92d68a4282d1c8dde901275c0c1260"; - hash = "sha256-ayBy3SkoPwJsa5B+uVfOUOJxB/9iGTrxne2z2ToUpXw="; + rev = "24528ad835451465ed605638d6416051cac53057"; + hash = "sha256-bUgM5zhL/ue9WZQr1NSg7xo1CIcPNIicrFMkf9lueHY="; }; meta.homepage = "https://github.com/fatih/vim-go/"; meta.hydraPlatforms = [ ]; @@ -19353,7 +19353,7 @@ final: prev: { vim-javascript = buildVimPlugin { pname = "vim-javascript"; - version = "0-unstable-2025-03-21"; + version = "1.2.5.1-unstable-2025-03-21"; src = fetchFromGitHub { owner = "pangloss"; repo = "vim-javascript"; @@ -19835,12 +19835,12 @@ final: prev: { vim-lsp-settings = buildVimPlugin { pname = "vim-lsp-settings"; - version = "0.0.1-unstable-2026-02-08"; + version = "0.0.1-unstable-2026-02-18"; src = fetchFromGitHub { owner = "mattn"; repo = "vim-lsp-settings"; - rev = "6b7b49d577b4c3297bd6058e3fd0fda06abee86f"; - hash = "sha256-wCy36iCgrNvPm/2djO/2qNjewr+Tc0F5R8jDvNP3Z3w="; + rev = "e8926187fccc86204ddc67dec2b0300a2335a461"; + hash = "sha256-kY2Dj2n26NidL+suVBfdaFTiVzAid+qZ4JGQdEaYADs="; }; meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; meta.hydraPlatforms = [ ]; @@ -20667,12 +20667,12 @@ final: prev: { vim-plug = buildVimPlugin { pname = "vim-plug"; - version = "0.14.0-unstable-2026-02-09"; + version = "0.14.0-unstable-2026-02-18"; src = fetchFromGitHub { owner = "junegunn"; repo = "vim-plug"; - rev = "d72ac8734f64a0c35afd6320320e5718401aa9ca"; - hash = "sha256-ZvguN4CKSKRcj24iLq533qyOsPl4zkn55C6GTOFDGSo="; + rev = "34467fc07d1bf1b3a6588e9d62711b9f7a8afda3"; + hash = "sha256-8jvqRqkR2libYj7pC6nUpdqla9Cid8qWhA4rumMSkbY="; }; meta.homepage = "https://github.com/junegunn/vim-plug/"; meta.hydraPlatforms = [ ]; @@ -21512,12 +21512,12 @@ final: prev: { vim-spirv = buildVimPlugin { pname = "vim-spirv"; - version = "0.5.2-unstable-2026-01-22"; + version = "0.5.2-unstable-2026-02-19"; src = fetchFromGitHub { owner = "kbenzie"; repo = "vim-spirv"; - rev = "d14f56dad939888a434cda1fd3701df621e5e338"; - hash = "sha256-kGk0TPAOcTztCRIIHMOMNeaUpa9sgtyvgY6+dWce80o="; + rev = "4869f235a6c8b57769cbe8c36bf09f9213eaeb0d"; + hash = "sha256-r9RBARho9zXTPREuGa57p4Y7/u7R7Y60cwbncxHVZCs="; }; meta.homepage = "https://github.com/kbenzie/vim-spirv/"; meta.hydraPlatforms = [ ]; @@ -21551,12 +21551,12 @@ final: prev: { vim-startuptime = buildVimPlugin { pname = "vim-startuptime"; - version = "4.5.0-unstable-2025-02-18"; + version = "4.5.0-unstable-2026-02-16"; src = fetchFromGitHub { owner = "dstein64"; repo = "vim-startuptime"; - rev = "b6f0d93f6b8cf6eee0b4c94450198ba2d6a05ff6"; - hash = "sha256-0YLDkU1y89O5z7tgxaH5USQpJDfTuN0fsPJOAp6pa5Y="; + rev = "c12649b2458e34ec6dde8f1bdfe830661a613a6b"; + hash = "sha256-S5Zw0IGhTFykdxk+znYiSh+G6ru7YrjhEB1xJwKnF54="; }; meta.homepage = "https://github.com/dstein64/vim-startuptime/"; meta.hydraPlatforms = [ ]; @@ -22306,12 +22306,12 @@ final: prev: { vim-wayland-clipboard = buildVimPlugin { pname = "vim-wayland-clipboard"; - version = "0.2.1-unstable-2025-11-29"; + version = "0.2.1-unstable-2026-02-19"; src = fetchFromGitHub { owner = "jasonccox"; repo = "vim-wayland-clipboard"; - rev = "4d86e39267d979b12df4321e9c93d3100d9db033"; - hash = "sha256-j5rmBiU61BmxudkvQfr5POxCBuydavykOhZBjPIpRaQ="; + rev = "08fd1383f80e33f7e77418404cddd34a121a6c19"; + hash = "sha256-fMefGXCurk81eDjxdjQyP9o/Tjqm74SMo87C4I28UW0="; }; meta.homepage = "https://github.com/jasonccox/vim-wayland-clipboard/"; meta.hydraPlatforms = [ ]; @@ -22905,12 +22905,12 @@ final: prev: { wiki-vim = buildVimPlugin { pname = "wiki.vim"; - version = "0.11-unstable-2026-02-14"; + version = "0.11-unstable-2026-02-19"; src = fetchFromGitHub { owner = "lervag"; repo = "wiki.vim"; - rev = "ee5ab8718847c283fb42e0ee1a8c69c944627711"; - hash = "sha256-itFAhVMkHH9JRrbXi2EuY9fQ7sOIkFWNpkE68X+kV8E="; + rev = "c7e40c77b809adb09e4907055e096b5543c33218"; + hash = "sha256-FCvLjsKTtmbirVTmQBf1tGAJ3RAm4TG5i42VEDvblwA="; }; meta.homepage = "https://github.com/lervag/wiki.vim/"; meta.hydraPlatforms = [ ]; @@ -23231,12 +23231,12 @@ final: prev: { yazi-nvim = buildVimPlugin { pname = "yazi.nvim"; - version = "13.1.4-unstable-2026-02-14"; + version = "13.1.4-unstable-2026-02-19"; src = fetchFromGitHub { owner = "mikavilpas"; repo = "yazi.nvim"; - rev = "4bce02b7b963c1ca5728576ffc5e65168a4419f4"; - hash = "sha256-rpytZ/yFkj5bbO8pf43nsPDEpe4gPikW3WoEwZ1FLD4="; + rev = "102447e79eb4daf801546d113f141e57abdb38e4"; + hash = "sha256-XnH3A92FYo/SL7jAgx/5CbSg3HgVT78oSYDz94u2t5Q="; }; meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; meta.hydraPlatforms = [ ]; diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix index 0d536c21d7af..37cf2e450372 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix @@ -49,12 +49,12 @@ }; angular = buildGrammar { language = "angular"; - version = "0.0.0+rev=3bd2036"; + version = "0.0.0+rev=f0d0685"; src = fetchFromGitHub { owner = "dlvandenberg"; repo = "tree-sitter-angular"; - rev = "3bd2036e710f609ea08fcfca5a1eb1169ecc114f"; - hash = "sha256-VdfPZ39AEjvl+9r/LZNRGNIQsiTB9S065AnUc4MeohU="; + rev = "f0d0685701b70883fa2dfe94ee7dc27965cab841"; + hash = "sha256-rCecCdb/Bi90KsMvStNvldDPI73EDevA+QLXTYRwueg="; }; passthru.requires = [ "html" @@ -224,12 +224,12 @@ }; bpftrace = buildGrammar { language = "bpftrace"; - version = "0.0.0+rev=0978030"; + version = "0.0.0+rev=774f445"; src = fetchFromGitHub { owner = "sgruszka"; repo = "tree-sitter-bpftrace"; - rev = "0978030fdcdab74d49faaee2a60eb94607a367cc"; - hash = "sha256-dM4wuIB1Sg+Fnb7ldx62OOd7w14ewEX0Em27peSeDL0="; + rev = "774f4458ad39691336ead1ee361b22434c4cdec7"; + hash = "sha256-BIPAnkY9QcW+LSR9w1E7gsCAqpOYSBpG/FF7UQYm5XI="; }; meta.homepage = "https://github.com/sgruszka/tree-sitter-bpftrace"; }; @@ -268,12 +268,12 @@ }; c_sharp = buildGrammar { language = "c_sharp"; - version = "0.0.0+rev=f05a2ca"; + version = "0.0.0+rev=f1bf9a9"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-c-sharp"; - rev = "f05a2ca99d329de2e6c32f26a21c6169b2bfcbb7"; - hash = "sha256-pilqIL/c0V24hUKkQcuqUKLGypzL44un8F6+sDM+Ayg="; + rev = "f1bf9a9b8410b1ebea900e2e5fc000007d5ef99d"; + hash = "sha256-xvOjR6j64whwvFvop63jhDti2OrAIStvNy56OGUK6ZI="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; }; @@ -841,12 +841,12 @@ }; fortran = buildGrammar { language = "fortran"; - version = "0.0.0+rev=32fe27e"; + version = "0.0.0+rev=2880b7a"; src = fetchFromGitHub { owner = "stadelmanma"; repo = "tree-sitter-fortran"; - rev = "32fe27ec32b6a3bc2bc333566e6457f10fc7bbe3"; - hash = "sha256-SlbQpkfoIV0EN+nA2m53iojrSK0UilIJ4TO03wqgMw0="; + rev = "2880b7aab4fb7cc618de1ef3d4c6d93b2396c031"; + hash = "sha256-jXSzFAj+pOIHcfEckHxFBojW7axHI9E0If0UgH3j+Z0="; }; meta.homepage = "https://github.com/stadelmanma/tree-sitter-fortran"; }; @@ -1669,12 +1669,12 @@ }; kotlin = buildGrammar { language = "kotlin"; - version = "0.0.0+rev=6b97885"; + version = "0.0.0+rev=48c964a"; src = fetchFromGitHub { owner = "fwcd"; repo = "tree-sitter-kotlin"; - rev = "6b9788578ae23a1bc7c87e8d564e0daf7671dee3"; - hash = "sha256-WfFcXtJS5gtpp73as1lrAb4GLn8r5F/PNw4xAIWs+hw="; + rev = "48c964a9ddfe4387968d1b6412d7b39106fb7f39"; + hash = "sha256-m8oAv6W06MzFgJ7coaaypuElsrIVLFuIxBtSi08LuKI="; }; meta.homepage = "https://github.com/fwcd/tree-sitter-kotlin"; }; @@ -1860,12 +1860,12 @@ }; markdown = buildGrammar { language = "markdown"; - version = "0.0.0+rev=bd2d09e"; + version = "0.0.0+rev=cee71b8"; src = fetchFromGitHub { owner = "tree-sitter-grammars"; repo = "tree-sitter-markdown"; - rev = "bd2d09ecdbd36289bb7185c8751bbf14c5afe838"; - hash = "sha256-rlw/8L3UmKB3708BDALDBkKxlWrMyWSjplpt60MUoFo="; + rev = "cee71b8288f2ec09c29415219ac15a654bd571b9"; + hash = "sha256-8ZNPVaJoiTh1RSVwMsH8d6zG/asbNvDA2DOqHhKd3k0="; }; location = "tree-sitter-markdown"; passthru.requires = [ @@ -1875,12 +1875,12 @@ }; markdown_inline = buildGrammar { language = "markdown_inline"; - version = "0.0.0+rev=bd2d09e"; + version = "0.0.0+rev=cee71b8"; src = fetchFromGitHub { owner = "tree-sitter-grammars"; repo = "tree-sitter-markdown"; - rev = "bd2d09ecdbd36289bb7185c8751bbf14c5afe838"; - hash = "sha256-rlw/8L3UmKB3708BDALDBkKxlWrMyWSjplpt60MUoFo="; + rev = "cee71b8288f2ec09c29415219ac15a654bd571b9"; + hash = "sha256-8ZNPVaJoiTh1RSVwMsH8d6zG/asbNvDA2DOqHhKd3k0="; }; location = "tree-sitter-markdown-inline"; meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-markdown"; @@ -1931,12 +1931,12 @@ }; mlir = buildGrammar { language = "mlir"; - version = "0.0.0+rev=d2ba26e"; + version = "0.0.0+rev=e4d1566"; src = fetchFromGitHub { owner = "artagnon"; repo = "tree-sitter-mlir"; - rev = "d2ba26eeee7e3fd83a52236e1f143da42145ade7"; - hash = "sha256-kPll9hqe7Jn0XEuQ1ZSJxeF5gnJWu3e2XUwDIpZV04M="; + rev = "e4d15660e9984f742aa4bde95012d7e809ddb4d4"; + hash = "sha256-/X443+X6X4NXd8qhLMDm+19HFHGKiIAqVQtCwWzWJR0="; }; generate = true; meta.homepage = "https://github.com/artagnon/tree-sitter-mlir"; @@ -1976,12 +1976,12 @@ }; nickel = buildGrammar { language = "nickel"; - version = "0.0.0+rev=a0a5d98"; + version = "0.0.0+rev=b5b6cc3"; src = fetchFromGitHub { owner = "nickel-lang"; repo = "tree-sitter-nickel"; - rev = "a0a5d98a6f0edb5d00a18e62e7d1d02a5607c391"; - hash = "sha256-2la/9XxL2dN+rzTotgDXQFz9ktDXQ3Og9svX5Din2zo="; + rev = "b5b6cc3bc7b9ea19f78fed264190685419cd17a8"; + hash = "sha256-aPiOtpZJQQmAjCwx2Ssirhe6rqxbrwjxIWK5l3L14EY="; }; meta.homepage = "https://github.com/nickel-lang/tree-sitter-nickel"; }; @@ -2361,14 +2361,14 @@ }; proto = buildGrammar { language = "proto"; - version = "0.0.0+rev=e9f6b43"; + version = "0.0.0+rev=0e122d8"; src = fetchFromGitHub { - owner = "treywood"; + owner = "coder3101"; repo = "tree-sitter-proto"; - rev = "e9f6b43f6844bd2189b50a422d4e2094313f6aa3"; - hash = "sha256-Ue6w6HWy+NTJt+AKTFfJIUf3HXHTwkUkDk4UdDMSD+U="; + rev = "0e122d8444fd67cd8fb72fc927323b36807e7ace"; + hash = "sha256-fSloTD0QrV36YaB6e5zn/NkQVoZEWKTiK0PN+3DznuY="; }; - meta.homepage = "https://github.com/treywood/tree-sitter-proto"; + meta.homepage = "https://github.com/coder3101/tree-sitter-proto"; }; prql = buildGrammar { language = "prql"; @@ -3236,12 +3236,12 @@ }; tlaplus = buildGrammar { language = "tlaplus"; - version = "0.0.0+rev=8d749f9"; + version = "0.0.0+rev=add4081"; src = fetchFromGitHub { owner = "tlaplus-community"; repo = "tree-sitter-tlaplus"; - rev = "8d749f9a598b47b7110c7340006c8eb8a9552566"; - hash = "sha256-BX2JXlrFoUiZIa8EWkbv16HWygIv3rccGacLproIc18="; + rev = "add40814fda369f6efd989977b2c498aaddde984"; + hash = "sha256-nqbIpLHL2m+Mq6kI0hzVBrfyv5Xwdz+oeOFUslN5VsI="; }; meta.homepage = "https://github.com/tlaplus-community/tree-sitter-tlaplus"; }; diff --git a/pkgs/applications/editors/vim/vimacs.nix b/pkgs/applications/editors/vim/vimacs.nix index fbd53bf5791d..050f803fa0dd 100644 --- a/pkgs/applications/editors/vim/vimacs.nix +++ b/pkgs/applications/editors/vim/vimacs.nix @@ -9,13 +9,13 @@ vimacsExtraArgs ? "", }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "vimacs"; - version = lib.getVersion vimPackage; + version = lib.getVersion finalAttrs.vimPackage; vimPackage = if useMacvim then macvim else vim-full; buildInputs = [ - vimPackage + finalAttrs.vimPackage vimPlugins.vimacs ]; @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { --replace '--cmd "let g:VM_Enabled = 1"' \ '--cmd "let g:VM_Enabled = 1" --cmd "set rtp^=@rtp@" ${vimacsExtraArgs}' \ --replace @rtp@ ${vimPlugins.vimacs} \ - --replace @bin@ ${vimPackage} + --replace @bin@ ${finalAttrs.vimPackage} for prog in vm gvm gvimacs vmdiff vimacsdiff do ln -s "$out"/bin/vimacs $out/bin/$prog @@ -41,4 +41,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ millerjason ]; }; -} +}) diff --git a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix index 4aae962e8ed0..eb54c2761c67 100644 --- a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix +++ b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix @@ -5,7 +5,7 @@ ocamlPackages, }: -ocamlPackages.buildDunePackage rec { +ocamlPackages.buildDunePackage (finalAttrs: { pname = "analysis"; version = "1.62.0"; @@ -14,7 +14,7 @@ ocamlPackages.buildDunePackage rec { src = fetchFromGitHub { owner = "rescript-lang"; repo = "rescript-vscode"; - tag = version; + tag = finalAttrs.version; hash = "sha256-Tox5Qq0Kpqikac90sQww2cGr9RHlXnVy7GMnRA18CoA="; }; @@ -33,7 +33,7 @@ ocamlPackages.buildDunePackage rec { meta = { description = "Analysis binary for the ReScript VSCode plugin"; homepage = "https://github.com/rescript-lang/rescript-vscode"; - changelog = "https://github.com/rescript-lang/rescript-vscode/releases/tag/${version}"; + changelog = "https://github.com/rescript-lang/rescript-vscode/releases/tag/${finalAttrs.version}"; maintainers = with lib.maintainers; [ jayesh-bhoot RossSmyth @@ -41,4 +41,4 @@ ocamlPackages.buildDunePackage rec { license = lib.licenses.mit; mainProgram = "rescript-editor-analysis"; }; -} +}) diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix index 09c6a3b39c4e..60ef8d53553b 100644 --- a/pkgs/applications/editors/your-editor/default.nix +++ b/pkgs/applications/editors/your-editor/default.nix @@ -4,14 +4,14 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "your-editor"; version = "1601"; src = fetchFromGitHub { owner = "your-editor"; repo = "yed"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-pa9ibXyuWq7jRYsn3bGdqvLWbwQO2VYsP6Bk+BayQ8o="; }; @@ -25,9 +25,9 @@ stdenv.mkDerivation rec { meta = { description = "Small and simple terminal editor core that is meant to be extended through a powerful plugin architecture"; homepage = "https://your-editor.org/"; - changelog = "https://github.com/your-editor/yed/blob/${version}/CHANGELOG.md"; + changelog = "https://github.com/your-editor/yed/blob/${finalAttrs.version}/CHANGELOG.md"; license = with lib.licenses; [ mit ]; platforms = lib.platforms.unix; mainProgram = "yed"; }; -} +}) diff --git a/pkgs/applications/emulators/cdemu/vhba.nix b/pkgs/applications/emulators/cdemu/vhba.nix index 50a0140fd483..e0e836f2c08f 100644 --- a/pkgs/applications/emulators/cdemu/vhba.nix +++ b/pkgs/applications/emulators/cdemu/vhba.nix @@ -6,12 +6,12 @@ kernelModuleMakeFlags, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "vhba"; version = "20250329"; src = fetchurl { - url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.xz"; + url = "mirror://sourceforge/cdemu/vhba-module-${finalAttrs.version}.tar.xz"; hash = "sha256-piog1yDd8M/lpTIo9FE9SY2JwurZ6a8LG2lZ/4EmB14="; }; @@ -28,4 +28,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ bendlas ]; }; -} +}) diff --git a/pkgs/applications/emulators/firebird-emu/default.nix b/pkgs/applications/emulators/firebird-emu/default.nix index e0ff2b7c20a6..5ec7352d5774 100644 --- a/pkgs/applications/emulators/firebird-emu/default.nix +++ b/pkgs/applications/emulators/firebird-emu/default.nix @@ -8,14 +8,14 @@ qtquickcontrols, wrapQtAppsHook, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "firebird-emu"; version = "1.6"; src = fetchFromGitHub { owner = "nspire-emus"; repo = "firebird"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; fetchSubmodules = true; hash = "sha256-ZptjlnOiF+hKuKYvBFJL95H5YQuR99d4biOco/MVEmE="; }; @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' mkdir $out/Applications - mv $out/bin/${pname}.app $out/Applications/ + mv $out/bin/firebird-emu.app $out/Applications/ ''; meta = { homepage = "https://github.com/nspire-emus/firebird"; - changelog = "https://github.com/nspire-emus/firebird/releases/tag/v${version}"; + changelog = "https://github.com/nspire-emus/firebird/releases/tag/v${finalAttrs.version}"; description = "Third-party multi-platform emulator of the ARM-based TI-Nspireā„¢ calculators"; license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ pneumaticat ]; platforms = lib.platforms.unix; }; -} +}) diff --git a/pkgs/applications/emulators/goldberg-emu/default.nix b/pkgs/applications/emulators/goldberg-emu/default.nix index b8805406a195..99e21b7302ac 100644 --- a/pkgs/applications/emulators/goldberg-emu/default.nix +++ b/pkgs/applications/emulators/goldberg-emu/default.nix @@ -6,14 +6,14 @@ protobuf, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "goldberg-emu"; version = "0.2.5"; src = fetchFromGitLab { owner = "mr_goldberg"; repo = "goldberg_emulator"; - rev = version; + rev = finalAttrs.version; hash = "sha256-goOgMNjtDmIKOAv9sZwnPOY0WqTN90LFJ5iEp3Vkzog="; }; @@ -56,4 +56,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/emulators/wibo/default.nix b/pkgs/applications/emulators/wibo/default.nix index f0d0c6035a64..f982374e6b73 100644 --- a/pkgs/applications/emulators/wibo/default.nix +++ b/pkgs/applications/emulators/wibo/default.nix @@ -8,14 +8,14 @@ unzip, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "wibo"; version = "0.6.14"; src = fetchFromGitHub { owner = "decompals"; repo = "wibo"; - rev = version; + rev = finalAttrs.version; hash = "sha256-6YcraHBFWmm8TBfuFHbM9jGvUm9KvTOplJrFSTQkt70="; }; @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { meta.license = lib.licenses.unfree; }; in - lib.optionalString doCheck '' + lib.optionalString finalAttrs.doCheck '' MWCIncludes=../test ./wibo ${gc}/GC/2.7/mwcceppc.exe -c ../test/test.c file test.o | grep "ELF 32-bit" ''; @@ -56,4 +56,4 @@ stdenv.mkDerivation rec { platforms = [ "i686-linux" ]; mainProgram = "wibo"; }; -} +}) diff --git a/pkgs/applications/emulators/wine/winetricks.nix b/pkgs/applications/emulators/wine/winetricks.nix index 76a3eef7a497..346b14c453f3 100644 --- a/pkgs/applications/emulators/wine/winetricks.nix +++ b/pkgs/applications/emulators/wine/winetricks.nix @@ -21,9 +21,9 @@ versionCheckHook, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "winetricks"; - version = src.version; + version = finalAttrs.src.version; src = (callPackage ./sources.nix { }).winetricks; @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { ''; passthru = { - inherit (src) updateScript; + inherit (finalAttrs.src) updateScript; }; meta = { @@ -84,4 +84,4 @@ stdenv.mkDerivation rec { homepage = "https://github.com/Winetricks/winetricks"; platforms = with lib.platforms; linux ++ darwin; }; -} +}) diff --git a/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix b/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix index b440af5f92e0..ed296d119eda 100644 --- a/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix @@ -22,7 +22,7 @@ let ./silhouette_multi.py "$@" ''; in -python3.pkgs.buildPythonApplication rec { +python3.pkgs.buildPythonApplication (finalAttrs: { pname = "inkscape-silhouette"; version = "1.29"; format = "setuptools"; @@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "fablabnbg"; repo = "inkscape-silhouette"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; sha256 = "sha256-MfR88BuaAx6n5XRIjslpIk4PnDf6TLU9AsmHxKkcFS0="; }; @@ -91,4 +91,4 @@ python3.pkgs.buildPythonApplication rec { maintainers = with lib.maintainers; [ jfly ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/graphics/inkscape/extensions/textext/default.nix b/pkgs/applications/graphics/inkscape/extensions/textext/default.nix index ccb4a717e0fb..20f7f2a2a055 100644 --- a/pkgs/applications/graphics/inkscape/extensions/textext/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/textext/default.nix @@ -19,7 +19,7 @@ let ./__main__.py $* ''; in -python3.pkgs.buildPythonApplication rec { +python3.pkgs.buildPythonApplication (finalAttrs: { pname = "textext"; version = "1.13.0"; format = "setuptools"; @@ -27,7 +27,7 @@ python3.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "textext"; repo = "textext"; - tag = version; + tag = finalAttrs.version; sha256 = "sha256-fEPSpI9uO+r3d5p+gV1XcorYvUPw0sLgG9nHUPeTtYs="; }; @@ -124,4 +124,4 @@ python3.pkgs.buildPythonApplication rec { maintainers = [ lib.maintainers.raboof ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index c8faee73dc37..26c974ed4ad5 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -18,14 +18,14 @@ eigen, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "luminance-hdr"; version = "2.6.1.1"; src = fetchFromGitHub { owner = "LuminanceHDR"; repo = "LuminanceHDR"; - rev = "v.${version}"; + rev = "v.${finalAttrs.version}"; sha256 = "sha256-PWqtYGx8drfMVp7D7MzN1sIUTQ+Xz5yyeHN87p2r6PY="; }; @@ -87,4 +87,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/graphics/nufraw/default.nix b/pkgs/applications/graphics/nufraw/default.nix index 8a9fc312edb5..7d13351ba0ee 100644 --- a/pkgs/applications/graphics/nufraw/default.nix +++ b/pkgs/applications/graphics/nufraw/default.nix @@ -22,12 +22,12 @@ addThumbnailer ? false, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "nufraw"; version = "0.43-3"; src = fetchurl { - url = "mirror://sourceforge/nufraw/nufraw-${version}.tar.gz"; + url = "mirror://sourceforge/nufraw/nufraw-${finalAttrs.version}.tar.gz"; sha256 = "0b63qvw9r8kaqw36bk3a9zwxc41h8fr6498indkw4glrj0awqz9c"; }; @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { postInstall = lib.optionalString addThumbnailer '' mkdir -p $out/share/thumbnailers - substituteAll ${./nufraw.thumbnailer} $out/share/thumbnailers/${pname}.thumbnailer + substituteAll ${./nufraw.thumbnailer} $out/share/thumbnailers/nufraw.thumbnailer ''; patches = [ @@ -93,4 +93,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ asbachb ]; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix index 7111275add99..bd00fa056157 100644 --- a/pkgs/applications/graphics/rawtherapee/default.nix +++ b/pkgs/applications/graphics/rawtherapee/default.nix @@ -35,14 +35,14 @@ libjxl, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "rawtherapee"; version = "5.12"; src = fetchFromGitHub { owner = "RawTherapee"; repo = "RawTherapee"; - tag = version; + tag = finalAttrs.version; hash = "sha256-h8eWnw9I1R0l9WAI/DylsdA241qU9NhYGEPYz+JlE18="; # The developers ask not to use the tarball from Github releases, see # https://www.rawtherapee.com/downloads/5.10/#news-relevant-to-package-maintainers @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { postPatch = '' cat < ReleaseInfo.cmake - set(GIT_DESCRIBE ${version}) - set(GIT_BRANCH ${version}) - set(GIT_VERSION ${version}) + set(GIT_DESCRIBE ${finalAttrs.version}) + set(GIT_BRANCH ${finalAttrs.version}) + set(GIT_VERSION ${finalAttrs.version}) # Missing GIT_COMMIT and GIT_COMMIT_DATE, which are not easy to obtain. set(GIT_COMMITS_SINCE_TAG 0) set(GIT_COMMITS_SINCE_BRANCH 0) - set(GIT_VERSION_NUMERIC_BS ${version}) + set(GIT_VERSION_NUMERIC_BS ${finalAttrs.version}) EOF substituteInPlace tools/osx/Info.plist.in rtgui/config.h.in \ --replace "/Applications" "${placeholder "out"}/Applications" @@ -147,4 +147,4 @@ stdenv.mkDerivation rec { ]; platforms = with lib.platforms; unix; }; -} +}) diff --git a/pkgs/applications/graphics/sane/frontends.nix b/pkgs/applications/graphics/sane/frontends.nix index 509f21e65a47..449156a56f06 100644 --- a/pkgs/applications/graphics/sane/frontends.nix +++ b/pkgs/applications/graphics/sane/frontends.nix @@ -11,12 +11,12 @@ libusb-compat-0_1 ? null, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "sane-frontends"; version = "1.0.14"; src = fetchurl { - url = "https://alioth-archive.debian.org/releases/sane/${pname}/${version}/${pname}-${version}.tar.gz"; + url = "https://alioth-archive.debian.org/releases/sane/${finalAttrs.pname}/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; sha256 = "1ad4zr7rcxpda8yzvfkq1rfjgx9nl6lan5a628wvpdbh3fn9v0z7"; }; @@ -86,4 +86,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/graphics/scantailor/advanced.nix b/pkgs/applications/graphics/scantailor/advanced.nix index ca78f7d2162e..d176d9f3808c 100644 --- a/pkgs/applications/graphics/scantailor/advanced.nix +++ b/pkgs/applications/graphics/scantailor/advanced.nix @@ -10,14 +10,14 @@ boost, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "scantailor-advanced"; version = "1.0.19"; src = fetchFromGitHub { owner = "vigri"; repo = "scantailor-advanced"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-mvoCoYdRTgXW5t8yd9Y9TOl7D3RDVwcjUv2YDUWrtRI="; }; @@ -42,4 +42,4 @@ stdenv.mkDerivation rec { maintainers = [ ]; platforms = with lib.platforms; gnu ++ linux ++ darwin; }; -} +}) diff --git a/pkgs/applications/graphics/scantailor/universal.nix b/pkgs/applications/graphics/scantailor/universal.nix index 2f8059f00774..007e9c02ed92 100644 --- a/pkgs/applications/graphics/scantailor/universal.nix +++ b/pkgs/applications/graphics/scantailor/universal.nix @@ -14,14 +14,14 @@ libcanberra, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "scantailor-universal"; version = "0.2.14"; src = fetchFromGitHub { owner = "trufanov-nok"; repo = "scantailor-universal"; - rev = version; + rev = finalAttrs.version; fetchSubmodules = true; hash = "sha256-n8NbokK+U0FAuYXtjRJcxlI1XAmI4hk5zV3sF86hB/s="; }; @@ -64,4 +64,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; mainProgram = "scantailor-universal-cli"; }; -} +}) diff --git a/pkgs/applications/graphics/sxiv/default.nix b/pkgs/applications/graphics/sxiv/default.nix index a4d12da344e4..20b813d59904 100644 --- a/pkgs/applications/graphics/sxiv/default.nix +++ b/pkgs/applications/graphics/sxiv/default.nix @@ -9,19 +9,19 @@ conf ? null, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "sxiv"; version = "26"; src = fetchFromGitHub { owner = "muennich"; repo = "sxiv"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "0xaawlfdy7b277m38mgg4423kd7p1ffn0dq4hciqs6ivbb3q9c4f"; }; configFile = lib.optionalString (conf != null) (builtins.toFile "config.def.h" conf); - preBuild = lib.optionalString (conf != null) "cp ${configFile} config.def.h"; + preBuild = lib.optionalString (conf != null) "cp ${finalAttrs.configFile} config.def.h"; buildInputs = [ libxft @@ -44,4 +44,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "sxiv"; }; -} +}) diff --git a/pkgs/applications/graphics/tesseract/tesseract3.nix b/pkgs/applications/graphics/tesseract/tesseract3.nix index ffe3cbc7039e..2895a54f5c31 100644 --- a/pkgs/applications/graphics/tesseract/tesseract3.nix +++ b/pkgs/applications/graphics/tesseract/tesseract3.nix @@ -12,14 +12,14 @@ opencl-headers, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "tesseract"; version = "3.05.02"; src = fetchFromGitHub { owner = "tesseract-ocr"; repo = "tesseract"; - rev = version; + rev = finalAttrs.version; hash = "sha256-28osuZnVwkJpNTYkU+5D5PI8xtViFzGCMScHzkS2H20="; }; @@ -57,4 +57,4 @@ stdenv.mkDerivation rec { platforms = with lib.platforms; linux ++ darwin; mainProgram = "tesseract"; }; -} +}) diff --git a/pkgs/applications/graphics/tesseract/tesseract4.nix b/pkgs/applications/graphics/tesseract/tesseract4.nix index 96ce6dda1ead..2ed450991314 100644 --- a/pkgs/applications/graphics/tesseract/tesseract4.nix +++ b/pkgs/applications/graphics/tesseract/tesseract4.nix @@ -13,14 +13,14 @@ opencl-headers, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "tesseract"; version = "4.1.3"; src = fetchFromGitHub { owner = "tesseract-ocr"; repo = "tesseract"; - rev = version; + rev = finalAttrs.version; hash = "sha256-sV3w53ky13ESc0dGPutMGQ4TcmOeWJkvUwBPIyzSTc8="; }; @@ -63,4 +63,4 @@ stdenv.mkDerivation rec { platforms = with lib.platforms; linux ++ darwin; mainProgram = "tesseract"; }; -} +}) diff --git a/pkgs/applications/graphics/tesseract/tesseract5.nix b/pkgs/applications/graphics/tesseract/tesseract5.nix index 8727c590a755..534eb61c1c66 100644 --- a/pkgs/applications/graphics/tesseract/tesseract5.nix +++ b/pkgs/applications/graphics/tesseract/tesseract5.nix @@ -14,14 +14,14 @@ pango, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "tesseract"; version = "5.5.2"; src = fetchFromGitHub { owner = "tesseract-ocr"; repo = "tesseract"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-VLmKwycJK66fFkdWOSYO5OJkJC8MTWKTQWIVb243ekc="; }; @@ -51,4 +51,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; mainProgram = "tesseract"; }; -} +}) diff --git a/pkgs/applications/graphics/unigine-superposition/default.nix b/pkgs/applications/graphics/unigine-superposition/default.nix index 8d3033f017e8..caf2ac5bfa62 100644 --- a/pkgs/applications/graphics/unigine-superposition/default.nix +++ b/pkgs/applications/graphics/unigine-superposition/default.nix @@ -31,11 +31,11 @@ let pname = "unigine-superposition"; version = "1.1"; - superposition = stdenv.mkDerivation rec { + superposition = stdenv.mkDerivation (finalAttrs: { inherit pname version; src = fetchurl { - url = "https://assets.unigine.com/d/Unigine_Superposition-${version}.run"; + url = "https://assets.unigine.com/d/Unigine_Superposition-${finalAttrs.version}.run"; hash = "sha256-dJThxzv1nvIWFRPV1cudm/+9hHmSnUl2rFO2lV3lgPg="; }; @@ -82,7 +82,7 @@ let postPatchMkspecs = '' cp -f $name/bin/superposition $out/lib/unigine/superposition/bin/superposition ''; - }; + }); desktopItem = makeDesktopItem { name = "Superposition"; diff --git a/pkgs/applications/graphics/zgv/default.nix b/pkgs/applications/graphics/zgv/default.nix index f1f9fca80b4a..f0d662e0d4a7 100644 --- a/pkgs/applications/graphics/zgv/default.nix +++ b/pkgs/applications/graphics/zgv/default.nix @@ -11,11 +11,11 @@ libtiff, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "zgv"; version = "5.9"; src = fetchurl { - url = "https://www.svgalib.org/rus/zgv/${pname}-${version}.tar.gz"; + url = "https://www.svgalib.org/rus/zgv/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; sha256 = "1fk4i9x0cpnpn3llam0zy2pkmhlr2hy3iaxhxg07v9sizd4dircj"; }; @@ -58,4 +58,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; mainProgram = "zgv"; }; -} +}) diff --git a/pkgs/applications/misc/ape/clex.nix b/pkgs/applications/misc/ape/clex.nix index 9a25efd7a5e0..dc199c9b81e8 100644 --- a/pkgs/applications/misc/ape/clex.nix +++ b/pkgs/applications/misc/ape/clex.nix @@ -4,14 +4,14 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "attempto-clex"; version = "6.5-090528"; src = fetchFromGitHub { owner = "Attempto"; repo = "Clex"; - tag = version; + tag = finalAttrs.version; hash = "sha256-Oa1AMBaYpjd+U2k9lBnou4+4IgBwU8fojJ8bY9tf9ZE="; }; @@ -26,4 +26,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ yrashk ]; }; -} +}) diff --git a/pkgs/applications/misc/bfcal/default.nix b/pkgs/applications/misc/bfcal/default.nix index a8ce4e6d7b3c..ba4fd793fb08 100644 --- a/pkgs/applications/misc/bfcal/default.nix +++ b/pkgs/applications/misc/bfcal/default.nix @@ -9,14 +9,14 @@ qtbase, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "bfcal"; version = "1.0.1"; src = fetchFromSourcehut { owner = "~bitfehler"; repo = "bfcal"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-5xyBU+0XUNFUGgvw7U8YE64zncw6SvPmbJhc1LY2u/g="; }; @@ -39,4 +39,4 @@ stdenv.mkDerivation rec { platforms = qtbase.meta.platforms; maintainers = with lib.maintainers; [ laalsaas ]; }; -} +}) diff --git a/pkgs/applications/misc/bitwarden-menu/default.nix b/pkgs/applications/misc/bitwarden-menu/default.nix index 80c87ebac1c7..ed5ef5cb7112 100644 --- a/pkgs/applications/misc/bitwarden-menu/default.nix +++ b/pkgs/applications/misc/bitwarden-menu/default.nix @@ -8,14 +8,14 @@ xdg-base-dirs, }: -buildPythonApplication rec { +buildPythonApplication (finalAttrs: { pname = "bitwarden-menu"; version = "0.4.5"; pyproject = true; src = fetchPypi { pname = "bitwarden_menu"; - inherit version; + inherit (finalAttrs) version; hash = "sha256-vUlNqSVdGhfN5WjDjf1ub32Y2WoBndIdFzfCNwo5+Vg="; }; @@ -32,11 +32,11 @@ buildPythonApplication rec { doCheck = false; meta = { - changelog = "https://github.com/firecat53/bitwarden-menu/releases/tag/v${version}"; + changelog = "https://github.com/firecat53/bitwarden-menu/releases/tag/v${finalAttrs.version}"; description = "Dmenu/Rofi frontend for managing Bitwarden vaults. Uses the Bitwarden CLI tool to interact with the Bitwarden database"; mainProgram = "bwm"; homepage = "https://github.com/firecat53/bitwarden-menu"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ aman9das ]; }; -} +}) diff --git a/pkgs/applications/misc/bluetooth_battery/default.nix b/pkgs/applications/misc/bluetooth_battery/default.nix index af2339c7d797..ae694f30f8f5 100644 --- a/pkgs/applications/misc/bluetooth_battery/default.nix +++ b/pkgs/applications/misc/bluetooth_battery/default.nix @@ -5,14 +5,14 @@ pybluez, }: -buildPythonApplication rec { +buildPythonApplication (finalAttrs: { pname = "bluetooth_battery"; version = "1.3.1"; src = fetchFromGitHub { owner = "TheWeirdDev"; repo = "Bluetooth_Headset_Battery_Level"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; sha256 = "067qfxh228cy1x95bnjp88dx4k00ajj7ay7fz5vr1gkj2yfa203s"; }; @@ -33,4 +33,4 @@ buildPythonApplication rec { platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ cheriimoya ]; }; -} +}) diff --git a/pkgs/applications/misc/cask-server/default.nix b/pkgs/applications/misc/cask-server/default.nix index 309a07d7cb2b..2871514797a0 100644 --- a/pkgs/applications/misc/cask-server/default.nix +++ b/pkgs/applications/misc/cask-server/default.nix @@ -7,14 +7,14 @@ wrapQtAppsHook, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "cask-server"; version = "0.6.0"; src = fetchFromGitHub { owner = "Nitrux"; repo = "cask-server"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; sha256 = "sha256-XUgLtZMcvzGewtUcgu7FbBCn/1zqOjWvw2AI9gUwWkc="; }; @@ -35,5 +35,4 @@ stdenv.mkDerivation rec { ]; maintainers = with lib.maintainers; [ onny ]; }; - -} +}) diff --git a/pkgs/applications/misc/chewing-editor/default.nix b/pkgs/applications/misc/chewing-editor/default.nix index 1f38613ce6cf..a63497a6e6e7 100644 --- a/pkgs/applications/misc/chewing-editor/default.nix +++ b/pkgs/applications/misc/chewing-editor/default.nix @@ -11,14 +11,14 @@ qttools, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "chewing-editor"; version = "0.1.2"; src = fetchFromGitHub { owner = "chewing"; repo = "chewing-editor"; - tag = version; + tag = finalAttrs.version; hash = "sha256-gF3OotO/xb3Dc0YjVwAKIYnuEPIrgjpGR2tdjOBT4aI="; }; @@ -50,4 +50,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; -} +}) diff --git a/pkgs/applications/misc/coolreader/default.nix b/pkgs/applications/misc/coolreader/default.nix index f0bc28d4d6dc..3dc6b10a22f1 100644 --- a/pkgs/applications/misc/coolreader/default.nix +++ b/pkgs/applications/misc/coolreader/default.nix @@ -11,14 +11,14 @@ zstd, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "coolreader"; version = "3.2.59"; src = fetchFromGitHub { owner = "buggins"; repo = "coolreader"; - rev = "cr${version}"; + rev = "cr${finalAttrs.version}"; sha256 = "sha256-RgVEOaNBaEuPBC75B8PdCkbqMvEzNmnEYmiI1ny/WFQ="; }; @@ -46,4 +46,4 @@ stdenv.mkDerivation rec { maintainers = [ ]; platforms = lib.platforms.all; }; -} +}) diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix index 2c61f94510ec..9e04fe277cda 100644 --- a/pkgs/applications/misc/cura/default.nix +++ b/pkgs/applications/misc/cura/default.nix @@ -12,14 +12,14 @@ plugins ? [ ], }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "cura"; version = "4.13.1"; src = fetchFromGitHub { owner = "Ultimaker"; repo = "Cura"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-R88SdAxx3tkQCDInrFTKad1tPSDTSYaVAPUVmdk94Xk="; }; @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DURANIUM_DIR=${python3.pkgs.uranium.src}" - "-DCURA_VERSION=${version}" + "-DCURA_VERSION=${finalAttrs.version}" ]; makeWrapperArgs = [ @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { postInstall = '' mkdir -p $out/share/cura/resources/materials - cp ${materials}/*.fdm_material $out/share/cura/resources/materials/ + cp ${finalAttrs.materials}/*.fdm_material $out/share/cura/resources/materials/ mkdir -p $out/lib/cura/plugins for plugin in ${toString plugins}; do ln -s $plugin/lib/cura/plugins/* $out/lib/cura/plugins @@ -93,4 +93,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.linux; maintainers = [ ]; }; -} +}) diff --git a/pkgs/applications/misc/curaengine/default.nix b/pkgs/applications/misc/curaengine/default.nix index d68826a63009..975aec5576ac 100644 --- a/pkgs/applications/misc/curaengine/default.nix +++ b/pkgs/applications/misc/curaengine/default.nix @@ -9,14 +9,14 @@ fetchpatch, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "curaengine"; version = "4.13.1"; src = fetchFromGitHub { owner = "Ultimaker"; repo = "CuraEngine"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-dx0Q6cuA66lG4nwR7quW5Tvs9sdxjdV4gtpxXirI4nY="; }; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { protobuf ]; - cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ]; + cmakeFlags = [ "-DCURA_ENGINE_VERSION=${finalAttrs.version}" ]; # TODO already fixed in master, remove in next release patches = [ @@ -46,4 +46,4 @@ stdenv.mkDerivation rec { maintainers = [ ]; mainProgram = "CuraEngine"; }; -} +}) diff --git a/pkgs/applications/misc/curaengine/stable.nix b/pkgs/applications/misc/curaengine/stable.nix index 4eb072cace89..fcc0e6be5aaa 100644 --- a/pkgs/applications/misc/curaengine/stable.nix +++ b/pkgs/applications/misc/curaengine/stable.nix @@ -4,14 +4,14 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "curaengine"; version = "15.04.6"; src = fetchFromGitHub { owner = "Ultimaker"; repo = "CuraEngine"; - rev = version; + rev = finalAttrs.version; sha256 = "sha256-8V21TRSqCN+hkTlz51d5A5oK5JOwEtx+ROt8cfJBL/0="; }; @@ -31,4 +31,4 @@ stdenv.mkDerivation rec { license = lib.licenses.agpl3Plus; platforms = lib.platforms.linux; }; -} +}) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 2979b17271c4..bc539b258add 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -526,11 +526,11 @@ "vendorHash": null }, "hashicorp_azurerm": { - "hash": "sha256-bLvCFCGR2FNSJWfeo3kSibLiBUGjw+5UAKnQBZUwEVI=", + "hash": "sha256-eVdx5W4kwC3SxLp3HbAHHKSP6afmqdeUSXwnIeyRw10=", "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", "owner": "hashicorp", "repo": "terraform-provider-azurerm", - "rev": "v4.60.0", + "rev": "v4.61.0", "spdx": "MPL-2.0", "vendorHash": null }, diff --git a/pkgs/applications/radio/gnuradio/default.nix b/pkgs/applications/radio/gnuradio/default.nix index 9c4d8cdbf427..f08bca6a1e64 100644 --- a/pkgs/applications/radio/gnuradio/default.nix +++ b/pkgs/applications/radio/gnuradio/default.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + fetchpatch, cmake, # Remove gcc and python references removeReferencesTo, @@ -309,6 +310,14 @@ stdenv.mkDerivation ( patches = [ # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 ./modtool-newmod-permissions.patch + + # Finding `boost_system` fails because the stub compiled library of + # Boost.System, which has been a header-only library since 1.69, was + # removed in 1.89. + (fetchpatch { + url = "https://github.com/gnuradio/gnuradio/commit/d8814e0c3ef68372e5a1093603ef602e2119cd8a.patch"; + hash = "sha256-TQxqsce1AhSjdwaG2IP11QTeOgdJHN6cAAnznBl8eM8="; + }) ]; passthru = shared.passthru // { # Deps that are potentially overridden and are used inside GR plugins - the same version must diff --git a/pkgs/by-name/ae/aeolus-stops/package.nix b/pkgs/by-name/ae/aeolus-stops/package.nix index 5d3808bbe0d3..1196d309f530 100644 --- a/pkgs/by-name/ae/aeolus-stops/package.nix +++ b/pkgs/by-name/ae/aeolus-stops/package.nix @@ -4,25 +4,23 @@ fetchurl, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation (finalAttrs: { pname = "stops"; version = "0.4.0"; src = fetchurl { - url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/stops-${version}.tar.bz2"; + url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/stops-${finalAttrs.version}.tar.bz2"; hash = "sha256-DnmguOAGyw9nv88ekJfbC04Qwbsw5tXEAaKeiCQR/LA="; }; outputHashMode = "recursive"; outputHash = "sha256-gGHowq7g7MZmnhrpqG+3wNLwQCtpiBB88euIKeQIpJ0="; - subdir = "share/Aeolus/stops"; - installPhase = '' runHook preInstall - mkdir -p $out/${subdir} - cp -r * $out/${subdir} + mkdir -p $out/share/Aeolus/stops + cp -r * $out/share/Aeolus/stops runHook postInstall ''; @@ -36,4 +34,4 @@ stdenvNoCC.mkDerivation rec { nico202 ]; }; -} +}) diff --git a/pkgs/by-name/ae/aeolus/package.nix b/pkgs/by-name/ae/aeolus/package.nix index e62a65cbbe38..6242734f9045 100644 --- a/pkgs/by-name/ae/aeolus/package.nix +++ b/pkgs/by-name/ae/aeolus/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { cfg = '' # Aeolus system wide default options # Ignored if ~/.aeolusrc with local options exists - -u -S ${aeolus-stops}/${aeolus-stops.subdir} + -u -S ${aeolus-stops}/share/Aeolus/stops ''; in '' diff --git a/pkgs/by-name/ae/aerc/package.nix b/pkgs/by-name/ae/aerc/package.nix index 401830d85a39..98bbe2ff207c 100644 --- a/pkgs/by-name/ae/aerc/package.nix +++ b/pkgs/by-name/ae/aerc/package.nix @@ -61,6 +61,7 @@ buildGoModule (finalAttrs: { runHook preInstall make $makeFlags GOFLAGS="$GOFLAGS${lib.optionalString withNotmuch " -tags=notmuch"}" install + wrapPythonProgramsIn "$out/libexec/" "''${pythonPath[*]}" runHook postInstall ''; diff --git a/pkgs/by-name/ah/ahk_x11/package.nix b/pkgs/by-name/ah/ahk_x11/package.nix index 22ddf27dc20c..b088ae250cc0 100644 --- a/pkgs/by-name/ah/ahk_x11/package.nix +++ b/pkgs/by-name/ah/ahk_x11/package.nix @@ -62,7 +62,7 @@ crystal.buildCrystalPackage { postInstall = '' install -Dm644 -t $out/share/licenses/ahk_x11/ LICENSE - install -Dm644 -t $out/share/pixmaps/ assets/ahk_x11.png + install -Dm644 -t $out/share/icons/hicolor/48x48/apps/ assets/ahk_x11.png install -Dm644 -t $out/share/applications/ assets/*.desktop install -Dm644 assets/ahk_x11-mime.xml $out/share/mime/packages/ahk_x11.xml ''; diff --git a/pkgs/by-name/ak/akkoma/package.nix b/pkgs/by-name/ak/akkoma/package.nix index 22157be35fb4..42622e228edb 100644 --- a/pkgs/by-name/ak/akkoma/package.nix +++ b/pkgs/by-name/ak/akkoma/package.nix @@ -47,7 +47,7 @@ beamPackages.mixRelease rec { ]; mixFodDeps = beamPackages.fetchMixDeps { - pname = "mix-deps-${pname}"; + pname = "mix-deps-akkoma"; inherit src version; hash = "sha256-DqSeMjom9UjgGjjfJomWCr7jQhXEkqVrDCvW3+pDtcQ="; diff --git a/pkgs/by-name/al/alacritty-theme/package.nix b/pkgs/by-name/al/alacritty-theme/package.nix index 0f11fbed594c..09435f3d4689 100644 --- a/pkgs/by-name/al/alacritty-theme/package.nix +++ b/pkgs/by-name/al/alacritty-theme/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "alacritty-theme"; - version = "0-unstable-2025-11-16"; + version = "0-unstable-2026-02-13"; src = fetchFromGitHub { owner = "alacritty"; repo = "alacritty-theme"; - rev = "f82c742634b5e840731dd7c609e95231917681a5"; - hash = "sha256-L5Sfex+9DGMLd4Be0w+BzNKdFCVXPBtnyBHQ6O0wPaU="; + rev = "dcd837532011fcfc6941d0dc84b3271888309ee8"; + hash = "sha256-NkGM9rS1FQUDlFRXqGM9dlUMy7cwKxcSz+vFjQs+Tgg="; sparseCheckout = [ "themes" ]; }; diff --git a/pkgs/by-name/al/alfaview/package.nix b/pkgs/by-name/al/alfaview/package.nix index fe9d38198f42..9c5cad8b3489 100644 --- a/pkgs/by-name/al/alfaview/package.nix +++ b/pkgs/by-name/al/alfaview/package.nix @@ -29,12 +29,12 @@ libx11, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "alfaview"; version = "9.24.1"; src = fetchurl { - url = "https://assets.alfaview.com/stable/linux/deb/${pname}_${version}.deb"; + url = "https://assets.alfaview.com/stable/linux/deb/alfaview_${finalAttrs.version}.deb"; hash = "sha256-vRo5ZD3yYTWhR6fbc/HFtBBbYuq3cGbxPuDlSt5D8XM="; }; @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { libxcb-render-util ]; - libPath = lib.makeLibraryPath buildInputs; + libPath = lib.makeLibraryPath finalAttrs.buildInputs; dontBuild = true; dontConfigure = true; @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { mv opt $out substituteInPlace $out/share/applications/alfaview.desktop \ - --replace "/opt/alfaview" "$out/bin" \ - --replace "/usr/share/pixmaps/alfaview_production.png" alfaview_production + --replace-fail "/opt/alfaview" "$out/bin" \ + --replace-fail "/usr/share/pixmaps/alfaview.png" alfaview makeWrapper $out/opt/alfaview/alfaview $out/bin/alfaview \ - --prefix LD_LIBRARY_PATH : ${libPath} + --prefix LD_LIBRARY_PATH : ${finalAttrs.libPath} runHook postInstall ''; @@ -102,4 +102,4 @@ stdenv.mkDerivation rec { mainProgram = "alfaview"; platforms = [ "x86_64-linux" ]; }; -} +}) diff --git a/pkgs/by-name/al/all-the-package-names/package.nix b/pkgs/by-name/al/all-the-package-names/package.nix index d9b8dc2fbb2e..bbc8c5f44916 100644 --- a/pkgs/by-name/al/all-the-package-names/package.nix +++ b/pkgs/by-name/al/all-the-package-names/package.nix @@ -7,16 +7,16 @@ buildNpmPackage rec { pname = "all-the-package-names"; - version = "2.0.2355"; + version = "2.0.2363"; src = fetchFromGitHub { owner = "nice-registry"; repo = "all-the-package-names"; tag = "v${version}"; - hash = "sha256-0uJ7r5pqZlv102EOVQd1KQOWzR52DVjmhCmGAyIogpk="; + hash = "sha256-hUgtfqZW5ISrcvXw74PrFxU9vGJTLEml4GdNdXIdtkk="; }; - npmDepsHash = "sha256-JcRE4TpXFA8LWGJLWCnyEX5jXxnxC4s7HbYAs183JZs="; + npmDepsHash = "sha256-hBycOA6+NLVacN7tPRgzViFFP1LDWcVLub2xhxIJMQw="; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/al/altair/package.nix b/pkgs/by-name/al/altair/package.nix index e4059055cbeb..e98b119f8fbe 100644 --- a/pkgs/by-name/al/altair/package.nix +++ b/pkgs/by-name/al/altair/package.nix @@ -22,12 +22,12 @@ appimageTools.wrapType2 { nativeBuildInputs = [ makeWrapper ]; extraInstallCommands = '' - wrapProgram $out/bin/${pname} \ + wrapProgram $out/bin/altair \ --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" - install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications - substituteInPlace $out/share/applications/${pname}.desktop \ - --replace 'Exec=AppRun' 'Exec=${pname}' + install -m 444 -D ${appimageContents}/altair.desktop -t $out/share/applications + substituteInPlace $out/share/applications/altair.desktop \ + --replace-fail 'Exec=AppRun' 'Exec=altair' cp -r ${appimageContents}/usr/share/icons $out/share ''; diff --git a/pkgs/by-name/an/analog/package.nix b/pkgs/by-name/an/analog/package.nix index 6bfb07561a27..38da846cc176 100644 --- a/pkgs/by-name/an/analog/package.nix +++ b/pkgs/by-name/an/analog/package.nix @@ -8,15 +8,15 @@ libpng, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "analog"; version = "6.0.18"; src = fetchFromGitHub { owner = "c-amie"; repo = "analog-ce"; - tag = version; - sha256 = "sha256-NCturEibnpl6+paUZezksHzP33WtAzfIolvBLeEHXjY="; + tag = finalAttrs.version; + hash = "sha256-NCturEibnpl6+paUZezksHzP33WtAzfIolvBLeEHXjY="; }; buildInputs = [ @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { postPatch = '' sed -i src/anlghead.h \ -e "s|#define DEFAULTCONFIGFILE .*|#define DEFAULTCONFIGFILE \"$out/etc/analog.cfg\"|g" \ - -e "s|#define LANGDIR .*|#define LANGDIR \"$out/share/${pname}/lang/\"|g" + -e "s|#define LANGDIR .*|#define LANGDIR \"$out/share/analog/lang/\"|g" substituteInPlace src/Makefile \ --replace-fail "gcc" "${stdenv.cc.targetPrefix}cc" \ --replace-fail "LIBS = -lm" "LIBS = -lm -lpng -lgd -ljpeg -lz -lbz2" \ @@ -54,4 +54,4 @@ stdenv.mkDerivation rec { mainProgram = "analog"; }; -} +}) diff --git a/pkgs/by-name/an/andika/package.nix b/pkgs/by-name/an/andika/package.nix index 481426a3d502..b71bafa3408d 100644 --- a/pkgs/by-name/an/andika/package.nix +++ b/pkgs/by-name/an/andika/package.nix @@ -4,12 +4,12 @@ fetchzip, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation (finalAttrs: { pname = "andika"; version = "7.000"; src = fetchzip { - url = "https://software.sil.org/downloads/r/andika/Andika-${version}.zip"; + url = "https://software.sil.org/downloads/r/andika/Andika-${finalAttrs.version}.zip"; hash = "sha256-46kbzFxNEpSuqyUwpScnxxgZi1dJlwK+AUkdULcinok="; }; @@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec { runHook preInstall install -Dm644 *.ttf -t $out/share/fonts/truetype - install -Dm644 OFL.txt OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/${pname}-${version} + install -Dm644 OFL.txt OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/andika-${finalAttrs.version} runHook postInstall ''; @@ -34,4 +34,4 @@ stdenvNoCC.mkDerivation rec { platforms = lib.platforms.all; maintainers = [ lib.maintainers.f--t ]; }; -} +}) diff --git a/pkgs/by-name/an/annapurna-sil/package.nix b/pkgs/by-name/an/annapurna-sil/package.nix index d30aaa2ab603..d8fbe0f5247a 100644 --- a/pkgs/by-name/an/annapurna-sil/package.nix +++ b/pkgs/by-name/an/annapurna-sil/package.nix @@ -4,12 +4,12 @@ fetchzip, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation (finalAttrs: { pname = "annapurna-sil"; version = "2.100"; src = fetchzip { - url = "https://software.sil.org/downloads/r/annapurna/AnnapurnaSIL-${version}.zip"; + url = "https://software.sil.org/downloads/r/annapurna/AnnapurnaSIL-${finalAttrs.version}.zip"; hash = "sha256-TFaCchtd9SRGsU9r+m8QOvZfc7/FJxwclkSfbLwf6/4="; }; @@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec { runHook preInstall install -Dm644 *.ttf -t $out/share/fonts/truetype - install -Dm644 OFL.txt OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/${pname}-${version} + install -Dm644 OFL.txt OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/annapurna-sil-${finalAttrs.version} runHook postInstall ''; @@ -32,4 +32,4 @@ stdenvNoCC.mkDerivation rec { platforms = lib.platforms.all; maintainers = [ lib.maintainers.kmein ]; }; -} +}) diff --git a/pkgs/by-name/an/anytype-heart/package.nix b/pkgs/by-name/an/anytype-heart/package.nix index eb5eb8de1828..652ba6fb0ecb 100644 --- a/pkgs/by-name/an/anytype-heart/package.nix +++ b/pkgs/by-name/an/anytype-heart/package.nix @@ -26,7 +26,7 @@ buildGoModule (finalAttrs: { # Use only versions specified in anytype-ts middleware.version file: # https://github.com/anyproto/anytype-ts/blob/v/middleware.version - version = "0.44.0-nightly.20251220.1"; + version = "0.48.1"; # Update only together with 'anytype' package. # nixpkgs-update: no auto update @@ -34,10 +34,10 @@ buildGoModule (finalAttrs: { owner = "anyproto"; repo = "anytype-heart"; tag = "v${finalAttrs.version}"; - hash = "sha256-eQ7fPD/8tQBdAnu1Ze7Pn9HL4sOq0rcqG7ofhwn6OwM="; + hash = "sha256-xhEqSOpNtJcysVQGiqwCb3Eh+uvirGaBZka7Mo2MLgU="; }; - vendorHash = "sha256-s/otpfRwXFUOek8oVr5eUcKH4Vwd5BbtB0GH+hjzjwI="; + vendorHash = "sha256-4DiIU1ztmBCgI6axNKSeLSGQ5BuRLpSXl8RJAm1r2Eg="; subPackages = [ "cmd/grpcserver" ]; tags = [ diff --git a/pkgs/by-name/an/anytype/package.nix b/pkgs/by-name/an/anytype/package.nix index 9818b1eca720..a5450c467024 100644 --- a/pkgs/by-name/an/anytype/package.nix +++ b/pkgs/by-name/an/anytype/package.nix @@ -17,23 +17,23 @@ buildNpmPackage (finalAttrs: { pname = "anytype"; - version = "0.53.1"; + version = "0.54.2"; src = fetchFromGitHub { owner = "anyproto"; repo = "anytype-ts"; tag = "v${finalAttrs.version}"; - hash = "sha256-GDx40UA+Grc/xvlfwqtN1WNonm9c0dci1rereWpfhjs="; + hash = "sha256-MzEgG//wptk0G9kn1c491qyqn62do9Z2nt8I6HtOaJQ="; }; locales = fetchFromGitHub { owner = "anyproto"; repo = "l10n-anytype-ts"; - rev = "f9dc9286757c2544fe801a1e31067cbe708cc6f1"; - hash = "sha256-/rZCpeKGtPttYbuJbhbOV4P1sXSvIYve0WO/SL20isw="; + rev = "d8c621ecfde8eab1123a4338fe50823cba047be1"; + hash = "sha256-IUr9VJqPduW9gHdFZSwIyFAEycc6nfS/Rfz2vXO0iCY="; }; - npmDepsHash = "sha256-hJJK/RJnSm8QpjGcnxUsemrAsRNYCHSGSH8iUZZYXJI="; + npmDepsHash = "sha256-fGn1L32bcyDI72Qlt9lf84zJDqlvSwbI4Vubj4DL388="; # npm dependency install fails with nodejs_24: https://github.com/NixOS/nixpkgs/issues/474535 nodejs = nodejs_22; diff --git a/pkgs/by-name/ba/barcode/package.nix b/pkgs/by-name/ba/barcode/package.nix index f58b710140df..fcd810276487 100644 --- a/pkgs/by-name/ba/barcode/package.nix +++ b/pkgs/by-name/ba/barcode/package.nix @@ -10,14 +10,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "barcode"; src = fetchurl { url = "mirror://gnu/barcode/barcode-${finalAttrs.version}.tar.xz"; - sha256 = "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8"; + hash = "sha256-6H7PZCFXPhfONYeduDKGF3lSWGUIMa/9Al+6QvFVzcY="; }; patches = [ # Pull upstream patch for -fno-common toolchains. (fetchpatch { name = "fno-common.patch"; url = "http://git.savannah.gnu.org/cgit/barcode.git/patch/?id=4654f68706a459c9602d9932b56a56e8930f7d53"; - sha256 = "15kclzcwlh0ymr7m48vc0m8z98q0wf4xbfcky4g1y8yvvpvvrfgc"; + hash = "sha256-7Lm8993bIx8e8ZO51YnjAKP0UQVsI1JPrh5AytmnbJY="; }) ]; diff --git a/pkgs/by-name/ca/caddy/package.nix b/pkgs/by-name/ca/caddy/package.nix index 714f07a606b6..a69e26e6c51e 100644 --- a/pkgs/by-name/ca/caddy/package.nix +++ b/pkgs/by-name/ca/caddy/package.nix @@ -11,7 +11,7 @@ versionCheckHook, }: let - version = "2.10.2"; + version = "2.11.1"; dist = fetchFromGitHub { owner = "caddyserver"; repo = "dist"; @@ -27,10 +27,10 @@ buildGo125Module (finalAttrs: { owner = "caddyserver"; repo = "caddy"; tag = "v${finalAttrs.version}"; - hash = "sha256-KvikafRYPFZ0xCXqDdji1rxlkThEDEOHycK8GP5e8vk="; + hash = "sha256-8NvRodMtq9Yrock7QRvF6ZOjuqpiK0KS3UeJzYcIbsg="; }; - vendorHash = "sha256-wjcmWKVmLBAybILUi8tKEDnFbhtybf042ODH7jEq6r8="; + vendorHash = "sha256-jZ/oxAVBedbFEnqXrQnya2vLQZjXubAc1vUKwpUL66M="; ldflags = [ "-s" diff --git a/pkgs/by-name/cl/claude-code-bin/manifest.json b/pkgs/by-name/cl/claude-code-bin/manifest.json index 1f22b70dfc9e..ca5c00dc5d2c 100644 --- a/pkgs/by-name/cl/claude-code-bin/manifest.json +++ b/pkgs/by-name/cl/claude-code-bin/manifest.json @@ -1,46 +1,46 @@ { - "version": "2.1.47", - "buildDate": "2026-02-18T20:16:40Z", + "version": "2.1.49", + "buildDate": "2026-02-19T22:40:53Z", "platforms": { "darwin-arm64": { "binary": "claude", - "checksum": "73795e6d8f0aa4e07d8f20d351e0f84e515db2ce73b69770650bc3d5d582ef73", - "size": 184395680 + "checksum": "2b984814350ed9a9b70506bcbc10b77da46f5b3e06a9c6932f0731d042049b98", + "size": 184907552 }, "darwin-x64": { "binary": "claude", - "checksum": "b62889b0d4d1f07bf76ebe89b6d1b1b85690977a939307bc896cd76748df3031", - "size": 189516896 + "checksum": "3155c5a13e8fa9976038a4b955c3ec006aa17c2c12d8bb8a2dd3056661eeed25", + "size": 190028768 }, "linux-arm64": { "binary": "claude", - "checksum": "9255d330db19353d73b3975b0bc2ebaddd1cf002a62fa15b95a6bbfec8a9be18", - "size": 221546407 + "checksum": "e4e4ea8a9f8bce5f8fbaae7bac7c7a1826ea7ba68b38b9c2951e8466bca91331", + "size": 222051812 }, "linux-x64": { "binary": "claude", - "checksum": "9c48bde67bda274d65c3d65da4f78e21a458ce722a8955edcc272d32c98c74a3", - "size": 224432260 + "checksum": "e7a7565665ecbccca2c6912b2ef29da2b137d260201b931c737b7dd3821c6e2f", + "size": 224937041 }, "linux-arm64-musl": { "binary": "claude", - "checksum": "2bb8530b925220727cbc7ba4880dd12ccda308ebed513915a5c71674c3bc05f2", - "size": 214713415 + "checksum": "7500953b5c47930dff10f19d086a99414dff585b8db0c2367f795241229595f0", + "size": 215218820 }, "linux-x64-musl": { "binary": "claude", - "checksum": "3ba4ec54ff2f4d6500dd156725914695c40369851ee429583c821cb09c04d36e", - "size": 216932316 + "checksum": "e6ca49650f42cdf6ff98d9d5b6c98e3fee547c03879eba5e93377f28ca84da24", + "size": 217437097 }, "win32-x64": { "binary": "claude.exe", - "checksum": "b29dca8880f7bcd8820909cb630f0bace6e8a4a126caa7aafdd5ca2dbd13c497", - "size": 233474208 + "checksum": "d370342a0b9a677180dfbedfa826acb77a5b4d6c032447d0d46e69d343d38d73", + "size": 233937056 }, "win32-arm64": { "binary": "claude.exe", - "checksum": "ae9b2d1274aa067d79663f19045a9b0df2882c073f90d208d827610f4014c2dc", - "size": 225526432 + "checksum": "9d6a70d70e5f026ae0423e42e1399e2b20ba26eea2931b259d378c8c217ae9b1", + "size": 225988768 } } } diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index b84f196c5cb2..6a082bacb94a 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anthropic-ai/claude-code", - "version": "2.1.47", + "version": "2.1.49", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anthropic-ai/claude-code", - "version": "2.1.47", + "version": "2.1.49", "license": "SEE LICENSE IN README.md", "bin": { "claude": "cli.js" diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index 0ea22d83264d..12883560458c 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -15,14 +15,14 @@ }: buildNpmPackage (finalAttrs: { pname = "claude-code"; - version = "2.1.47"; + version = "2.1.49"; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz"; - hash = "sha256-zog13iz4gP9LPcF5qglvyViqox6iiRWeCU0r0TqnWlk="; + hash = "sha256-7Mjg22FlhuRothua5rj06aKjlnCScrO0jcE74HBiLLs="; }; - npmDepsHash = "sha256-1wvl0vwl9CMntNDuh7sTWqNTnAg1AYgnuUukZOXU+PU="; + npmDepsHash = "sha256-1xegdmwpBi4ODxfo0jsNE57XuogUPCyjTApodOq3zUA="; strictDeps = true; diff --git a/pkgs/by-name/cl/cli-tips/package.nix b/pkgs/by-name/cl/cli-tips/package.nix index 03951f22319a..df70e999ec21 100644 --- a/pkgs/by-name/cl/cli-tips/package.nix +++ b/pkgs/by-name/cl/cli-tips/package.nix @@ -8,13 +8,13 @@ stdenvNoCC.mkDerivation { pname = "cli-tips"; - version = "0-unstable-2025-02-03"; + version = "0-unstable-2025-06-13"; src = fetchFromGitHub { owner = "cli-stuff"; repo = "cli-tips"; - rev = "34e37224b51362003d1c5af2b0b6bc2a02b668d9"; - hash = "sha256-ZJQGa7gaR76zsdZOVoIf87h2wraFFOuonJEDy6J8ygQ="; + rev = "be62dcd3fef8a32166775d90c5538a18bf7fed94"; + hash = "sha256-irl9TXk+8ME8dXQmsYR13uIlqFyZyUgREXROxeX65VY="; }; nativeBuildInputs = [ makeWrapper ]; @@ -24,16 +24,16 @@ stdenvNoCC.mkDerivation { installPhase = '' runHook preInstall - mkdir -p $out/share + mkdir -p $out/share/tips install -Dm755 cli-tips.sh $out/bin/cli-tips - cp -r translations $out/share + cp tips.txt $out/share/tips runHook postInstall ''; postInstall = '' wrapProgram $out/bin/cli-tips \ - --set TIPS_FOLDER "$out/share/translations" + --set TIPS_FOLDER "$out/share/tips" ''; passthru.updateScript = nix-update-script { diff --git a/pkgs/by-name/cl/clonehero/package.nix b/pkgs/by-name/cl/clonehero/package.nix index 8133d140a201..9dcdf42391d4 100644 --- a/pkgs/by-name/cl/clonehero/package.nix +++ b/pkgs/by-name/cl/clonehero/package.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation (finalAttrs: { install -Dm755 clonehero "$out/bin/clonehero" install -Dm644 UnityPlayer.so "$out/libexec/clonehero/UnityPlayer.so" - mkdir -p "$out/share/pixmaps" + mkdir -p "$out/share/icons/hicolor/128x128/apps" cp -r clonehero_Data "$out/share/clonehero" ln -s "$out/share/clonehero" "$out/bin/clonehero_Data" - ln -s "$out/share/clonehero/Resources/UnityPlayer.png" "$out/share/pixmaps/clonehero.png" + ln -s "$out/share/clonehero/Resources/UnityPlayer.png" "$out/share/icons/hicolor/128x128/apps/clonehero.png" install -Dm644 "$desktopItem/share/applications/clonehero.desktop" "$out/share/applications/clonehero.desktop" mkdir -p "$doc/share/doc/clonehero" diff --git a/pkgs/by-name/cl/cloud-provider-kind/package.nix b/pkgs/by-name/cl/cloud-provider-kind/package.nix index dbfad63698ed..b9236fdd4563 100644 --- a/pkgs/by-name/cl/cloud-provider-kind/package.nix +++ b/pkgs/by-name/cl/cloud-provider-kind/package.nix @@ -7,17 +7,17 @@ }: buildGoModule (finalAttrs: { pname = "cloud-provider-kind"; - version = "0.6.0"; + version = "0.10.0"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "cloud-provider-kind"; tag = "v${finalAttrs.version}"; - hash = "sha256-6HdP6/uUCtLyZ7vjFGB2NLqe73v/yolRTUE5s/KyIIk="; + hash = "sha256-cepXHW5L7aqo6L1rtjvH35aMxv7CcB0Ii8Ci0FXcw5k="; }; passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - vendorHash = null; + vendorHash = "sha256-kFcAY78xPGiRQ8a3mAdnO2OylrLi6JTtp0YCsc6jXvo="; checkFlags = lib.optional stdenv.hostPlatform.isDarwin "-skip=^Test_firstSuccessfulProbe$"; diff --git a/pkgs/by-name/cr/cro-mag-rally/package.nix b/pkgs/by-name/cr/cro-mag-rally/package.nix index 15096c8bd0e9..56ba7a79fbe3 100644 --- a/pkgs/by-name/cr/cro-mag-rally/package.nix +++ b/pkgs/by-name/cr/cro-mag-rally/package.nix @@ -37,8 +37,8 @@ stdenv.mkDerivation (finalAttrs: { mv Data ReadMe.txt $out/share/CroMagRally/ install -Dm755 CroMagRally $out/bin/CroMagRally wrapProgram $out/bin/CroMagRally --chdir $out/share/CroMagRally - install -Dm644 ${finalAttrs.src}/packaging/io.jor.cromagrally.desktop $out/share/applications/cromagrally.desktop - install -Dm644 ${finalAttrs.src}/packaging/io.jor.cromagrally.png $out/share/pixmaps/io.jor.cromagrally.png + install -Dm644 ../packaging/io.jor.cromagrally.desktop $out/share/applications/cromagrally.desktop + install -Dm644 ../packaging/io.jor.cromagrally.png -t $out/share/icons/hicolor/256x256/apps/ runHook postInstall ''; diff --git a/pkgs/by-name/da/daggerfall-unity/package.nix b/pkgs/by-name/da/daggerfall-unity/package.nix index 565f9c9b3703..637c37756931 100644 --- a/pkgs/by-name/da/daggerfall-unity/package.nix +++ b/pkgs/by-name/da/daggerfall-unity/package.nix @@ -72,10 +72,10 @@ stdenv.mkDerivation (finalAttrs: { installPhase = '' runHook preInstall - mkdir --parents "$out/bin" "$out/share/doc" "$out/share/pixmaps/" + mkdir --parents "$out/bin" "$out/share/doc" "$out/share/icons/hicolor/128x128/apps/" cp --recursive * "$out" - ln --symbolic "../${finalAttrs.meta.mainProgram}" "$out/bin/" - ln --symbolic ../../DaggerfallUnity_Data/Resources/UnityPlayer.png "$out/share/pixmaps/" + ln --symbolic "$out/${finalAttrs.meta.mainProgram}" "$out/bin/" + ln --symbolic $out/DaggerfallUnity_Data/Resources/UnityPlayer.png $out/share/icons/hicolor/128x128/apps/daggerfall-unity.png ${lib.strings.concatMapStringsSep "\n" (file: '' cp "${file}" "$out/share/doc/${file.name}" @@ -91,7 +91,7 @@ stdenv.mkDerivation (finalAttrs: { name = "daggerfall-unity"; desktopName = "Daggerfall Unity"; comment = finalAttrs.meta.description; - icon = "UnityPlayer"; + icon = "daggerfall-unity"; exec = finalAttrs.meta.mainProgram; categories = [ "Game" ]; }) diff --git a/pkgs/by-name/de/decent-sampler/package.nix b/pkgs/by-name/de/decent-sampler/package.nix index 3e64e464b76f..65ebfdb138b0 100644 --- a/pkgs/by-name/de/decent-sampler/package.nix +++ b/pkgs/by-name/de/decent-sampler/package.nix @@ -56,7 +56,7 @@ let install -Dm755 DecentSampler $out/bin/decent-sampler install -Dm755 DecentSampler.so -t $out/lib/vst install -d "$out/lib/vst3" && cp -r "DecentSampler.vst3" $out/lib/vst3 - install -Dm444 ${icon} $out/share/pixmaps/decent-sampler.png + install -Dm444 ${icon} $out/share/icons/hicolor/512x512/apps/decent-sampler.png runHook postInstall ''; diff --git a/pkgs/by-name/di/distrobox/package.nix b/pkgs/by-name/di/distrobox/package.nix index 07550a6a2a7b..547298b36de6 100644 --- a/pkgs/by-name/di/distrobox/package.nix +++ b/pkgs/by-name/di/distrobox/package.nix @@ -43,8 +43,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { wrapProgram "$out/bin/distrobox-generate-entry" \ --prefix PATH ":" ${lib.makeBinPath [ wget ]} - wrapProgram "$out/bin/${finalAttrs.meta.mainProgram}" \ - --prefix PATH ":" ${lib.makeBinPath [ gnugrep ]} + mv "$out/bin/${finalAttrs.meta.mainProgram}" "$out/bin/.${finalAttrs.meta.mainProgram}-wrapped" + makeWrapper "${stdenvNoCC.shell}" "$out/bin/${finalAttrs.meta.mainProgram}" \ + --prefix PATH ":" "${lib.makeBinPath [ gnugrep ]}" \ + --add-flags "-c 'source \"$out/bin/.${finalAttrs.meta.mainProgram}-wrapped\"' \"\$0\"" mkdir -p $out/share/distrobox echo 'container_additional_volumes="/nix:/nix"' > $out/share/distrobox/distrobox.conf diff --git a/pkgs/by-name/do/domination/package.nix b/pkgs/by-name/do/domination/package.nix index b750748887e5..736ee6533a8a 100644 --- a/pkgs/by-name/do/domination/package.nix +++ b/pkgs/by-name/do/domination/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation { --chdir "$out/share/domination" \ --add-flags "-cp $out/share/domination/Domination.jar net.yura.domination.ui.swinggui.SwingGUIFrame" - install -Dm644 build/game/resources/icon.png $out/share/pixmaps/domination.png + install -Dm644 build/game/resources/icon.png $out/share/icons/hicolor/16x16/apps/domination.png runHook postInstall ''; diff --git a/pkgs/by-name/dr/drawio-headless/package.nix b/pkgs/by-name/dr/drawio-headless/package.nix index 6fd3ff4a93a5..abe65a51b82f 100644 --- a/pkgs/by-name/dr/drawio-headless/package.nix +++ b/pkgs/by-name/dr/drawio-headless/package.nix @@ -38,7 +38,6 @@ writeTextFile { directory. ''; maintainers = with lib.maintainers; [ - qyliss tfc ]; mainProgram = "drawio"; diff --git a/pkgs/by-name/dt/dtop/package.nix b/pkgs/by-name/dt/dtop/package.nix index 3bed1d6edc68..45af408641ea 100644 --- a/pkgs/by-name/dt/dtop/package.nix +++ b/pkgs/by-name/dt/dtop/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "dtop"; - version = "0.6.7"; + version = "0.6.12"; src = fetchFromGitHub { owner = "amir20"; repo = "dtop"; tag = "v${finalAttrs.version}"; - hash = "sha256-E4sZVIgy6p8DNKC20eVaVhPeZFkgl58FFiSa7Gm5ih8="; + hash = "sha256-OUK/5Xsy6T24iGbpDsSFaKX58B5HsSHh947xPLx9jnI="; }; - cargoHash = "sha256-qU1L5aX+eC5rL+zlUY79uPx6uB2TK6XwdbypNnbwtWQ="; + cargoHash = "sha256-E2CpLOIqw98ftqeFKODvwW53RP7L7JPd6acpwGuOOA4="; nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; diff --git a/pkgs/by-name/fr/frigate/package.nix b/pkgs/by-name/fr/frigate/package.nix index 2f93c2bf5806..7036ecdde0b2 100644 --- a/pkgs/by-name/fr/frigate/package.nix +++ b/pkgs/by-name/fr/frigate/package.nix @@ -85,6 +85,16 @@ python3Packages.buildPythonApplication rec { }) ./ffmpeg.patch ./ai-edge-litert.patch + (fetchpatch { + # peewee-migrate 0.14.x compat + url = "https://github.com/blakeblackshear/frigate/commit/dde02cadb2168c44e9eb395ddfbb7b169096bd15.patch"; + excludes = [ + "docker/main/requirements-wheels.txt" + "migrations/031_create_trigger_table.py" + "migrations/032_add_password_changed_at.py" + ]; + hash = "sha256-RrmwjE4SHJIUOYfqcCtMy9Pht7UXhHcoAZlFQv9aQFw="; + }) ]; postPatch = '' diff --git a/pkgs/by-name/gi/gitu/package.nix b/pkgs/by-name/gi/gitu/package.nix index 53270e4905b2..331ab35977b2 100644 --- a/pkgs/by-name/gi/gitu/package.nix +++ b/pkgs/by-name/gi/gitu/package.nix @@ -20,6 +20,10 @@ rustPlatform.buildRustPackage (finalAttrs: { hash = "sha256-JNa9foW5z0NrXk5r/Oep20+u7YRhkzMIZQPHlZVifGI="; }; + patches = [ + ./unit-tests-compile.patch + ]; + cargoHash = "sha256-mQ5xXYVmadmNx57nnJGICZ2dhll+V3PkYK+hwTTfdVE="; nativeBuildInputs = [ diff --git a/pkgs/by-name/gi/gitu/unit-tests-compile.patch b/pkgs/by-name/gi/gitu/unit-tests-compile.patch new file mode 100644 index 000000000000..fe071adde849 --- /dev/null +++ b/pkgs/by-name/gi/gitu/unit-tests-compile.patch @@ -0,0 +1,31 @@ +diff --git i/src/git/parse/status/mod.rs w/src/git/parse/status/mod.rs +index 5595ca1..8929d79 100644 +--- i/src/git/parse/status/mod.rs ++++ w/src/git/parse/status/mod.rs +@@ -703,10 +703,12 @@ R old.rs -> new.rs + for c2 in &status_chars { + input.push(*c1); + input.push(*c2); ++ let c1_str = c1.to_string(); ++ let c2_str = c2.to_string(); + input.push_str(&format!( + " file_{}_{}.txt\n", +- if *c1 == ' ' { "space" } else { &c1.to_string() }, +- if *c2 == ' ' { "space" } else { &c2.to_string() } ++ if *c1 == ' ' { "space" } else { &c1_str }, ++ if *c2 == ' ' { "space" } else { &c2_str } + )); + count += 1; + } +diff --git i/src/tests/remote.rs w/src/tests/remote.rs +index 7a81a50..0ac14f5 100644 +--- i/src/tests/remote.rs ++++ w/src/tests/remote.rs +@@ -1,6 +1,6 @@ + use git2::{Buf, Error, Repository}; + +-use crate::{git::remote::*, repo_setup_clone, setup_clone, tests::helpers::RepoTestContext}; ++use crate::{git::remote::*, repo_setup_clone, tests::helpers::RepoTestContext}; + + use super::*; + diff --git a/pkgs/by-name/gr/gradia/package.nix b/pkgs/by-name/gr/gradia/package.nix index 7fe7c7fa3558..8ff766c99497 100644 --- a/pkgs/by-name/gr/gradia/package.nix +++ b/pkgs/by-name/gr/gradia/package.nix @@ -22,13 +22,13 @@ }: python3Packages.buildPythonApplication (finalAttrs: { pname = "gradia"; - version = "1.11.1"; + version = "1.11.3"; pyproject = false; src = fetchFromGitHub { owner = "AlexanderVanhee"; repo = "Gradia"; - tag = "v${finalAttrs.version}"; + rev = "472a970e10c3a85f9db938719ebba121321c1d90"; hash = "sha256-2PSpFmojAIyDNx5yYrLE3CjO/q5iBArmIRikxCGW1HM="; }; @@ -77,11 +77,11 @@ python3Packages.buildPythonApplication (finalAttrs: { meta = { description = "Make your screenshots ready for the world"; homepage = "https://github.com/AlexanderVanhee/Gradia"; - changelog = "https://github.com/AlexanderVanhee/Gradia/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ Cameo007 quadradical + claymorwan ]; mainProgram = "gradia"; platforms = lib.platforms.linux; diff --git a/pkgs/by-name/gr/graphicsmagick/package.nix b/pkgs/by-name/gr/graphicsmagick/package.nix index 3b5cb4b341e0..7859cf088683 100644 --- a/pkgs/by-name/gr/graphicsmagick/package.nix +++ b/pkgs/by-name/gr/graphicsmagick/package.nix @@ -16,7 +16,6 @@ libtool, libwebp, libxml2, - libheifSupport ? true, libheif, nukeReferences, pkg-config, @@ -49,14 +48,14 @@ stdenv.mkDerivation (finalAttrs: { libx11 libjpeg libjxl + libheif libpng libtiff libtool libwebp libxml2 zlib - ] - ++ lib.optionals libheifSupport [ libheif ]; + ]; nativeBuildInputs = [ nukeReferences diff --git a/pkgs/by-name/li/libretro-shaders-slang/package.nix b/pkgs/by-name/li/libretro-shaders-slang/package.nix index e061889648c8..8234fb4a9592 100644 --- a/pkgs/by-name/li/libretro-shaders-slang/package.nix +++ b/pkgs/by-name/li/libretro-shaders-slang/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation { pname = "libretro-shaders-slang"; - version = "0-unstable-2026-02-06"; + version = "0-unstable-2026-02-20"; src = fetchFromGitHub { owner = "libretro"; repo = "slang-shaders"; - rev = "476a4c7226f87dca4ed67635746ebfaa91851a82"; - hash = "sha256-zO9/9OEU5TMokjPdvkKtB4LI/Bf+mDQOtsg0k9dZ99c="; + rev = "ff3bd235e1c59e73da2b878aa12dfce8b79f3dbf"; + hash = "sha256-yIIUPDzHit4K/5guZ3lNY5NJhcqZx/z8P9XG+HP5sLs="; }; dontConfigure = true; diff --git a/pkgs/by-name/li/lightburn/package.nix b/pkgs/by-name/li/lightburn/package.nix index 1b4e5bd9de1e..efb78c8c2655 100644 --- a/pkgs/by-name/li/lightburn/package.nix +++ b/pkgs/by-name/li/lightburn/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { mkdir -p $out/opt cp -ar LightBurn $out/opt/lightburn - install -Dm644 $out/opt/lightburn/LightBurn.png $out/share/pixmaps/lightburn.png + install -Dm644 $out/opt/lightburn/LightBurn.png $out/share/icons/hicolor/512x512/apps/lightburn.png runHook postInstall ''; diff --git a/pkgs/by-name/ma/mame/package.nix b/pkgs/by-name/ma/mame/package.nix index 9aff002a0f9f..25e87769bca5 100644 --- a/pkgs/by-name/ma/mame/package.nix +++ b/pkgs/by-name/ma/mame/package.nix @@ -34,15 +34,15 @@ zlib, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "mame"; version = "0.285"; - srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; + srcVersion = builtins.replaceStrings [ "." ] [ "" ] finalAttrs.version; src = fetchFromGitHub { owner = "mamedev"; repo = "mame"; - rev = "mame${srcVersion}"; + rev = "mame${finalAttrs.srcVersion}"; hash = "sha256-vuGQ1VOjIAEopV4X+qP1k+bgH7lJJLZ9RtYevUxgIQg="; }; @@ -233,7 +233,7 @@ stdenv.mkDerivation rec { calculators, in addition to the arcade video games that were its initial focus. ''; - changelog = "https://github.com/mamedev/mame/releases/download/mame${srcVersion}/whatsnew_${srcVersion}.txt"; + changelog = "https://github.com/mamedev/mame/releases/download/mame${finalAttrs.srcVersion}/whatsnew_${finalAttrs.srcVersion}.txt"; license = with lib.licenses; [ bsd3 gpl2Plus @@ -245,4 +245,4 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; mainProgram = "mame"; }; -} +}) diff --git a/pkgs/by-name/ma/matrix-synapse/package.nix b/pkgs/by-name/ma/matrix-synapse/package.nix index 38609ee1ba2d..391a46d8b4f7 100644 --- a/pkgs/by-name/ma/matrix-synapse/package.nix +++ b/pkgs/by-name/ma/matrix-synapse/package.nix @@ -23,7 +23,8 @@ let searchPath = "${pythonEnv}/${matrix-synapse-unwrapped.python.sitePackages}"; in stdenv.mkDerivation { - name = (lib.appendToName "wrapped" matrix-synapse-unwrapped).name; + pname = (lib.appendToName "wrapped" matrix-synapse-unwrapped).pname; + inherit (matrix-synapse-unwrapped) version; nativeBuildInputs = [ makeWrapper diff --git a/pkgs/by-name/ma/mautrix-whatsapp/package.nix b/pkgs/by-name/ma/mautrix-whatsapp/package.nix index b44e5998cc4e..a9c8d6eb934d 100644 --- a/pkgs/by-name/ma/mautrix-whatsapp/package.nix +++ b/pkgs/by-name/ma/mautrix-whatsapp/package.nix @@ -14,20 +14,20 @@ buildGoModule rec { pname = "mautrix-whatsapp"; - version = "26.01"; - tag = "v0.2601.0"; + version = "26.02"; + tag = "v0.2602.0"; src = fetchFromGitHub { owner = "mautrix"; repo = "whatsapp"; inherit tag; - hash = "sha256-CNrAQSZgF0t5oo2xRsVdif3LIGOnTe2ea996icVkCjE="; + hash = "sha256-FcjLOZdXXj6B7Yk6shLQyd9X+UAUdnThNk0qHN3TgGE="; }; buildInputs = lib.optional (!withGoolm) olm; tags = lib.optional withGoolm "goolm"; - vendorHash = "sha256-Jvd3NgDRCyLrRV+6+kmcUSPCSSaxaKLD9EdrSyFwm1M="; + vendorHash = "sha256-kzEitFzdmeS6kKaDSMpS6pliApwa3tUObd66X+cYkek="; ldflags = [ "-s" diff --git a/pkgs/by-name/mi/microsoft-edge/package.nix b/pkgs/by-name/mi/microsoft-edge/package.nix index c09e9ec9b93f..b2b3d21d2d39 100644 --- a/pkgs/by-name/mi/microsoft-edge/package.nix +++ b/pkgs/by-name/mi/microsoft-edge/package.nix @@ -162,11 +162,11 @@ let in stdenvNoCC.mkDerivation (finalAttrs: { pname = "microsoft-edge"; - version = "145.0.3800.58"; + version = "145.0.3800.70"; src = fetchurl { url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; - hash = "sha256-RmXe5w7UQALjjEPfrH3l5nyi0U58x5OlNrtfWIY48U0="; + hash = "sha256-gUyh9AD1ntnZb2iLRwKLxy0PxY0Dist73oT9AC2pFQI="; }; # With strictDeps on, some shebangs were not being patched correctly diff --git a/pkgs/by-name/mi/minijinja/package.nix b/pkgs/by-name/mi/minijinja/package.nix index c30e843b78a3..0b7bde4c4299 100644 --- a/pkgs/by-name/mi/minijinja/package.nix +++ b/pkgs/by-name/mi/minijinja/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "minijinja"; - version = "2.15.1"; + version = "2.16.0"; src = fetchFromGitHub { owner = "mitsuhiko"; repo = "minijinja"; rev = finalAttrs.version; - hash = "sha256-b9Qmst+TXGGTx1k/TnDs4m1nL8aTgNYRCreNLXHCd3I="; + hash = "sha256-55Zo8mVgMhCgYzE6662oTXfn7W908LplZv6ys/aHveY="; }; - cargoHash = "sha256-Mpu4Cg3CPvTLAHUnv5pfV77c0aGPyfAeFuhM4iu6Em0="; + cargoHash = "sha256-aSszdJCOdO8xvypBGXm2kItjl9HojyxC8/BeKrOAImU="; # The tests relies on the presence of network connection doCheck = false; diff --git a/pkgs/by-name/mo/monkeys-audio/package.nix b/pkgs/by-name/mo/monkeys-audio/package.nix index 00cdb721ca62..1515a4dfc71e 100644 --- a/pkgs/by-name/mo/monkeys-audio/package.nix +++ b/pkgs/by-name/mo/monkeys-audio/package.nix @@ -6,12 +6,12 @@ }: stdenv.mkDerivation (finalAttrs: { - version = "12.13"; + version = "12.34"; pname = "monkeys-audio"; src = fetchzip { url = "https://monkeysaudio.com/files/MAC_${builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; - hash = "sha256-S9YZ2MdblIm/Der6RS9ryGNijUZJOmQRARKG6x/Zu3s="; + hash = "sha256-SfiWHwExJ/k6ERUGND8j9Q01UMutXo0NeNEUw9aK3Xs="; stripRoot = false; }; diff --git a/pkgs/by-name/ms/msnake/package.nix b/pkgs/by-name/ms/msnake/package.nix index fac1933ab265..d5a3d8a391b0 100644 --- a/pkgs/by-name/ms/msnake/package.nix +++ b/pkgs/by-name/ms/msnake/package.nix @@ -19,11 +19,16 @@ stdenv.mkDerivation (finalAttrs: { }; postPatch = '' - substituteInPlace CMakeLists.txt --replace-fail \ - "cmake_minimum_required(VERSION 2.8.4)" \ - "cmake_minimum_required(VERSION 4.0)" + substituteInPlace CMakeLists.txt \ + --replace-fail \ + "cmake_minimum_required(VERSION 2.8.4)" \ + "cmake_minimum_required(VERSION 4.0)" \ + --replace-fail "project(msnake)" "project(msnake C)" ''; + # fixes: error: conflicting types for 'display_highscore' + env.NIX_CFLAGS_COMPILE = "-std=gnu17"; + nativeBuildInputs = [ cmake ]; diff --git a/pkgs/by-name/n8/n8n/package.nix b/pkgs/by-name/n8/n8n/package.nix index 69bccd10211e..c2a673959fd8 100644 --- a/pkgs/by-name/n8/n8n/package.nix +++ b/pkgs/by-name/n8/n8n/package.nix @@ -25,20 +25,20 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "n8n"; - version = "2.6.4"; + version = "2.8.3"; src = fetchFromGitHub { owner = "n8n-io"; repo = "n8n"; tag = "n8n@${finalAttrs.version}"; - hash = "sha256-t3zwxyjiocVoq7wbH4WYiUggaZFHlV9/vzrIorH7jPc="; + hash = "sha256-xbJZD+L/8ZK7GPqFKO6H/Cg40Pk2cqN3MWC+mNFVxbI="; }; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; pnpm = pnpm_10; fetcherVersion = 3; - hash = "sha256-vjgteuMd+lkEL9vT1Ngndk8G3Ad1esa1NBPpEHBFmDg="; + hash = "sha256-gX4pYiztKIRFbJNZhtQviWpp80teOzX1JaYKylGe4TY="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/oc/oci-cli/package.nix b/pkgs/by-name/oc/oci-cli/package.nix index 1f05158046ac..afa934a652cf 100644 --- a/pkgs/by-name/oc/oci-cli/package.nix +++ b/pkgs/by-name/oc/oci-cli/package.nix @@ -25,14 +25,14 @@ in py.pkgs.buildPythonApplication rec { pname = "oci-cli"; - version = "3.73.2"; + version = "3.74.0"; pyproject = true; src = fetchFromGitHub { owner = "oracle"; repo = "oci-cli"; tag = "v${version}"; - hash = "sha256-se8xUSamPI4K6JQ+eUjCgnB2E5j9iRVNqam4vdRELPA="; + hash = "sha256-s2mE3aE0QJqyvzD7eL7MoRBRopWFGUVFZ7d3pRwF7gA="; }; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/pa/par-lang/package.nix b/pkgs/by-name/pa/par-lang/package.nix index 853f30797008..59df35b2163d 100644 --- a/pkgs/by-name/pa/par-lang/package.nix +++ b/pkgs/by-name/pa/par-lang/package.nix @@ -19,13 +19,13 @@ rustPlatform.buildRustPackage { pname = "par-lang"; - version = "0-unstable-2026-02-10"; + version = "0-unstable-2026-02-20"; src = fetchFromGitHub { owner = "faiface"; repo = "par-lang"; - rev = "0bea31c716761fb608a1a43013e5c6b30ad6bd7f"; - hash = "sha256-1dqQ8h2F7erKeZAL8RRdG/uCBF39gyunS2Jna8lcv0k="; + rev = "a43b59ab58b503f8e3171d9bdeba02ad0d43d0b4"; + hash = "sha256-GTYRPhn6y7yaBMrxYAywnSOOggxI3+e7WlNWcMbuvNk="; }; cargoHash = "sha256-Z0aTVloZY3UQWkL3+cMqxfzACLwD7OayjBPZbQ0bk1c="; diff --git a/pkgs/by-name/pa/passes/package.nix b/pkgs/by-name/pa/passes/package.nix index 922af25898a3..51e4d1b9f536 100644 --- a/pkgs/by-name/pa/passes/package.nix +++ b/pkgs/by-name/pa/passes/package.nix @@ -30,6 +30,11 @@ stdenv.mkDerivation (finalAttrs: { postPatch = '' substituteInPlace src/model/meson.build \ --replace-fail /app/lib ${lib.getLib libzint}/lib + + substituteInPlace ./src/meson.build \ + --replace-fail "conf.set('PYTHON', python.find_installation('python3').full_path())" "conf.set('PYTHON', '${ + lib.getExe (python3.withPackages (pp: [ pp.pygobject3 ])) + }')" ''; strictDeps = true; @@ -42,7 +47,6 @@ stdenv.mkDerivation (finalAttrs: { meson ninja pkg-config - (python3.withPackages (pp: [ pp.pygobject3 ])) wrapGAppsHook4 ]; diff --git a/pkgs/by-name/ra/rapidcsv/package.nix b/pkgs/by-name/ra/rapidcsv/package.nix index 9277d3e3b8f9..56d60570119b 100644 --- a/pkgs/by-name/ra/rapidcsv/package.nix +++ b/pkgs/by-name/ra/rapidcsv/package.nix @@ -6,13 +6,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "rapidcsv"; - version = "8.90"; + version = "8.92"; src = fetchFromGitHub { owner = "d99kris"; repo = "rapidcsv"; rev = "v${finalAttrs.version}"; - hash = "sha256-0t2iURPBJpqt1Ndznuqg0qnnz574FtDAwyWTcYM1hBA="; + hash = "sha256-8g96mgTArtpAYHqfGCBaG4WB0ho3l8nygAS8yLVq0XE="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/re/reversal-icon-theme/package.nix b/pkgs/by-name/re/reversal-icon-theme/package.nix index 489910d2f1d0..6d0d52b413f0 100644 --- a/pkgs/by-name/re/reversal-icon-theme/package.nix +++ b/pkgs/by-name/re/reversal-icon-theme/package.nix @@ -8,7 +8,6 @@ hicolor-icon-theme, numix-icon-theme-circle, gitUpdater, - allColorVariants ? false, colorVariants ? [ ], }: @@ -17,16 +16,18 @@ let in lib.checkListOfEnum "${pname}: color variants" [ - "-blue" - "-red" - "-pink" - "-purple" - "-green" - "-orange" - "-brown" - "-grey" - "-black" - "-cyan" + "black" + "blue" + "brown" + "cyan" + "green" + "grey" + "lightblue" + "orange" + "pink" + "purple" + "red" + "all" ] colorVariants @@ -73,7 +74,7 @@ lib.checkListOfEnum "${pname}: color variants" mkdir -p $out/share/icons name= ./install.sh \ - ${if allColorVariants then "-a" else toString colorVariants} \ + -t ${toString colorVariants} \ -d $out/share/icons rm $out/share/icons/*/{AUTHORS,COPYING} diff --git a/pkgs/by-name/ro/roslyn-ls/deps.json b/pkgs/by-name/ro/roslyn-ls/deps.json index a8f10b4a9fff..afd488a48a87 100644 --- a/pkgs/by-name/ro/roslyn-ls/deps.json +++ b/pkgs/by-name/ro/roslyn-ls/deps.json @@ -79,9 +79,9 @@ }, { "pname": "Microsoft.CodeAnalysis.BannedApiAnalyzers", - "version": "5.4.0-2.26060.102", - "hash": "sha256-OxqQo5NUVs1UuWTc/DiAHUY693VJDQCPv5CXuh9x1ow=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.bannedapianalyzers/5.4.0-2.26060.102/microsoft.codeanalysis.bannedapianalyzers.5.4.0-2.26060.102.nupkg" + "version": "5.4.0-2.26062.101", + "hash": "sha256-MUuAW6G8i4X2cbDlTeI0w2hCVffVzpQdGJLfHrdkPVQ=", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.bannedapianalyzers/5.4.0-2.26062.101/microsoft.codeanalysis.bannedapianalyzers.5.4.0-2.26062.101.nupkg" }, { "pname": "Microsoft.CodeAnalysis.Common", @@ -103,9 +103,9 @@ }, { "pname": "Microsoft.CodeAnalysis.PublicApiAnalyzers", - "version": "5.4.0-2.26060.102", - "hash": "sha256-E5JTn3ZWGipvAkCA6khC0gKtEv+LJm5k64KwlcnwbNg=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.publicapianalyzers/5.4.0-2.26060.102/microsoft.codeanalysis.publicapianalyzers.5.4.0-2.26060.102.nupkg" + "version": "5.4.0-2.26062.101", + "hash": "sha256-x94Y4zAEyokSTxy6VQ0jaMdIf4f3Pegyiq6iylEgyO8=", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.publicapianalyzers/5.4.0-2.26062.101/microsoft.codeanalysis.publicapianalyzers.5.4.0-2.26062.101.nupkg" }, { "pname": "Microsoft.CSharp", @@ -127,9 +127,9 @@ }, { "pname": "Microsoft.DotNet.FileBasedPrograms", - "version": "11.0.100-alpha.1.26060.102", - "hash": "sha256-2wcbDTV7kJqbRlHaGRtWQw5tBhYP0JBXGPjZcyluU0E=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a57d0dd1-b586-4233-8880-21626fab1f1a/nuget/v3/flat2/microsoft.dotnet.filebasedprograms/11.0.100-alpha.1.26060.102/microsoft.dotnet.filebasedprograms.11.0.100-alpha.1.26060.102.nupkg" + "version": "11.0.100-alpha.1.26062.101", + "hash": "sha256-/Fg+hpfShTAmP15/O4eVRB9PCUHcITd6mu/dpmfY3Xs=", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a57d0dd1-b586-4233-8880-21626fab1f1a/nuget/v3/flat2/microsoft.dotnet.filebasedprograms/11.0.100-alpha.1.26062.101/microsoft.dotnet.filebasedprograms.11.0.100-alpha.1.26062.101.nupkg" }, { "pname": "Microsoft.DotNet.XliffTasks", @@ -439,9 +439,9 @@ }, { "pname": "Roslyn.Diagnostics.Analyzers", - "version": "5.4.0-2.26060.102", - "hash": "sha256-XUTC2E3EdZ4Y+fwL1NoPK1GELYHDLgqlQbwLDWghZ/w=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/roslyn.diagnostics.analyzers/5.4.0-2.26060.102/roslyn.diagnostics.analyzers.5.4.0-2.26060.102.nupkg" + "version": "5.4.0-2.26062.101", + "hash": "sha256-sxrrxH4JBtnrcJJ4DO3pQR3nIawTGP1mJan96vd4dDQ=", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/roslyn.diagnostics.analyzers/5.4.0-2.26062.101/roslyn.diagnostics.analyzers.5.4.0-2.26062.101.nupkg" }, { "pname": "SQLitePCLRaw.bundle_green", @@ -505,9 +505,9 @@ }, { "pname": "System.CommandLine", - "version": "3.0.0-alpha.1.26060.102", - "hash": "sha256-jvTFAZTJWGooqjR1qS86UAOTw1RCaVzNBlBUov404ss=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/516521bf-6417-457e-9a9c-0a4bdfde03e7/nuget/v3/flat2/system.commandline/3.0.0-alpha.1.26060.102/system.commandline.3.0.0-alpha.1.26060.102.nupkg" + "version": "3.0.0-alpha.1.26062.101", + "hash": "sha256-lzb+ooqLUSW6eU2jy5H4Vl62Fp+yizNBYPK1L5fjZ/M=", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/516521bf-6417-457e-9a9c-0a4bdfde03e7/nuget/v3/flat2/system.commandline/3.0.0-alpha.1.26062.101/system.commandline.3.0.0-alpha.1.26062.101.nupkg" }, { "pname": "System.ComponentModel.Composition", diff --git a/pkgs/by-name/ro/roslyn-ls/package.nix b/pkgs/by-name/ro/roslyn-ls/package.nix index a850edd64e05..d590e750a453 100644 --- a/pkgs/by-name/ro/roslyn-ls/package.nix +++ b/pkgs/by-name/ro/roslyn-ls/package.nix @@ -38,18 +38,18 @@ in buildDotnetModule (finalAttrs: rec { inherit pname dotnet-sdk dotnet-runtime; - vsVersion = "2.121.32-prerelease"; + vsVersion = "2.123.34-prerelease"; src = fetchFromGitHub { owner = "dotnet"; repo = "roslyn"; rev = "VSCode-CSharp-${vsVersion}"; - hash = "sha256-7rkrKoCk5QCRpD3ggMzyRJwJv0EPdbXpE05sainwCCw="; + hash = "sha256-UirJNrW1qcxt61Hsyfe/dYO1N2WH8Tr1mctTEUZ5pSs="; }; # versioned independently from vscode-csharp # "roslyn" in here: # https://github.com/dotnet/vscode-csharp/blob/main/package.json - version = "5.5.0-2.26080.10"; + version = "5.5.0-2.26117.2"; projectFile = "src/LanguageServer/${project}/${project}.csproj"; useDotnetFromEnv = true; nugetDeps = ./deps.json; diff --git a/pkgs/by-name/sa/sail/package.nix b/pkgs/by-name/sa/sail/package.nix index b46f1f45e0be..81746bd2f87d 100644 --- a/pkgs/by-name/sa/sail/package.nix +++ b/pkgs/by-name/sa/sail/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "sail"; - version = "0.5.0"; + version = "0.5.1"; src = fetchFromGitHub { owner = "lakehq"; repo = "sail"; tag = "v${finalAttrs.version}"; - hash = "sha256-JHeFJnPgDuRlUVHg5DrlC/rpeOKu/g9LfS2drpmpVa8="; + hash = "sha256-/2UG0LGRWkC6nuwGgCQMWaWW9tvFoFjJqNrKQmtvPOU="; }; - cargoHash = "sha256-pDB9tXDdPZ9YhAJC2Vax0/SCWiG3APVQQy/PgSSClUw="; + cargoHash = "sha256-e+UpMzBWNMtLhzgcxsqxzII70xckRP0HUUEjzCm1Be8="; cargoBuildFlags = [ "-p" diff --git a/pkgs/by-name/sl/slade/package.nix b/pkgs/by-name/sl/slade/package.nix index 321d040a510b..c8ae877a1c0a 100644 --- a/pkgs/by-name/sl/slade/package.nix +++ b/pkgs/by-name/sl/slade/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "slade"; - version = "3.2.11"; + version = "3.2.12"; src = fetchFromGitHub { owner = "sirjuddington"; repo = "SLADE"; tag = finalAttrs.version; - hash = "sha256-kZ6KyhI2oZH0SeymcHge9+rbq/ZGfhKXGdfOlje2zqM="; + hash = "sha256-HSfK4vBGoRlljJ7JEJLjzSLmevIqllTwJ6z8bXPUp0w="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ti/tideways-daemon/package.nix b/pkgs/by-name/ti/tideways-daemon/package.nix index 1b8a82c2940a..758ba6ca8f4a 100644 --- a/pkgs/by-name/ti/tideways-daemon/package.nix +++ b/pkgs/by-name/ti/tideways-daemon/package.nix @@ -10,7 +10,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "tideways-daemon"; - version = "1.13.0"; + version = "1.14.0"; src = finalAttrs.passthru.sources.${stdenvNoCC.hostPlatform.system} @@ -28,15 +28,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { sources = { "x86_64-linux" = fetchurl { url = "https://tideways.s3.amazonaws.com/daemon/${finalAttrs.version}/tideways-daemon_linux_amd64-${finalAttrs.version}.tar.gz"; - hash = "sha256-K2CnKoQwfe1pJ8bfJOFt/OvKqRzZ3gMU2UdOSboIKtY="; + hash = "sha256-T32SqZfpZBraQ/KaO1RhOBh7HjesK6KHopiWsw/lDjE="; }; "aarch64-linux" = fetchurl { url = "https://tideways.s3.amazonaws.com/daemon/${finalAttrs.version}/tideways-daemon_linux_aarch64-${finalAttrs.version}.tar.gz"; - hash = "sha256-DpLa7w5iVB96jVJkBlmMR2RbeDxggErvdOoKoilXLyQ="; + hash = "sha256-wzchxvmRWp8HF7MEoUbY/7nNAtR7nmhWamfxg1YiHv4="; }; "aarch64-darwin" = fetchurl { url = "https://tideways.s3.amazonaws.com/daemon/${finalAttrs.version}/tideways-daemon_macos_arm64-${finalAttrs.version}.tar.gz"; - hash = "sha256-7kpgId/ok2R2Z2hOstr2fp1cOATbbb3nPWz+ELyQAe8="; + hash = "sha256-W9Eyd7U01kghw7Zy6H9WUxtaEkEgbpDqdmI0RA0sOn8="; }; }; updateScript = "${ diff --git a/pkgs/by-name/to/tombi/package.nix b/pkgs/by-name/to/tombi/package.nix index 7fa98e260aec..fb55ddd68a45 100644 --- a/pkgs/by-name/to/tombi/package.nix +++ b/pkgs/by-name/to/tombi/package.nix @@ -9,19 +9,19 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "tombi"; - version = "0.7.28"; + version = "0.7.31"; src = fetchFromGitHub { owner = "tombi-toml"; repo = "tombi"; tag = "v${finalAttrs.version}"; - hash = "sha256-K3MB3G/+nN1FgcPiUnQlEArosre5pkZwx5+RgVjOcFM="; + hash = "sha256-1md4NoDoqTcIPXzMK9IdYk8PCf0jcZIUcOViAm7N+90="; }; # Tests relies on the presence of network doCheck = false; cargoBuildFlags = [ "--package tombi-cli" ]; - cargoHash = "sha256-cvFD7Yi2Lu6j8uUlntPapeKgNwiqZkf701JJ3yp3cc0="; + cargoHash = "sha256-a7+M+KOYD3SboIzg1kmNV+kehHsae0/+C6hneBeRFGo="; postPatch = '' substituteInPlace Cargo.toml \ diff --git a/pkgs/by-name/tu/tusd/package.nix b/pkgs/by-name/tu/tusd/package.nix index b4f4291ed295..6729ebcfe5ad 100644 --- a/pkgs/by-name/tu/tusd/package.nix +++ b/pkgs/by-name/tu/tusd/package.nix @@ -7,16 +7,16 @@ buildGoModule (finalAttrs: { pname = "tusd"; - version = "2.8.0"; + version = "2.9.1"; src = fetchFromGitHub { owner = "tus"; repo = "tusd"; tag = "v${finalAttrs.version}"; - hash = "sha256-OzXBeLDjaJk4NVgsauR/NUATh7qHbuEfWNdhytZmd0A="; + hash = "sha256-xZGGvXLluugPEq6zW25yMG5K+IPKw6PrGOM/GBlox1k="; }; - vendorHash = "sha256-YununGyB72zE0tmqO3BREJeMTjCuy/1fhPHC5r8OLjg="; + vendorHash = "sha256-V2EPvrTzs31tagVU3kl+8Fcn0xvLBsUuMKEYwPGJHy0="; ldflags = [ "-X github.com/tus/tusd/v2/cmd/tusd/cli.VersionName=v${finalAttrs.version}" diff --git a/pkgs/by-name/vi/victoriametrics/package.nix b/pkgs/by-name/vi/victoriametrics/package.nix index cc15b1ca0627..1e70efca54bc 100644 --- a/pkgs/by-name/vi/victoriametrics/package.nix +++ b/pkgs/by-name/vi/victoriametrics/package.nix @@ -1,6 +1,6 @@ { lib, - buildGoModule, + buildGo126Module, fetchFromGitHub, nixosTests, withServer ? true, # the actual metrics server @@ -11,15 +11,15 @@ withVmctl ? true, # vmctl is used to migrate time series }: -buildGoModule (finalAttrs: { +buildGo126Module (finalAttrs: { pname = "VictoriaMetrics"; - version = "1.135.0"; + version = "1.136.0"; src = fetchFromGitHub { owner = "VictoriaMetrics"; repo = "VictoriaMetrics"; tag = "v${finalAttrs.version}"; - hash = "sha256-sQjha7ZVR/hFllN+vWd58eVjLR70axtKqOYu4SelwQM="; + hash = "sha256-mYFZ2swaRHYfKeL5r4NTmynQ5sOHcHMPJlChKXQsreA="; }; vendorHash = null; diff --git a/pkgs/by-name/we/weston/package.nix b/pkgs/by-name/we/weston/package.nix index 5e5af35f1809..c6d103f0fbe1 100644 --- a/pkgs/by-name/we/weston/package.nix +++ b/pkgs/by-name/we/weston/package.nix @@ -1,10 +1,10 @@ { lib, stdenv, - fetchurl, - fetchpatch2, + fetchFromGitLab, meson, ninja, + nix-update-script, pkg-config, python3, wayland-scanner, @@ -20,12 +20,15 @@ wayland, wayland-protocols, libxcb-cursor, + glslang, demoSupport ? true, jpegSupport ? true, libjpeg, lcmsSupport ? true, lcms2, + luaSupport ? true, + lua5_4_compat, pangoSupport ? true, pango, pipewireSupport ? true, @@ -34,12 +37,15 @@ freerdp, remotingSupport ? true, gst_all_1, - vaapiSupport ? true, + vaapiSupport ? false, libva, vncSupport ? true, aml, neatvnc, pam, + vulkanSupport ? true, + vulkan-headers, + vulkan-loader, webpSupport ? true, libwebp, xwaylandSupport ? true, @@ -49,22 +55,16 @@ stdenv.mkDerivation (finalAttrs: { pname = "weston"; - version = "14.0.1"; + version = "15.0.0"; - src = fetchurl { - url = "https://gitlab.freedesktop.org/wayland/weston/-/releases/${finalAttrs.version}/downloads/weston-${finalAttrs.version}.tar.xz"; - hash = "sha256-qBUFBbEmpZ33gf6MMMjm+H2nAT4XkDnrhEpbu8x8ebM="; + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + owner = "wayland"; + repo = "weston"; + rev = finalAttrs.version; + hash = "sha256-7FbQkXazsf6FkkNbE+Q6ilKACFa/CoOL2Q1oXHuaVX8="; }; - patches = [ - (fetchpatch2 { - # vnc: Allow neatvnc in version 0.9.0 - # https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1649 - url = "https://gitlab.freedesktop.org/wayland/weston/-/commit/b4386289d614f26e89e1c6eb17e048826e925ed1.patch"; - hash = "sha256-mkIOup44C9Kp42tFMXz8Sis4URmPi4t605MQG672nJU="; - }) - ]; - depsBuildBuild = [ pkg-config ]; nativeBuildInputs = [ meson @@ -72,7 +72,9 @@ stdenv.mkDerivation (finalAttrs: { pkg-config python3 wayland-scanner - ]; + ] + ++ lib.optional vulkanSupport glslang; + buildInputs = [ cairo libGL @@ -88,6 +90,7 @@ stdenv.mkDerivation (finalAttrs: { ] ++ lib.optional jpegSupport libjpeg ++ lib.optional lcmsSupport lcms2 + ++ lib.optional luaSupport lua5_4_compat ++ lib.optional pangoSupport pango ++ lib.optional pipewireSupport pipewire ++ lib.optional rdpSupport freerdp @@ -101,6 +104,10 @@ stdenv.mkDerivation (finalAttrs: { neatvnc pam ] + ++ lib.optionals vulkanSupport [ + vulkan-headers + vulkan-loader + ] ++ lib.optional webpSupport libwebp ++ lib.optionals xwaylandSupport [ libxcursor @@ -109,7 +116,7 @@ stdenv.mkDerivation (finalAttrs: { ]; mesonFlags = [ - (lib.mesonBool "backend-drm-screencast-vaapi" vaapiSupport) + (lib.mesonBool "deprecated-backend-drm-screencast-vaapi" vaapiSupport) (lib.mesonBool "backend-pipewire" pipewireSupport) (lib.mesonBool "backend-rdp" rdpSupport) (lib.mesonBool "backend-vnc" vncSupport) @@ -119,7 +126,9 @@ stdenv.mkDerivation (finalAttrs: { (lib.mesonBool "image-webp" webpSupport) (lib.mesonBool "pipewire" pipewireSupport) (lib.mesonBool "remoting" remotingSupport) + (lib.mesonBool "renderer-vulkan" vulkanSupport) (lib.mesonOption "simple-clients" "") + (lib.mesonBool "shell-lua" luaSupport) (lib.mesonBool "test-junit-xml" false) (lib.mesonBool "xwayland" xwaylandSupport) ] @@ -127,7 +136,10 @@ stdenv.mkDerivation (finalAttrs: { (lib.mesonOption "xwayland-path" (lib.getExe xwayland)) ]; - passthru.providedSessions = [ "weston" ]; + passthru = { + providedSessions = [ "weston" ]; + updateScript = nix-update-script { }; + }; meta = { description = "Lightweight and functional Wayland compositor"; diff --git a/pkgs/by-name/wh/whosthere/package.nix b/pkgs/by-name/wh/whosthere/package.nix index 1555abe0b225..fac4be2372cc 100644 --- a/pkgs/by-name/wh/whosthere/package.nix +++ b/pkgs/by-name/wh/whosthere/package.nix @@ -31,16 +31,6 @@ buildGoModule (finalAttrs: { "main.versionStr=${finalAttrs.version}" ]; - checkFlags = - let - # Skip tests that require filesystem access - skippedTests = [ - "TestResolveLogPath" - "TestStateDir" - ]; - in - [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd whosthere \ --bash <("$out/bin/whosthere" completion bash) \ @@ -65,7 +55,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/ramonvermeulen/whosthere"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = lib.platforms.linux; + platforms = lib.platforms.unix; mainProgram = "whosthere"; }; }) diff --git a/pkgs/by-name/x2/x2goserver/package.nix b/pkgs/by-name/x2/x2goserver/package.nix index bcad5aded4b3..8dfede10715a 100644 --- a/pkgs/by-name/x2/x2goserver/package.nix +++ b/pkgs/by-name/x2/x2goserver/package.nix @@ -36,11 +36,11 @@ let pname = "x2goserver"; - version = "4.1.0.3"; + version = "4.1.0.5"; src = fetchurl { url = "https://code.x2go.org/releases/source/${pname}/${pname}-${version}.tar.gz"; - sha256 = "Z3aqo1T1pE40nws8F21JiMiKYYwu30bJijeuicBp3NA="; + hash = "sha256-Q1vbB84iQZ2eRWDf+Kyn+utrNgkdVayrwXZCm5Ia65Y="; }; x2go-perl = perlPackages.buildPerlPackage { diff --git a/pkgs/desktops/lomiri/development/gsettings-qt/default.nix b/pkgs/desktops/lomiri/development/gsettings-qt/default.nix index 7a836d1f59fc..285af24eedec 100644 --- a/pkgs/desktops/lomiri/development/gsettings-qt/default.nix +++ b/pkgs/desktops/lomiri/development/gsettings-qt/default.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gsettings-qt"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitLab { owner = "ubports"; repo = "development/core/gsettings-qt"; rev = "v${finalAttrs.version}"; - hash = "sha256-NUrJ3xQnef7TwPa7AIZaiI7TAkMe+nhuEQ/qC1H1Ves="; + hash = "sha256-JgfDa4MStNyG84PmJNOC+1x/wwQiJpJwWV9XVwzkWYw="; }; outputs = [ diff --git a/pkgs/development/cuda-modules/_cuda/db/bootstrap/nvcc.nix b/pkgs/development/cuda-modules/_cuda/db/bootstrap/nvcc.nix index 7a1548f81645..ba3725260f2a 100644 --- a/pkgs/development/cuda-modules/_cuda/db/bootstrap/nvcc.nix +++ b/pkgs/development/cuda-modules/_cuda/db/bootstrap/nvcc.nix @@ -265,7 +265,7 @@ }; # 12.9 to 13.0 adds support for GCC 15 and Clang 20 - # https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#host-compiler-support-policy + # https://docs.nvidia.com/cuda/archive/13.0.2/cuda-installation-guide-linux/index.html#host-compiler-support-policy "13.0" = { clang = { maxMajorVersion = "20"; @@ -276,5 +276,18 @@ minMajorVersion = "6"; }; }; + + # 13.0 to 13.1 adds support for Clang 21 + # https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#host-compiler-support-policy + "13.1" = { + clang = { + maxMajorVersion = "21"; + minMajorVersion = "7"; + }; + gcc = { + maxMajorVersion = "15"; + minMajorVersion = "6"; + }; + }; }; } diff --git a/pkgs/development/cuda-modules/_cuda/manifests/cuda/redistrib_13.1.1.json b/pkgs/development/cuda-modules/_cuda/manifests/cuda/redistrib_13.1.1.json new file mode 100644 index 000000000000..184990767173 --- /dev/null +++ b/pkgs/development/cuda-modules/_cuda/manifests/cuda/redistrib_13.1.1.json @@ -0,0 +1,1098 @@ +{ + "release_date": "2026-01-12", + "release_label": "13.1.1", + "release_product": "cuda", + "collectx_bringup": { + "name": "UFM telemetry CollectX Bringup", + "license": "NVIDIA Proprietary", + "license_path": "collectx_bringup/LICENSE.txt", + "version": "1.22.1", + "linux-x86_64": { + "relative_path": "collectx_bringup/linux-x86_64/collectx_bringup-linux-x86_64-1.22.1-archive.tar.xz", + "sha256": "ba1676715cc32ddf9695e1e59fe283c0489a9a18f6a0bfdd1b0104631766a1ca", + "md5": "e480e74d2ca1ec226c1f15f47d0fac30", + "size": "142950700" + }, + "linux-sbsa": { + "relative_path": "collectx_bringup/linux-sbsa/collectx_bringup-linux-sbsa-1.22.1-archive.tar.xz", + "sha256": "8f7dd62d0adf8dfd0543aa82c1859f161fea23e8d5bb5b4b2bcc698508329a22", + "md5": "5e44cf49922aec1937414c0f54b2e491", + "size": "125513356" + } + }, + "cuda_cccl": { + "name": "CXX Core Compute Libraries", + "license": "CUDA Toolkit", + "license_path": "cuda_cccl/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "b0fff2704e59d4e6f6f4b7b5b64f96a7bf86760a5696fd6cb6936f8f9cd92d4c", + "md5": "c09be80208061a2cd75f78cc3dc5a2a7", + "size": "1094324" + }, + "linux-sbsa": { + "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "c636c7b427090ff8c5059d2f977506120921c3c750ebf2e90c464b04629a6585", + "md5": "f40f129f74ccc70c0d64f2ac9c89a475", + "size": "1093804" + }, + "windows-x86_64": { + "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-13.1.115-archive.zip", + "sha256": "23dd0b6cde26c5a3c9a86e9e29f4067449e32e0e6e220c2a9ffbaeee32277db3", + "md5": "71d2b9d750d5892796efc827fe999c07", + "size": "3421112" + } + }, + "cuda_compat": { + "name": "CUDA Forward Compatability", + "license": "CUDA Toolkit", + "license_path": "cuda_compat/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "cuda13.1": { + "relative_path": "cuda_compat/linux-x86_64/cuda_compat-linux-x86_64-590.48.01_cuda13.1-archive.tar.xz", + "sha256": "0e8c1ec14c2abbce76943cb32907b39237a41bf267ec6665f04d48b240ae539f", + "md5": "dbe74cef5f92c4704360c4f5c172df54", + "size": "95258812" + } + }, + "cuda_variant": [ + "13.1" + ], + "linux-sbsa": { + "cuda13.1": { + "relative_path": "cuda_compat/linux-sbsa/cuda_compat-linux-sbsa-590.48.01_cuda13.1-archive.tar.xz", + "sha256": "f3e02edc1a1080f44ec69478011e73218c7e20eaf52422963fd084ad0310bb64", + "md5": "052f6169b950c02f80a614946700c5fc", + "size": "87054752" + } + } + }, + "cuda_crt": { + "name": "CUDA CRT", + "license": "CUDA Toolkit", + "license_path": "cuda_crt/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_crt/linux-x86_64/cuda_crt-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "e2861bbc6400815be6689cdc84afddfedc51103189888c8e51a2e9543e55a5b3", + "md5": "1f90321a7b5d3c90fd43dcfde32f4fa8", + "size": "79628" + }, + "linux-sbsa": { + "relative_path": "cuda_crt/linux-sbsa/cuda_crt-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "520621d632fc99371d21c042dd4c1f43cd5570b57602f2783c93b4f8cb48a0e8", + "md5": "0347994e28f1a14fec85d0fbe97816bc", + "size": "79616" + }, + "windows-x86_64": { + "relative_path": "cuda_crt/windows-x86_64/cuda_crt-windows-x86_64-13.1.115-archive.zip", + "sha256": "70ceb7b7c5ef29fab700000fd0b127b7ffd4c8a78eac413ed2c39eb94437580c", + "md5": "d07837c1f8c329d5dd2770192f3a2066", + "size": "138701" + } + }, + "cuda_ctadvisor": { + "name": "ctadvisor", + "license": "CUDA Toolkit", + "license_path": "cuda_ctadvisor/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_ctadvisor/linux-x86_64/cuda_ctadvisor-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "08d9c50c046bb5e71b21951c7f8032003d7997040d9e8adc6a3a5cb172b6f3fb", + "md5": "0c576cc606356428312bee57b3b01d34", + "size": "642112" + }, + "linux-sbsa": { + "relative_path": "cuda_ctadvisor/linux-sbsa/cuda_ctadvisor-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "9b11db1e5fcca2431f49a6304b9af452add35185ef9864ba8d51d90246fe93af", + "md5": "3a0255fb1d6b407e81df3daa99cd6839", + "size": "529860" + }, + "windows-x86_64": { + "relative_path": "cuda_ctadvisor/windows-x86_64/cuda_ctadvisor-windows-x86_64-13.1.115-archive.zip", + "sha256": "17c7996e72e3d6ec04fb20e512ef45789b9e580dfe51eabe3cb8298d5e280d33", + "md5": "8783c1f13a1c3d372a4dd0018a5e167a", + "size": "861193" + } + }, + "cuda_cudart": { + "name": "CUDA Runtime (cudart)", + "license": "CUDA Toolkit", + "license_path": "cuda_cudart/LICENSE.txt", + "version": "13.1.80", + "linux-x86_64": { + "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-13.1.80-archive.tar.xz", + "sha256": "b626f4790f46bc9324a1047f2fbcc9a42bc4a722b053056e61cc00da54ad6f32", + "md5": "6292418213e658b4bb9d3191231d1198", + "size": "1549648" + }, + "linux-sbsa": { + "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-13.1.80-archive.tar.xz", + "sha256": "b0f50edb6bd7a4a1b6c642167cbb1aab4765dbf94a96f98e48e1ae53243c6011", + "md5": "3ab7da24092ecb16ada70b8c33350510", + "size": "1548184" + }, + "windows-x86_64": { + "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-13.1.80-archive.zip", + "sha256": "e6f76dba2be1850a08168e90d868b12368aacb6c7d71871efb019f2d9648e877", + "md5": "c5f3d9031b194ef6a6457c84e6e8c548", + "size": "3035009" + } + }, + "cuda_culibos": { + "name": "CUDA MATH Library (cuda culibos)", + "license": "CUDA Toolkit", + "license_path": "cuda_culibos/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_culibos/linux-x86_64/cuda_culibos-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "ae2d7c90a9ba6c0606357a59edc8a5d5f048d1ec616094a49a78792a47102b2d", + "md5": "94710567b961bdf407f82c6fd36c6db6", + "size": "21384" + }, + "linux-sbsa": { + "relative_path": "cuda_culibos/linux-sbsa/cuda_culibos-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "55ac9994211b290c2013dc7add3c93fa8d4df42a86eed3dd015f182e5f1895bc", + "md5": "6eb201347c44900c56e8babfa5f461d9", + "size": "21432" + } + }, + "cuda_cuobjdump": { + "name": "cuobjdump", + "license": "CUDA Toolkit", + "license_path": "cuda_cuobjdump/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "ead244f805ce4616bcc9ecb5b6d993926522b825cfc1dcfff0b1113b6ac656d9", + "md5": "7f6cba26908e7b823bf8ef23b592cdb9", + "size": "264760" + }, + "linux-sbsa": { + "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "65677a220d5ef07c9ddd6c746ef98a2617fbd58eb0e3d045d8d9cd76ee556cce", + "md5": "4f6bc8735c668acf757153ae8b8d2dc5", + "size": "234708" + }, + "windows-x86_64": { + "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-13.1.115-archive.zip", + "sha256": "ae5b23c86a7d08365c7fcb5a3e6d3c988ba76005c30cb6aab6ddf2e0dc4d9f56", + "md5": "3cd78709aa5f0b7c36c1a84f54a9181e", + "size": "6649516" + } + }, + "cuda_cupti": { + "name": "CUPTI", + "license": "CUDA Toolkit", + "license_path": "cuda_cupti/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "c712f0181a63484d843897e39ced6bb32167e79c96181a3ca3fd33626b6a6b11", + "md5": "9208386ccd7918a7c395c02c5a6baa70", + "size": "16668236" + }, + "linux-sbsa": { + "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "4d81812c493880b8cff8cb38ac858f5b3769ebec3a94f65148f1936e8282913c", + "md5": "ee190624a45f573c1fa02565381664e3", + "size": "12370108" + }, + "windows-x86_64": { + "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-13.1.115-archive.zip", + "sha256": "d3639607f4f46eda784998facd786d68e87f58db392decbb83e4b1e61f69a61a", + "md5": "76f6002c355e7bc47344f50653eff0aa", + "size": "13281133" + } + }, + "cuda_cuxxfilt": { + "name": "CUDA cuxxfilt (demangler)", + "license": "CUDA Toolkit", + "license_path": "cuda_cuxxfilt/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "eee0b9426573734c4c4ed38fb186fc10b9df26462d5fc878d0b22f4418400c96", + "md5": "4a341ac33b5ffa28d110ad1159b0460a", + "size": "56324" + }, + "linux-sbsa": { + "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "9240df5956d25f86a2626b45e36e85ecc92cc8c2ed91d4055dcc85c3f7ee36a4", + "md5": "5141e70eed3e13c867967db931723f53", + "size": "52548" + }, + "windows-x86_64": { + "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-13.1.115-archive.zip", + "sha256": "5b5f6f7d225033139474b34a8985eb716d19b1b8f8011d35a3568f4527419045", + "md5": "3b998de3ad5a5b7cdb6750015f132c5c", + "size": "187539" + } + }, + "cuda_documentation": { + "name": "CUDA Documentation", + "license": "CUDA Toolkit", + "license_path": "cuda_documentation/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "e707cbb23c5af503d2adcdfbe82880e45a3b773807126b3871bce36feaa83e24", + "md5": "579005fab828ce720cf607e49580d98b", + "size": "67936" + }, + "linux-sbsa": { + "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "684c94cbd8361c277642b5be5cfd5c1881737b2e0edccece1ec89d11ce8446ed", + "md5": "587e4590b48761f1b0806c00eb786bd1", + "size": "67952" + }, + "windows-x86_64": { + "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-13.1.115-archive.zip", + "sha256": "73b766fa8622a5d6d602fc8c7e06204f6c0e568657defd517735a27ef959b9a8", + "md5": "f7fc34effee8da07d32192360f0f701d", + "size": "107998" + } + }, + "cuda_gdb": { + "name": "CUDA GDB", + "license": "CUDA Toolkit", + "license_path": "cuda_gdb/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "bc514f7fae45a91c3d1750bd1e353d237fa4f140a1ebc209c9e3da6d68197248", + "md5": "1af439b2cbd303f3e73e8f965c083bc4", + "size": "68554048" + }, + "linux-sbsa": { + "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "d00656f12034fc5ed7ceb93d61a6ed6a01fa7118ae65d0a28495f529f9674aaa", + "md5": "5358cd4c80ce7aafee1f3d2a4b5a37d2", + "size": "66292952" + } + }, + "cuda_nsight": { + "name": "Nsight Eclipse Edition Plugin", + "license": "CUDA Toolkit", + "license_path": "cuda_nsight/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "7587ef47dd944943e640ff23d5fc7e43fafecb18cf67507efb5b24ea1ebb0b0e", + "md5": "f461ba347dd0eab312301e5048b0547f", + "size": "118692288" + } + }, + "cuda_nvcc": { + "name": "CUDA NVCC", + "license": "CUDA Toolkit", + "license_path": "cuda_nvcc/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "858a74e6caa36fc9b4fa1ec5e8d38f568ab8046ef93dca9ba8b3f01dee09f30d", + "md5": "ca780856ff3ba0f1512625c9561d635f", + "size": "29853656" + }, + "linux-sbsa": { + "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "746ffb5d35ebeb13a633f772a435bcb8a1b3b06da9c6aec5f5e709f5aad0e476", + "md5": "e642deb0a1930069af5e4773697f6c77", + "size": "23863224" + }, + "windows-x86_64": { + "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-13.1.115-archive.zip", + "sha256": "cd3865bed3035f8773e4a6b6a83e78c57d704fdd136707e2d4813dda9b39e416", + "md5": "08fa69ab10bff3433e961196607412d4", + "size": "31221136" + } + }, + "cuda_nvdisasm": { + "name": "CUDA nvdisasm", + "license": "CUDA Toolkit", + "license_path": "cuda_nvdisasm/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "9233ea5446f2ee1220b4ba140d79f7eb8208c7d9d30fab588f7d73a1ffab45ef", + "md5": "79301280f37b8ca5e62deb697a16be55", + "size": "4155824" + }, + "linux-sbsa": { + "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "743bbc95b6ffcd1997a98013b86400b3aa37da5192653e407ed86d52772eeb57", + "md5": "2cc3ee4ea02ece93ee8f02ec445b3ffc", + "size": "4060360" + }, + "windows-x86_64": { + "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-13.1.115-archive.zip", + "sha256": "3313278cb452427954a271cc9971b9e8e0688b2d09906b8c2f5e8176b990d011", + "md5": "5507f80fd6358b23f987442a9b2ca644", + "size": "4456216" + } + }, + "cuda_nvml_dev": { + "name": "CUDA NVML Headers", + "license": "CUDA Toolkit", + "license_path": "cuda_nvml_dev/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "88fe69c3b2e73d414eea2101813ae5819b0f7c9a1c5e4e98fb44e1ef88748c7d", + "md5": "907a52b41b171c27b6b24693371c28f8", + "size": "144980" + }, + "linux-sbsa": { + "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "9e27291f5a70dbb03c102a75c94423b4748e2d05c54134a61ab638d41570d8b7", + "md5": "936026caeb4419998367966053f75a12", + "size": "146504" + }, + "windows-x86_64": { + "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-13.1.115-archive.zip", + "sha256": "267d78d17dde7a96e2f70dbcc3cd11d2b4645f7d9b6744de8c32871b17978543", + "md5": "e78a637cd2fe8487ff96d0d71fb67256", + "size": "167453" + } + }, + "cuda_nvprune": { + "name": "CUDA nvprune", + "license": "CUDA Toolkit", + "license_path": "cuda_nvprune/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "c7149dec758408511950df3a60a7a3831a589fbc27f268b5c46fc219eca0ab31", + "md5": "c8a78056f636e9fe1340c43f672d1566", + "size": "61680" + }, + "linux-sbsa": { + "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "a1113c8c70ca66ce10fa15c3794ae4bb3e139a2cffcc5d0223241497b851f70d", + "md5": "41bd1a992e295e3a92b8e4faadfc9371", + "size": "51692" + }, + "windows-x86_64": { + "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-13.1.115-archive.zip", + "sha256": "78c313b1dbee68aa9606626b53922ea312fbefe2fe0fdd2336c46cd4ccd4ebad", + "md5": "bcabdd7e603dc521a7f828c5d579d179", + "size": "150190" + } + }, + "cuda_nvrtc": { + "name": "CUDA NVRTC", + "license": "CUDA Toolkit", + "license_path": "cuda_nvrtc/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "86077f16674ccea3e621ade9678887a37aca8f7500091aee4cabb1915e0c527b", + "md5": "d7247f0ecf651cfb8f03c8946f7ae7ec", + "size": "60146948" + }, + "linux-sbsa": { + "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "77ea897622931bbbe5761161454e1eab2cb82f9a8fc1386999415b71e8ff7bed", + "md5": "5b750bff404dfd06de9de7aa964f2dc6", + "size": "55137576" + }, + "windows-x86_64": { + "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-13.1.115-archive.zip", + "sha256": "4ddd5a1e34fd62bb41e78c0725edfbf5609f4ecedd7fe118eddf2148b097fc91", + "md5": "77a5c2358add7b194d10e2c4cc9671e9", + "size": "284695391" + } + }, + "cuda_nvtx": { + "name": "CUDA NVTX", + "license": "CUDA Toolkit", + "license_path": "cuda_nvtx/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "364b3e77f2c0fa349611585aa8e148942501d924657a6afa05d0bcc4d2f8dc58", + "md5": "e7028578243720216623784fcc96a606", + "size": "97340" + }, + "linux-sbsa": { + "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "2f326478007d636da7e2202db3e3d56b34f510afa7559a896bfe000692e4caa2", + "md5": "c9d04a2fe912ce619e2bde4d22a8fe0a", + "size": "97832" + }, + "windows-x86_64": { + "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-13.1.115-archive.zip", + "sha256": "50dfce110f6dc2bf7f0777bc637401212090c4bcc0402821741f6216f971d68e", + "md5": "dff2e4d524cc8ec5f455b03e57fdb0dc", + "size": "151191" + } + }, + "cuda_opencl": { + "name": "CUDA OpenCL", + "license": "CUDA Toolkit", + "license_path": "cuda_opencl/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_opencl/linux-x86_64/cuda_opencl-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "e0b8ec9c209035aca8ffe878b92a4b5abf74f093045870fc298440915a98adc5", + "md5": "f12771d4cc860a96cc9a8b9c2c6d8926", + "size": "95132" + }, + "windows-x86_64": { + "relative_path": "cuda_opencl/windows-x86_64/cuda_opencl-windows-x86_64-13.1.115-archive.zip", + "sha256": "e72de7a6d601de8b282c7317d83844403e9ef4a84b3b1c51e7add0d4e057bbe9", + "md5": "85a6c19b942ccd3dc7ddaa439d20b20e", + "size": "140972" + } + }, + "cuda_profiler_api": { + "name": "CUDA Profiler API", + "license": "CUDA Toolkit", + "license_path": "cuda_profiler_api/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_profiler_api/linux-x86_64/cuda_profiler_api-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "161eeee80142ea174a79fc4a79490f559933a2346095a16004b642b8b1199881", + "md5": "d1e5298282f9cbd67daebe0204d1a553", + "size": "17056" + }, + "linux-sbsa": { + "relative_path": "cuda_profiler_api/linux-sbsa/cuda_profiler_api-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "6eba240b9870496c42b471caa2094ad0666701718994e24255421f9ece084f5c", + "md5": "109a6dc80c3a201bab22bacfb8dac748", + "size": "17040" + }, + "windows-x86_64": { + "relative_path": "cuda_profiler_api/windows-x86_64/cuda_profiler_api-windows-x86_64-13.1.115-archive.zip", + "sha256": "cbe9db0f0fb459b15d7313fb1a7f457f972f67c446f9d3faf87c362d78a14440", + "md5": "788919bf5c8b3bc19032362562909a17", + "size": "21193" + } + }, + "cuda_sandbox_dev": { + "name": "CUDA nvsandboxutils Headers", + "license": "CUDA Toolkit", + "license_path": "cuda_sandbox_dev/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "cuda_sandbox_dev/linux-x86_64/cuda_sandbox_dev-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "334c2ba0bca537690e313ea9af55377bef8862f9b5abfbc8b3c64fb48e87a8ed", + "md5": "635bbf5aa6a4181f56533366a424ae39", + "size": "30204" + }, + "linux-sbsa": { + "relative_path": "cuda_sandbox_dev/linux-sbsa/cuda_sandbox_dev-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "c811a538ea9f87dbc6ae4efd0f3e3e1b753e98231bb4dc0387fed152c479949d", + "md5": "5192bc4651cf1f39c08676560a47d0e2", + "size": "30836" + } + }, + "cuda_sanitizer_api": { + "name": "CUDA Compute Sanitizer API", + "license": "CUDA Toolkit", + "license_path": "cuda_sanitizer_api/LICENSE.txt", + "version": "13.1.118", + "linux-x86_64": { + "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-13.1.118-archive.tar.xz", + "sha256": "b9637777a31cd0f0ffe1e965523e8b0d382019b8496855fd688c886988583cf4", + "md5": "c43c1401a2e0669de489c8d977bc98dd", + "size": "10125520" + }, + "linux-sbsa": { + "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-13.1.118-archive.tar.xz", + "sha256": "1dc68ccb146032bcdc9d932569c865d68e3966ecf136940ca38fd7d5abfda4ac", + "md5": "1d9d49522ed03ae05e36dfa4316e9cf9", + "size": "7237196" + }, + "windows-x86_64": { + "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-13.1.118-archive.zip", + "sha256": "9eeb3b8cf7a62d9af40278c52feecc32c57c90e93a163a05112476b436e3575f", + "md5": "2cbf41f51898185472e406058f59c09f", + "size": "10176712" + } + }, + "cuda_tileiras": { + "name": "CUDA TileIR", + "license": "CUDA Toolkit", + "license_path": "cuda_tileiras/LICENSE.txt", + "version": "13.1.80", + "linux-x86_64": { + "relative_path": "cuda_tileiras/linux-x86_64/cuda_tileiras-linux-x86_64-13.1.80-archive.tar.xz", + "sha256": "e3f427f96492956527614c1283760463f7c02319d3e44c4b062fca17429d5951", + "md5": "5103ca1c90c31b36e04dd96557b75849", + "size": "25368216" + }, + "linux-sbsa": { + "relative_path": "cuda_tileiras/linux-sbsa/cuda_tileiras-linux-sbsa-13.1.80-archive.tar.xz", + "sha256": "94704a1cc2609d471ac1c157e43cc9d89cc437de3b85ec3b2df45199cf66d1f9", + "md5": "1319c637eb05a1646cd2bd2540cec65e", + "size": "23102116" + }, + "windows-x86_64": { + "relative_path": "cuda_tileiras/windows-x86_64/cuda_tileiras-windows-x86_64-13.1.80-archive.zip", + "sha256": "9215c7ed572ed74c6167589c32f135a65853cbc35e7d417ec29ddd886be85d43", + "md5": "93c51297b520fc673c4886a2c789afa8", + "size": "27674193" + } + }, + "driver_assistant": { + "name": "NVIDIA Driver Assistant", + "license": "MIT", + "license_path": "driver_assistant/LICENSE.txt", + "version": "0.23.48.01", + "linux-all": { + "relative_path": "driver_assistant/source/driver_assistant-0.23.48.01-archive.tar.xz", + "sha256": "3c8d6363ab363991c25e168429a9b004454e2860984e8b635342b964b81de60d", + "md5": "dbfec1379c95904b3593cd497bea5bc7", + "size": "38880" + } + }, + "fabricmanager": { + "name": "NVIDIA Fabric Manager", + "license": "NVIDIA Driver", + "license_path": "fabricmanager/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-590.48.01-archive.tar.xz", + "sha256": "7ff010f07ae0a2a050c9736b5c0fd4688e0e310f507238d858886bd7fe6e33be", + "md5": "aef524b5d03b8a8175720d862602e4ba", + "size": "8680532" + }, + "linux-sbsa": { + "relative_path": "fabricmanager/linux-sbsa/fabricmanager-linux-sbsa-590.48.01-archive.tar.xz", + "sha256": "b13e0cab7956d6c7967aa1a5990ddb9d2db9f7556a69491b122133533792f775", + "md5": "2f4c21c98936c21977948c2b0024c04d", + "size": "7878708" + } + }, + "imex": { + "name": "NVIDIA IMEX", + "license": "NVIDIA Driver", + "license_path": "imex/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "relative_path": "imex/linux-x86_64/imex-linux-x86_64-590.48.01-archive.tar.xz", + "sha256": "a5a12c8d3f0aca040cb57f4418c59f5be8d27eefadcd4d04de70f74a9ee633c9", + "md5": "b6db69483580f48a0fefc2a85b50ee1b", + "size": "7758548" + }, + "linux-sbsa": { + "relative_path": "imex/linux-sbsa/imex-linux-sbsa-590.48.01-archive.tar.xz", + "sha256": "67672310166697c9691af1cdb9572c5586e3481f902a460da881a6137e91ac52", + "md5": "f4b08c4416369dcc86a4771c6ccf31d3", + "size": "7200776" + } + }, + "libcublas": { + "name": "CUDA cuBLAS", + "license": "CUDA Toolkit", + "license_path": "libcublas/LICENSE.txt", + "version": "13.2.1.1", + "linux-x86_64": { + "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-13.2.1.1-archive.tar.xz", + "sha256": "b1cde2e14d1547f575f61f9b90dc91e9b80991d114971d50d535dd8bd72b5466", + "md5": "8bef35503ab216f323ae3dff15bada55", + "size": "798288312" + }, + "linux-sbsa": { + "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-13.2.1.1-archive.tar.xz", + "sha256": "693cc5b991a374bf28917b4e957248e93d86c2d57c92652de2cb7967d1179a71", + "md5": "8e67338e0a13ded2db61cfa1fce2fd46", + "size": "1005398628" + }, + "windows-x86_64": { + "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-13.2.1.1-archive.zip", + "sha256": "b00be5cda504da494a5f6b72a24f53254f97d4d47e8933ecc3993ad58b6b2ad2", + "md5": "da242891250d139f2ed33da156edada2", + "size": "384768814" + } + }, + "libcufft": { + "name": "CUDA cuFFT", + "license": "CUDA Toolkit", + "license_path": "libcufft/LICENSE.txt", + "version": "12.1.0.78", + "linux-x86_64": { + "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-12.1.0.78-archive.tar.xz", + "sha256": "336732ded69b9f7f5cdca3e7e942732f1446933f2dccaf563c84b5caf058ad75", + "md5": "ae8353abe192ee9b36563e608a7a4af5", + "size": "377659928" + }, + "linux-sbsa": { + "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-12.1.0.78-archive.tar.xz", + "sha256": "66302c6927af275515c5bd68275250f7c6e47521938c4d77318c7cba1f8715c6", + "md5": "4d4860b307ac7f5507778ac2c4286f66", + "size": "378615280" + }, + "windows-x86_64": { + "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-12.1.0.78-archive.zip", + "sha256": "b0a3df65c6ce60dc1aa695f47159a26d5172ac7411045abaeea2fbe948a42746", + "md5": "89162d4fc90055269e2f6e30ff58cb0d", + "size": "224028809" + } + }, + "libcufile": { + "name": "CUDA cuFile", + "license": "CUDA Toolkit", + "license_path": "libcufile/LICENSE.txt", + "version": "1.16.1.26", + "linux-x86_64": { + "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.16.1.26-archive.tar.xz", + "sha256": "f03d7d54aca5b94c679e6d6d078f3804e7115b77780981f73aa66fb208707084", + "md5": "7f16fe9b6c2fc55908a368c3a15a9390", + "size": "43530524" + }, + "linux-sbsa": { + "relative_path": "libcufile/linux-sbsa/libcufile-linux-sbsa-1.16.1.26-archive.tar.xz", + "sha256": "24b83a4002ea78b46b17e5a0205ef70f64ec488baa0fd5fd69c08d81914146e4", + "md5": "19f8e70efc7cecacb16034aa2cbf5ca1", + "size": "43158256" + } + }, + "libcuobjclient": { + "name": "CUDA cuObject Client", + "license": "CUDA Toolkit", + "license_path": "libcuobjclient/LICENSE.txt", + "version": "1.0.0.26", + "linux-x86_64": { + "relative_path": "libcuobjclient/linux-x86_64/libcuobjclient-linux-x86_64-1.0.0.26-archive.tar.xz", + "sha256": "aba19ffc2425b9981020d182f27093a52d150274482645621eefa029f276ef7c", + "md5": "32c452a02ba29b8a4c0f4d4525d7134b", + "size": "153652" + }, + "linux-sbsa": { + "relative_path": "libcuobjclient/linux-sbsa/libcuobjclient-linux-sbsa-1.0.0.26-archive.tar.xz", + "sha256": "bd88f9e3ce8499d94faf444c176fd6d9f461337952a7e9b0ccceba0b77fd4a3e", + "md5": "8c9231a9de0e38f94735089d7dff3e41", + "size": "152628" + } + }, + "libcurand": { + "name": "CUDA cuRAND", + "license": "CUDA Toolkit", + "license_path": "libcurand/LICENSE.txt", + "version": "10.4.1.81", + "linux-x86_64": { + "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.4.1.81-archive.tar.xz", + "sha256": "e15c2a59c29a0f3eb2b33c34c06cc1e1abba5b1b9ccf5e34c43d9787e84498dc", + "md5": "417353d105f551616de7f204c61f0514", + "size": "86661740" + }, + "linux-sbsa": { + "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.4.1.81-archive.tar.xz", + "sha256": "9df719aebb91bf203c7a1b34f5f4b4406f4347b8be9c3cc7c675fe577441d59d", + "md5": "95185a1395dedb2a2dae9520593124eb", + "size": "87685440" + }, + "windows-x86_64": { + "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.4.1.81-archive.zip", + "sha256": "9e9e46f7506415127f4014e00eced19998762bd4938603d9cb154ce23c86f838", + "md5": "7ff33ef74950129a052484d007a31c15", + "size": "54992852" + } + }, + "libcusolver": { + "name": "CUDA cuSOLVER", + "license": "CUDA Toolkit", + "license_path": "libcusolver/LICENSE.txt", + "version": "12.0.9.81", + "linux-x86_64": { + "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-12.0.9.81-archive.tar.xz", + "sha256": "6c2ebd7c8d47bd732988c457f645f3e910a7e44883bcc4220cb0ae4ab2197c42", + "md5": "d936da11b3f73485d0023827f3fb17aa", + "size": "266952604" + }, + "linux-sbsa": { + "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-12.0.9.81-archive.tar.xz", + "sha256": "9023fcaef2e7e370b6f94a959fee2c3340d73e4a4d38178061a63f064fd9be15", + "md5": "b2bbe2252a84c8c77002fcb9d10ac874", + "size": "294069468" + }, + "windows-x86_64": { + "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-12.0.9.81-archive.zip", + "sha256": "fc8ed4820cb1064cc07fbef2cc78d8c45178909f754bea02852668cd002411f4", + "md5": "d2e74d076a4bed8ebc9a00cb44e2c427", + "size": "194324905" + } + }, + "libcusparse": { + "name": "CUDA cuSPARSE", + "license": "CUDA Toolkit", + "license_path": "libcusparse/LICENSE.txt", + "version": "12.7.3.1", + "linux-x86_64": { + "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-12.7.3.1-archive.tar.xz", + "sha256": "ad050ba0a2c43d7ad5e21b500459d9c7efa05d10ca870c0cc3413107ac4a8e73", + "md5": "bb3a3ca8422edd4a8daf62c3cd79b9c2", + "size": "293304856" + }, + "linux-sbsa": { + "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-12.7.3.1-archive.tar.xz", + "sha256": "84e07ed1b3a7399ff5d6db0cf9da91e2d6917717c75160ea4d2d3f2f6bb03444", + "md5": "6b2b01dcff816f35ad7e4417aaa538bf", + "size": "325257244" + }, + "windows-x86_64": { + "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-12.7.3.1-archive.zip", + "sha256": "602cf803627f75a2b123bbf7bf735389721274d0ad486697b43c1f1f74eb29cf", + "md5": "980f3cde0c8611aaa7d119e4bd449c70", + "size": "151235606" + } + }, + "libnpp": { + "name": "CUDA NPP", + "license": "CUDA Toolkit", + "license_path": "libnpp/LICENSE.txt", + "version": "13.0.3.3", + "linux-x86_64": { + "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-13.0.3.3-archive.tar.xz", + "sha256": "9c8471e8c12071ca46966301bfff7bf913d8a9c43b33c38384e477fb5f927989", + "md5": "6c00c9099136a654d1ff8e328522bb7e", + "size": "243266476" + }, + "linux-sbsa": { + "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-13.0.3.3-archive.tar.xz", + "sha256": "3ac14047b98627af77fd7900a4b226939f575017e78bf826e2a63861132206d5", + "md5": "f917cfc92466dbd9e423af7ba63c84f6", + "size": "271774836" + }, + "windows-x86_64": { + "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-13.0.3.3-archive.zip", + "sha256": "1be29c5a7380f8b1328a8cef6a050fe426140d1c32efd26a6bb508978ccaaaf2", + "md5": "f4236af1e3eb780c09b4e0bb726333fc", + "size": "131187641" + } + }, + "libnvfatbin": { + "name": "NVIDIA compiler library for fatbin interaction", + "license": "CUDA Toolkit", + "license_path": "libnvfatbin/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "libnvfatbin/linux-x86_64/libnvfatbin-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "208ddde872520aaf9fe388cff6a92ece1de7c033a9fdd573dbbf9829829bfb51", + "md5": "f5b26f3ebf2d89626f0e72e9e271b0fa", + "size": "944868" + }, + "linux-sbsa": { + "relative_path": "libnvfatbin/linux-sbsa/libnvfatbin-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "0855002a82341e7f69d4306795a6349f08b77ae8382a9f0e5761edcd6d742991", + "md5": "b3dabc7fe7f390f8367973ef33e63a88", + "size": "842816" + }, + "windows-x86_64": { + "relative_path": "libnvfatbin/windows-x86_64/libnvfatbin-windows-x86_64-13.1.115-archive.zip", + "sha256": "eb2b997c26e82dc02adeccc3fbc81bb00c76fde8c51b1f986cb9c02b1b47906c", + "md5": "a77c650bb64d77cbf4dc6b4baea43555", + "size": "2239260" + } + }, + "libnvidia_nscq": { + "name": "NVIDIA NSCQ API", + "license": "NVIDIA Driver", + "license_path": "libnvidia_nscq/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-590.48.01-archive.tar.xz", + "sha256": "f6e6f85ccd1bf0c53db291093d055dc6331b0049e7096741a115a1faa59fdb86", + "md5": "36e721b57ff4546d2ca81f852a97708a", + "size": "380356" + }, + "linux-sbsa": { + "relative_path": "libnvidia_nscq/linux-sbsa/libnvidia_nscq-linux-sbsa-590.48.01-archive.tar.xz", + "sha256": "bc160a9a4ec62f3baaaae5dd1e40a6ee83daa17bfda4e9ebc8cd46f8fbc12b9a", + "md5": "6dacec04cac5da8a62cf38102b682567", + "size": "350916" + } + }, + "libnvjitlink": { + "name": "NVIDIA compiler library for JIT LTO functionality", + "license": "CUDA Toolkit", + "license_path": "libnvjitlink/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "libnvjitlink/linux-x86_64/libnvjitlink-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "c1634fd16cd4a011a57c1d07f9cbfb3bc9b9e9259d97f084a316005f30fd0f2e", + "md5": "276f009e57b0ed81722c2e3c1f2777c7", + "size": "55680956" + }, + "linux-sbsa": { + "relative_path": "libnvjitlink/linux-sbsa/libnvjitlink-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "fc34407df1deb6a0c0a2c218788d32a95becad23a72de0bfab12d35d0a0d200c", + "md5": "25bb37861fe83a599597db02ebe61dbf", + "size": "51002468" + }, + "windows-x86_64": { + "relative_path": "libnvjitlink/windows-x86_64/libnvjitlink-windows-x86_64-13.1.115-archive.zip", + "sha256": "81768c505953e37b5beeea97dadcb7227471f8bcfa167134ca010ed52cf176af", + "md5": "8de98293128e32e3d927649750843115", + "size": "268759150" + } + }, + "libnvjpeg": { + "name": "CUDA nvJPEG", + "license": "CUDA Toolkit", + "license_path": "libnvjpeg/LICENSE.txt", + "version": "13.0.3.75", + "linux-x86_64": { + "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-13.0.3.75-archive.tar.xz", + "sha256": "3cab9b53be22df1f107f8c0d5fc26c76b7d3dd74abee1b2390be81a3a9454065", + "md5": "9b638379b7dfe9a82a462de1cb6b8a41", + "size": "3645816" + }, + "linux-sbsa": { + "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-13.0.3.75-archive.tar.xz", + "sha256": "464f3b0426b64a1f6fbe381f91f1dd9b65527c07fc3f388f4ca584534ab5e782", + "md5": "cf96f07d502eee5be9a4abd2f60e3955", + "size": "3489932" + }, + "windows-x86_64": { + "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-13.0.3.75-archive.zip", + "sha256": "b1681853ec61f9f34532c7de312678e61c3726fb7cc60fe40e2a72e838465e92", + "md5": "8890d82d0c3f2066ecacf49e5a2ed69a", + "size": "3143175" + } + }, + "libnvptxcompiler": { + "name": "CUDA libnvptxcompiler", + "license": "CUDA Toolkit", + "license_path": "libnvptxcompiler/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "libnvptxcompiler/linux-x86_64/libnvptxcompiler-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "4cf5b5070d0d601224175122c824c6afde4232c5d14e36ecb5063f0a23a330b8", + "md5": "8d2c1434c86b4518430171a69404b1d6", + "size": "15557380" + }, + "linux-sbsa": { + "relative_path": "libnvptxcompiler/linux-sbsa/libnvptxcompiler-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "474ab63683458df2bb8beb24d0932e7a3fcb8d7b5b74c77602a94b85c9cbde5b", + "md5": "3af8dd321a891daa2e2a19574ccac6b2", + "size": "14647312" + }, + "windows-x86_64": { + "relative_path": "libnvptxcompiler/windows-x86_64/libnvptxcompiler-windows-x86_64-13.1.115-archive.zip", + "sha256": "bad2c1087563837d71c424950d2d896fd0db15fdc81a3fb2c483a4ce9450b0f4", + "md5": "73e207c6a88af16b8b1d4bc94ac193d4", + "size": "51733976" + } + }, + "libnvsdm": { + "name": "NVSDM", + "license": "NVIDIA Driver", + "license_path": "libnvsdm/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "relative_path": "libnvsdm/linux-x86_64/libnvsdm-linux-x86_64-590.48.01-archive.tar.xz", + "sha256": "525dacb66113a3e64a5f5746424404ce69717fad31ee6ae53911a825d3561fde", + "md5": "1ab1f89e290e07eb0fc1af1ad10693a2", + "size": "505424" + } + }, + "libnvvm": { + "name": "CUDA NVVM", + "license": "CUDA Toolkit", + "license_path": "libnvvm/LICENSE.txt", + "version": "13.1.115", + "linux-x86_64": { + "relative_path": "libnvvm/linux-x86_64/libnvvm-linux-x86_64-13.1.115-archive.tar.xz", + "sha256": "9038a2bf1237d9decdf99d90c4b43639536c9dbe4b3a40d1e6add5413a02096f", + "md5": "07734e404dcfbf1af554655da16b62b0", + "size": "44800332" + }, + "linux-sbsa": { + "relative_path": "libnvvm/linux-sbsa/libnvvm-linux-sbsa-13.1.115-archive.tar.xz", + "sha256": "ab0aea2c0fa7b283d127128480f007ab725090b1307d45b11b5bc3ee3f339ff8", + "md5": "67997836e549976bc176f0cf3d77d7e0", + "size": "39597592" + }, + "windows-x86_64": { + "relative_path": "libnvvm/windows-x86_64/libnvvm-windows-x86_64-13.1.115-archive.zip", + "sha256": "79467dd741bb2e13b63370446d0049e6a382b0955b001ab65f2fb37a6a0ff9b7", + "md5": "2129779faf44b5461bd9a40d849bde76", + "size": "53935842" + } + }, + "mft": { + "name": "NVLink 5 MFT", + "license": "NVIDIA Proprietary", + "license_path": "mft/LICENSE.txt", + "version": "4.33.0.3004", + "linux-x86_64": { + "relative_path": "mft/linux-x86_64/mft-linux-x86_64-4.33.0.3004-archive.tar.xz", + "sha256": "d8b885df13e32730275436d56cd48a3c4a755b2591ff4e3e6836c7a9f9433af1", + "md5": "0ee5b7ee7e9e3d982d39c65117891db9", + "size": "50206528" + }, + "linux-sbsa": { + "relative_path": "mft/linux-sbsa/mft-linux-sbsa-4.33.0.3004-archive.tar.xz", + "sha256": "26aa6ecb6827d88003b50c7d649962b78eb58cba190fdb1f4836b9a3bc75b22e", + "md5": "93f81aed65d166b5cb4b2c1193778f3d", + "size": "46314988" + } + }, + "mft_autocomplete": { + "name": "NVLink 5 MFT AUTOCOMPLETE", + "license": "NVIDIA Proprietary", + "license_path": "mft_autocomplete/LICENSE.txt", + "version": "4.33.0.3004", + "linux-x86_64": { + "relative_path": "mft_autocomplete/linux-x86_64/mft_autocomplete-linux-x86_64-4.33.0.3004-archive.tar.xz", + "sha256": "8d16437d55f15ab5c6da9fa26aec6806eb7f6e9606006a7f09593344c848acdb", + "md5": "00c429dd417652d24a93f7e66fbab865", + "size": "12240" + }, + "linux-sbsa": { + "relative_path": "mft_autocomplete/linux-sbsa/mft_autocomplete-linux-sbsa-4.33.0.3004-archive.tar.xz", + "sha256": "b4d492b889d76ea156b97739da4661dfd36c2053a0090065317701c323b51859", + "md5": "1a7327e04ae79247054cc551d8f0b263", + "size": "12176" + } + }, + "mft_oem": { + "name": "NVLink 5 MFT OEM", + "license": "NVIDIA Proprietary", + "license_path": "mft_oem/LICENSE.txt", + "version": "4.33.0.3004", + "linux-x86_64": { + "relative_path": "mft_oem/linux-x86_64/mft_oem-linux-x86_64-4.33.0.3004-archive.tar.xz", + "sha256": "0f703047ad69e46c6e3f021fc1ae5e086530a52311da08b3a49451db7f1332e7", + "md5": "42498e50e4bdedbb3a99ba434a3ee6a5", + "size": "3674360" + }, + "linux-sbsa": { + "relative_path": "mft_oem/linux-sbsa/mft_oem-linux-sbsa-4.33.0.3004-archive.tar.xz", + "sha256": "fb755738e56a883d68bb408f28e293df00d1e66e1554e48f339f0f0cf0b7be04", + "md5": "fe00dfbbac0c16f74e0d8f21a759d522", + "size": "3276404" + } + }, + "nsight_compute": { + "name": "Nsight Compute", + "license": "NVIDIA SLA", + "license_path": "nsight_compute/LICENSE.txt", + "version": "2025.4.1.2", + "linux-x86_64": { + "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2025.4.1.2-archive.tar.xz", + "sha256": "5d41301bdfa2bfb958e068f7cfd5de5a465e50aca6903a24ca84c70dd676622c", + "md5": "e36a6c9806fab36ff545fc1034cfa34c", + "size": "328848716" + }, + "linux-sbsa": { + "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2025.4.1.2-archive.tar.xz", + "sha256": "1cdcff91da6f1914cad687db4dff5abab7a69c12b7dea60224268e155408c4a3", + "md5": "42e9fa2f2d44e3150f10c086dd6a4c70", + "size": "115330556" + }, + "windows-x86_64": { + "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2025.4.1.2-archive.zip", + "sha256": "cb26a33427f34606b063166538f00f8eced3e0bc1c5bc21c1385d0e270ceefab", + "md5": "669dfbd315d35633ec35777f2a73fcdc", + "size": "393803311" + } + }, + "nsight_systems": { + "name": "Nsight Systems", + "license": "NVIDIA SLA", + "license_path": "nsight_systems/LICENSE.txt", + "version": "2025.5.2.266", + "linux-x86_64": { + "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2025.5.2.266-archive.tar.xz", + "sha256": "76113b3f75ba620d11242a5b720c9eddd168be41ce879a5fb9d4f198181e19a4", + "md5": "00b2a82e28f868072f5df22d54824e48", + "size": "1098114048" + }, + "linux-sbsa": { + "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2025.5.2.266-archive.tar.xz", + "sha256": "8f8bb4a9d599dfdc2bab57381d049ac885147fc88eca08c2e920c1edc5416bef", + "md5": "73c128bce2f59187e4101659b7adae45", + "size": "1121589620" + }, + "windows-x86_64": { + "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2025.5.2.266-archive.zip", + "sha256": "0614abdcae3448c81cd5c3c091e7717974b9df704f2c608e6a66d4b4fda5666a", + "md5": "b48e472fe549f847f1f76fb8ebc47b96", + "size": "510744990" + } + }, + "nsight_vse": { + "name": "Nsight Visual Studio Edition (VSE)", + "license": "NVIDIA SLA", + "license_path": "nsight_vse/LICENSE.txt", + "version": "2025.4.0.25287", + "windows-x86_64": { + "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2025.4.0.25287-archive.zip", + "sha256": "3c9576ee64eab6027c4bd17f822d89cde837031f37561d4cf0b67d70b020efce", + "md5": "1139f2edcb62a03441b6bb96e2b07751", + "size": "162965851" + } + }, + "nvidia_driver": { + "name": "NVIDIA Linux Driver", + "license": "NVIDIA Driver", + "license_path": "nvidia_driver/LICENSE.txt", + "version": "590.48.01", + "linux-x86_64": { + "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-590.48.01-archive.tar.xz", + "sha256": "7e66ff6c8318f3f981d442d7451c791fb1e9cf05f45648a3f081242d056dde4f", + "md5": "8489d3de57866f3c5b66edb09827c390", + "size": "509073140" + }, + "linux-sbsa": { + "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-590.48.01-archive.tar.xz", + "sha256": "0e67b96b10720b6cb371482075aaf7fe669321e1e3c15ef3c149784d433036b0", + "md5": "5603e86e73553fecdfb519e4e08f721d", + "size": "377278472" + } + }, + "nvidia_fs": { + "name": "NVIDIA filesystem", + "license": "CUDA Toolkit", + "license_path": "nvidia_fs/LICENSE.txt", + "version": "2.27.3", + "linux-x86_64": { + "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.27.3-archive.tar.xz", + "sha256": "f0879bb17808bfb1618d3269e967dfbe5840b35c70c646bbd3e0d489a42542d6", + "md5": "b0b71dded70f5bbfa5ed5dadecfbe0fc", + "size": "60032" + }, + "linux-sbsa": { + "relative_path": "nvidia_fs/linux-sbsa/nvidia_fs-linux-sbsa-2.27.3-archive.tar.xz", + "sha256": "ab25da29c77a04d340fa728ac34791d5d1d24b4ff5c144158b4151a328572947", + "md5": "360d2681da4d8e9cc693c115c3198fe7", + "size": "60044" + } + }, + "nvlsm": { + "name": "NVLSM SM component", + "license": "NVIDIA Proprietary", + "license_path": "nvlsm/LICENSE.txt", + "version": "2025.06.10", + "linux-x86_64": { + "relative_path": "nvlsm/linux-x86_64/nvlsm-linux-x86_64-2025.06.10-archive.tar.xz", + "sha256": "f18cf1fad8a70566c2b7364890e7cc081eb058db505bc7e0dbdc5958cfd10060", + "md5": "a7195caea4d925130ea209be5b2ed780", + "size": "6988412" + }, + "linux-sbsa": { + "relative_path": "nvlsm/linux-sbsa/nvlsm-linux-sbsa-2025.06.10-archive.tar.xz", + "sha256": "36b4c0260100671d8965d70c82a92fbbd0b27faff8fb63b37b137797f8fa4bd7", + "md5": "67c6ba0053157188b1ea15f056d82d96", + "size": "9343364" + } + }, + "visual_studio_integration": { + "name": "CUDA Visual Studio Integration", + "license": "CUDA Toolkit", + "license_path": "visual_studio_integration/LICENSE.txt", + "version": "13.1.115", + "windows-x86_64": { + "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-13.1.115-archive.zip", + "sha256": "aaf8f686350bd3e739412dd96052ed5b61ad969792bc4015228224a5c86a3ea7", + "md5": "cad61b497e6503b980d1a6ca9d96bc7a", + "size": "888959" + } + } +} diff --git a/pkgs/development/python-modules/django-pghistory/default.nix b/pkgs/development/python-modules/django-pghistory/default.nix index 0847f5336713..55dba9bed81b 100644 --- a/pkgs/development/python-modules/django-pghistory/default.nix +++ b/pkgs/development/python-modules/django-pghistory/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "django-pghistory"; - version = "3.9.1"; + version = "3.9.2"; pyproject = true; src = fetchFromGitHub { owner = "Opus10"; repo = "django-pghistory"; tag = version; - hash = "sha256-8irD4crkczaZfMvajgMQBkksJ2wdomI3kUC6T6IU1as="; + hash = "sha256-YW2zcLSE3AALtyBe9KGMQpkF/HOvF90TW2ffmzj8u9o="; }; build-system = [ diff --git a/pkgs/development/python-modules/langchain-community/default.nix b/pkgs/development/python-modules/langchain-community/default.nix index 222ebdfec726..ccc254acac7d 100644 --- a/pkgs/development/python-modules/langchain-community/default.nix +++ b/pkgs/development/python-modules/langchain-community/default.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, pythonAtLeast, @@ -122,6 +121,10 @@ buildPythonPackage rec { disabledTestPaths = [ # depends on Pydantic v1 notations, will not load "tests/unit_tests/document_loaders/test_gitbook.py" + # pytest.PytestRemovedIn9Warning: Marks applied to fixtures have no effect + # https://docs.pytest.org/en/stable/deprecations.html#applying-a-mark-to-a-fixture-function + "tests/unit_tests/document_loaders/test_hugging_face.py" + "tests/unit_tests/indexes/test_sql_record_manager.py" ]; passthru.updateScript = gitUpdater { diff --git a/pkgs/development/python-modules/peewee-migrate/default.nix b/pkgs/development/python-modules/peewee-migrate/default.nix index 15da490d6e12..fb377f030480 100644 --- a/pkgs/development/python-modules/peewee-migrate/default.nix +++ b/pkgs/development/python-modules/peewee-migrate/default.nix @@ -45,11 +45,6 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = [ - # sqlite3.OperationalError: error in table order after drop column... - "test_migrator" - ]; - meta = { description = "Simple migration engine for Peewee"; homepage = "https://github.com/klen/peewee_migrate"; diff --git a/pkgs/development/python-modules/posthog/default.nix b/pkgs/development/python-modules/posthog/default.nix index bc5acea0f5c4..38bd1c820230 100644 --- a/pkgs/development/python-modules/posthog/default.nix +++ b/pkgs/development/python-modules/posthog/default.nix @@ -65,6 +65,8 @@ buildPythonPackage (finalAttrs: { "test_upload" # AssertionError: 2 != 3 "test_flush_interval" + # len(client.distinct_ids_feature_flags_reported) = 101 != i % 100 + 1 + "test_capture_multiple_users_doesnt_out_of_memory" ] ++ lib.optionals (pythonAtLeast "3.14") [ # Pydantic V1 functionality isn't compatible with Python 3.14 diff --git a/pkgs/development/python-modules/unstructured/default.nix b/pkgs/development/python-modules/unstructured/default.nix index f0c64e7ac4d6..e46a48df4554 100644 --- a/pkgs/development/python-modules/unstructured/default.nix +++ b/pkgs/development/python-modules/unstructured/default.nix @@ -91,6 +91,7 @@ et-xmlfile, networkx, numpy, + numba, openpyxl, pandas, xlrd, @@ -160,6 +161,7 @@ buildPythonPackage rec { mypy-extensions nest-asyncio nltk + numba numpy olefile orderly-set diff --git a/pkgs/development/tools/language-servers/ansible-language-server/default.nix b/pkgs/development/tools/language-servers/ansible-language-server/default.nix new file mode 100644 index 000000000000..847cc0241253 --- /dev/null +++ b/pkgs/development/tools/language-servers/ansible-language-server/default.nix @@ -0,0 +1,79 @@ +{ + lib, + stdenv, + fetchFromGitHub, + yarn-berry_4, + nodejs, + makeWrapper, + python3, + writableTmpDirAsHomeHook, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "ansible-language-server"; + version = "1.2.4"; # Language server version from the repo at packages/ansible-language-server/package.json + vscodeAnsibleVersion = "26.1.3"; # vscode-ansible version + + src = fetchFromGitHub { + owner = "ansible"; + repo = "vscode-ansible"; + tag = "v${finalAttrs.vscodeAnsibleVersion}"; + hash = "sha256-DsEW3xP8Fa9nwPuyEFVqG6rvAZgr4TDB6jhyixdvqt8="; + }; + + missingHashes = ./missing-hashes.json; + + offlineCache = yarn-berry_4.fetchYarnBerryDeps { + inherit (finalAttrs) src missingHashes; + hash = "sha256-GScYVFdG8MMtPjtXfz7e6Y+A1tFMF9T8suvU+/BhsHY="; + }; + + nativeBuildInputs = [ + nodejs + yarn-berry_4 + yarn-berry_4.yarnBerryConfigHook + makeWrapper + writableTmpDirAsHomeHook + ]; + + # Prevent native module builds (e.g. keytar from the VS Code extension workspace) + # The language server only needs TypeScript compilation, done manually in buildPhase + env.YARN_ENABLE_SCRIPTS = "0"; + + buildPhase = '' + runHook preBuild + cd packages/ansible-language-server + rm -rf test + yarn run compile + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + mkdir -p $out/lib/node_modules/ansible-language-server + cp -r out package.json $out/lib/node_modules/ansible-language-server/ + + cd ../.. + cp -rL node_modules $out/lib/node_modules/ansible-language-server/ + + mkdir -p $out/lib/node_modules/ansible-language-server/bin + cp packages/ansible-language-server/bin/ansible-language-server $out/lib/node_modules/ansible-language-server/bin/ + + mkdir -p $out/bin + makeWrapper ${nodejs}/bin/node $out/bin/ansible-language-server \ + --prefix PATH : ${python3}/bin \ + --add-flags "$out/lib/node_modules/ansible-language-server/out/server/src/server.js" + runHook postInstall + ''; + + meta = { + changelog = "https://github.com/ansible/vscode-ansible/releases/tag/v${finalAttrs.vscodeAnsibleVersion}"; + description = "Ansible Language Server"; + mainProgram = "ansible-language-server"; + homepage = "https://github.com/ansible/vscode-ansible"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ + dtvillafana + robsliwi + ]; + }; +}) diff --git a/pkgs/development/tools/language-servers/ansible-language-server/missing-hashes.json b/pkgs/development/tools/language-servers/ansible-language-server/missing-hashes.json new file mode 100644 index 000000000000..5d7782307a32 --- /dev/null +++ b/pkgs/development/tools/language-servers/ansible-language-server/missing-hashes.json @@ -0,0 +1,71 @@ +{ + "@esbuild/aix-ppc64@npm:0.27.2": "9c18cc2e4a03339a55013aac05b4a3fc4b77e75715dc252d034aa3d43b754abc053a7601b95e31249f4b6e69b68db2f5e6cb04b0ed619f825f2f70daff1a78d7", + "@esbuild/android-arm64@npm:0.27.2": "a318fc9ffcdad7fda8bb521af8b17f73d93d9a94b4cca9301fbf72cf3f5a6e945edd589a47388de70f3e9582655dcf5b5bb928a11e306368fae4a9106d5143d2", + "@esbuild/android-arm@npm:0.27.2": "01114275e096b9177ad2496730087ee081d6e65a75bc087457b527c5baac5a8ccb362435f45232532bf6f97de95e1790dbce127d55abd5e4152c7214682bf4d3", + "@esbuild/android-x64@npm:0.27.2": "e92c5b6919081a14c8882f1167cf90b4e4bba745ad6e9a23428f85a1cd5e79dfa3f1d2fc943686b237e4cd09fac52ad3b3791deab6a0419ee10859284d3834aa", + "@esbuild/darwin-arm64@npm:0.27.2": "5e99db5037167bad4a095fc445b94a2ce02357870ed58b79e13ae6bc09b5cb33d7e03f925492df940f9e0ad685a889f02beec1431d8fbf4c7ced55b2f48f5659", + "@esbuild/darwin-x64@npm:0.27.2": "87f2fbc4cf11724ef805b17cbdc7b0a9498332bc4b61d55e110ecc3b09bc488b88c0bd140ea48924e9c97a2063cf7e440fef13dd56e415c46799619d61086910", + "@esbuild/freebsd-arm64@npm:0.27.2": "1ffa23243b913e377a5b09fd97ad9f089be3695aafdd893b60bb7f9be479256d8b7546f0bc96c4e61133fe7aeeaf95a8e941e82a65d99008ff82c99bdec85eee", + "@esbuild/freebsd-x64@npm:0.27.2": "44f744b289cf9e115b0adfac1905818d756dfced14213bf144d9016d96f67575ef2a55526f76e29ee775fcfec7274ba3a5e6833f35ed79a4592d3f5eac278267", + "@esbuild/linux-arm64@npm:0.27.2": "2b037d74eaff4e9b5a6076760ede873320707636a3495939687cdd0c2c7150883111273bc0a8663fa305c42f439f4748b5ad7f15a1a1ea9fa7db575d9faf2d1b", + "@esbuild/linux-arm@npm:0.27.2": "28cfc3a9ca11fc899649e7a706fb4b2ee57999bd92e86c23726b3ed0f832732411dd0aa3e2bcdb4105759f83bc4e5adc98dc195aaafce736c910db4e43694702", + "@esbuild/linux-ia32@npm:0.27.2": "ac6cc92b9be2ec6d9d483c53fc973e6381765b784a2e1b71fa93ea0cf976344c2e3e0bfda0140b0829b3ec4304d9b886692b2891e68c17d2121066d06e67f0ac", + "@esbuild/linux-loong64@npm:0.27.2": "625f5b6c2218a3acb2cff8f7f02a53ca89d13925f8932260ddad01595c6907beda4a79e4b767b1101f5971049f88d3ec6ab29cf565b4d61d9b0d7277e2cb578d", + "@esbuild/linux-mips64el@npm:0.27.2": "0c62692cb3a297b37212dfde52a861861843a716f6b3bdb73da49ba249a4c001b989ea61dc4540c430fac59ce2f8fc45035cdfac80172c5ddaf1b9df8471aecf", + "@esbuild/linux-ppc64@npm:0.27.2": "b804d2dd0a6a85fe1c731828c725731a55ab120d2cc16941d560b2e9af5c2ec51586914ce26a84a326a9d46fa61eb8bb1f843953fe29ddd43b3f3099c491b5ff", + "@esbuild/linux-riscv64@npm:0.27.2": "03e67e7207a83801363e3637f9a35fb6224ed4dc23bbf6eca41904fc42f5a6806e1e591666bf48dbf62eba97d41ff4355413b14dcb2339007b22c693374c49f6", + "@esbuild/linux-s390x@npm:0.27.2": "eb24b9c0a4a1492e4ff34a87933f6a3b348739c12f864b408144efdf949871c1fbb02a1cca741bfa11fd08aebe585d046fd3311b462ce4c795e3064ba3912469", + "@esbuild/linux-x64@npm:0.27.2": "ed1542f203329521fb1f308696c76ba59ed4a4616a24e21bf4820685362bba209d5c44c2f4e66c88dc7b7399df9ace625454d4829ee529d076ccaf61566e11cf", + "@esbuild/netbsd-arm64@npm:0.27.2": "576dd082047077b9cc41fbeffd728821a4f3b80969c1d2d6c274301122c6de2050f484fd4e946777527b8a15bd2a5ac54f85ca7ab95ea72b5345177e6a888687", + "@esbuild/netbsd-x64@npm:0.27.2": "f8994af3e2ff3c9a91e874e58698b66e6f8d4e72dbc0aaf749b74a79420954146ed053359b0a4c213918582cee187d8a371737a33cfb93e624b4d091e5a6c240", + "@esbuild/openbsd-arm64@npm:0.27.2": "f710da24beeb747ef3a11b9d99085a14f5c929f942fd9d9a05b7806d5ff1b85631bfa506eb7a6aed9fd01ec99bf91f24736f9f0e0eb6b7c0019fe0dddd2e615c", + "@esbuild/openbsd-x64@npm:0.27.2": "62670fbe1f609c5362df7b45968ded512a0860e2ad8a4715a89993abfa2f9f08a28f1294c7857d80e6d3f713639a71d291c06a961b331de67ad350032d1b8e96", + "@esbuild/openharmony-arm64@npm:0.27.2": "e279efdc18301add96ea791ba9ef117cae05346688cd521fd225a60ad166add4bc995af985058e3b6ab9e65a7c49a79108a294d6aa26a1d1685ad0db194e2c56", + "@esbuild/sunos-x64@npm:0.27.2": "7234302321d36576b5a9f027915417cddc195a67b19cdfb50e69c337ee0dd63a88be6b72d7ef299cd569d1af62e54774303d52d3d6b5e5858db975241ae467d6", + "@esbuild/win32-arm64@npm:0.27.2": "36620fddf79da3e8e527ef8331436929fa7a0b23c9b591af8f8573d80ed9c4ef45b24c6fa0abbb01d187dec497efa6c9d9d397d575afc1f28477e9ca16a48d73", + "@esbuild/win32-ia32@npm:0.27.2": "96e8c1fa0ec2b5529ead2ba703e5da7644c138b2f9b6e285c05513f0455e99b2b0dcf399f01779fb384e22810e82f892491e44402772c62d3fe094b025bbdc0f", + "@esbuild/win32-x64@npm:0.27.2": "1ed08bebd916c16003f3784276ae683ab41d34951a0c272f6e072b8067a2b4bacd6f6f75a8dcea375b8545e15891d305425cf7c8dd31f7deab56ef22cde4a1e2", + "@node-rs/crc32-android-arm-eabi@npm:1.10.6": "a499d1438bc27e6540ec5e15817ffaccb8366bf062907cee05abd2ddea1e6049e79a516a972f272be35b10a33e5a63d4dfccf4c42213e8fc942de73e6bb88754", + "@node-rs/crc32-android-arm64@npm:1.10.6": "3d1a8b500f48e8be8049439ea161130277f03ec63716aeae29dc73cc43f091ac8734405243c6f44bf71a59f194436a201cef3172ca7b93a4f3e627499ea1dfda", + "@node-rs/crc32-darwin-arm64@npm:1.10.6": "d210071fc97efae6b20525c13577b91def09ecbc9489d6d061bc40c38fbd49b249f8f268f1d16f56581242517afdc18175e36bdec3411100994387fe88678560", + "@node-rs/crc32-darwin-x64@npm:1.10.6": "2f70fcf61054d6210c733118a8bbfad8f464cf0f85cdc9f8ee9249b610964344306369e521804a4630829704778ec35e41c2cf93419c80962d3add672545a4fc", + "@node-rs/crc32-freebsd-x64@npm:1.10.6": "250252cd1bde3ad5489d223f0229e13324ab6cb81a0a02644bba125c0c3c084f99bce5b265bc07c5c4c4f883bec3941fcddec6a67b91bd7d98c36960fbe96ec8", + "@node-rs/crc32-linux-arm-gnueabihf@npm:1.10.6": "fefd763aeda918bfe3fc08a6bfac12247153b38588f5e02011b774fab4d1d4b0011554e3161f529e2511d25541b9f38f09024ef3b20802a97aa0d6c688f2ad88", + "@node-rs/crc32-linux-arm64-gnu@npm:1.10.6": "ed947d071055500fcdc66b3adc68d52e80b6e12e2fad429efa4b6a0f63556c0bacd438bac71ad989ad90844a5138e2a92e66344a62e73791cdd4c68bec8584ac", + "@node-rs/crc32-linux-arm64-musl@npm:1.10.6": "fe94b295661401d59866487cdca3cc9ce553e85119351c63b10f723f513ff22c0307c88842eebf14e2e841dc2c4c177ef61d506e3a6ad1b70b1aaa1a04b69b3b", + "@node-rs/crc32-linux-x64-gnu@npm:1.10.6": "2e82bce0d59ccfd4bae7f85db7f5cf198e803c5ccb0d68efe27c588d496004e0753162578926fd9df8f5b241cc52ccfae352291ea3167d152de0e69c7fdae4be", + "@node-rs/crc32-linux-x64-musl@npm:1.10.6": "8722d716d80f1e4dd2ebc96f6e552d9ce9091fad6c7bf1fa57033fd7129c404dbeccf9a175759fd80fcda6f50eda6fe99111865ff284edcb4d4bbd110025e6c2", + "@node-rs/crc32-wasm32-wasi@npm:1.10.6": "8c03d8e2472937eacd3242b051bde1bc101556945cb0812a8aa319953f2bd2eecfd45fb41dc89c21987e2c646e27dc4e3f1aa523d6f83092bb5e7226ac0c5e10", + "@node-rs/crc32-win32-arm64-msvc@npm:1.10.6": "3d4c3c0158ff8c248b8c903de79ac4f09f2961feace0d7577ecfdc0007d4ef4737822b281476042737e6ea8c7b4bb1327189f7af8ada855dfbfb53c98a4a35be", + "@node-rs/crc32-win32-ia32-msvc@npm:1.10.6": "30d673a438a4a2fe136fa154717cec31659fea6b98234c48b307b772dd55eba95d592207293bb4f374997c116e5aa809594a98c76cd3ad54d6c8525168cdea83", + "@node-rs/crc32-win32-x64-msvc@npm:1.10.6": "18194da0113883a94912172ec965f9d684eca02dacab1c38b7ea3eb7b91da549485a7c346a96aaab8089448f4ae231670f4a3313be48335676c42319974f9f5b", + "@oxc-resolver/binding-android-arm-eabi@npm:11.16.3": "cc6555a7ef75832ad4c6af7c27b8e11edfeeb3cd52d71baddf1799fde4ef38639c1ed31b9989b39de09b995fd8621f7c9761e0a12768e02d0d0276c4329529cc", + "@oxc-resolver/binding-android-arm64@npm:11.16.3": "590586523a22b60213728e03b3d2b5ed258120360340ca28d04db83898bb79d2443c1079bf37ce62d5d26d41c5766d3423ef260ac127d047b322a3b2527569fd", + "@oxc-resolver/binding-darwin-arm64@npm:11.16.3": "0b65eaa8ac42fc451f0d1dcda5df946c3980de967a35b321944d2cb6cdcc4a0856f330212ed43bbbb719b664a33ed592579951950aabb6f2fc135e4d1c246e17", + "@oxc-resolver/binding-darwin-x64@npm:11.16.3": "8845aaccb58c0a859ab386e9082c352523eb1c0a7f258bb0e3870424ff06ad967e185e4f87d1721874d39ec83889db3a9aa2f6ca85fcdace36f378929c1d26ae", + "@oxc-resolver/binding-freebsd-x64@npm:11.16.3": "44441bda800f3e78a838334996612fc1e488b276e335c955518f388c2a0cd115b144e70f35672fc5fa192a9fa9fbe08c1b3923dcc5504f91210fdfc6c2b406d7", + "@oxc-resolver/binding-linux-arm-gnueabihf@npm:11.16.3": "d2b7a8c94f1e8cdcd901a9554a7b1ef45dcde5f8f9501fe46c0213309a812277711daf653f2949aacd7205c4e1334c2827f95b560c2a97ff2560ae47b861ae12", + "@oxc-resolver/binding-linux-arm-musleabihf@npm:11.16.3": "2f2dd84869fed17ba27b8f52c72bf5292f266f144f911ccca2e0f0cfdc93b6f7f6684297ef119451a6fb1750b762ba85c5a6a8870d6f72e7cac3a0edae2cb970", + "@oxc-resolver/binding-linux-arm64-gnu@npm:11.16.3": "d37969e2b3d6022d2a45dd7e6217a405d4b299ced4713d41e86973cb1e58852068e5dac5a8f119e8e5ed6ed267612a42ed29a779ef1a69b7056a14f4a2bae2ab", + "@oxc-resolver/binding-linux-arm64-musl@npm:11.16.3": "7b1c7cbdc12931d0bf930a627dee73b07a8e815b6154d88f18719c263042a272606fefeec92b370f8e34b696991e1e97ff3a47944066e60e6e8e249e9cb6ee9b", + "@oxc-resolver/binding-linux-ppc64-gnu@npm:11.16.3": "e59ebb74beed7235f332653fc59ed2ad788532242cf20aeebe9f4bc7cfe3f26b1007882bfc1447dd90daa189a7b3ad24d04dc8c30ec8903ac7b83a8dd482d304", + "@oxc-resolver/binding-linux-riscv64-gnu@npm:11.16.3": "4faba58a846eca5f38575c99f36657088399276658b3b1367f7f6c176e4e4d4332117863193aaaf5fd01dfe962374a50c227b221f3f939862e565f871119778c", + "@oxc-resolver/binding-linux-riscv64-musl@npm:11.16.3": "2d1337667667d9290db49903f2e55e62cb093efb931de6169a77a07d37c5f7df818f4573dc30e214c20e9bb98552ecdc972bd6a303541d82b6d9641cea0a5c46", + "@oxc-resolver/binding-linux-s390x-gnu@npm:11.16.3": "87c08a045ee06c2eef737773866f095f975917ed0cf4f3a228bd1f52e130d277ad542376c40e4074c0ecb770f1f9cec360e35f9c92c2ee4f704fed48571504f0", + "@oxc-resolver/binding-linux-x64-gnu@npm:11.16.3": "138f8910ad53f913b42d81012d534fd943f196eacda39fc91d28e20aba4f46c533db364664cec8aec275c1f2eb622ca9a58a9ced757f08f31bf74e886b89c308", + "@oxc-resolver/binding-linux-x64-musl@npm:11.16.3": "4d7798ea78b1f15c464f8ed961f9f9ecbabe73dd9bef8508ae919ff859a922f4819fc4ce48eb07a07909118813ba076664f83e21223902c67d371a6f3d50f069", + "@oxc-resolver/binding-openharmony-arm64@npm:11.16.3": "740852deadb4efbb0308fa5cf538d35de479a5605c34e3b7fc70e2e8d5aec408dcdbe9fa85cb2fa572021f5c9fa182976f9dbee7a6dc8c089b3ba37e69edc2a1", + "@oxc-resolver/binding-wasm32-wasi@npm:11.16.3": "f9d3c69fdafdd81ec147f4aa8ed867b60b9a39920a9a81e043c0bb6783b6bc0316df938ce14bec9ee5c4f3650a0fb43e009fb41bbdfd6bf4305d62acd82bfa44", + "@oxc-resolver/binding-win32-arm64-msvc@npm:11.16.3": "f456e67763c45747ba1f08d705358a7c6fba1a50a8c6b829ad1def972ad96c6327f9b619acb3de3f3b7a8abad16c57740e43392f42be0e13aeb4c584af933db1", + "@oxc-resolver/binding-win32-ia32-msvc@npm:11.16.3": "4c749acb86161f268b526c1e791ae1ed6b1f65d772f25d9e646056bef80612c0d5355b197d3745e6159372fd22d20bc465425d5d732f997918575ffc78f91eda", + "@oxc-resolver/binding-win32-x64-msvc@npm:11.16.3": "06d45a2a96242803db25337ea6979eb85302ed3385ab2286278e1624fd7435f864a159e658dce2b4ad01a4da4711b78c8614c9a6ce9b0bf281cebf2477db0e31", + "@vscode/vsce-sign-alpine-arm64@npm:2.0.6": "82d20f61bc9a8bb5a401dedb8ca56240312f83e18092a4732ee5b08e3d1b55dbf30e143fd26d0b72cbc017c5229d723ba63f20cbbc935e5a25b62edd693b6ccc", + "@vscode/vsce-sign-alpine-x64@npm:2.0.6": "eb93895082e908eb948022df100dd810d2bcd6ff4233d5b8f83e5040aae469710a9c545bdb48a1d6749cbcfed7954038b6d720e9b4feb2fe6f25d89a4dcd99f4", + "@vscode/vsce-sign-darwin-arm64@npm:2.0.6": "962bb2fbc38b3b4e7e25d74d3396fc99c68544c421519a3bdda6e501af2f363c622d6a4e3b28ace63ac38153a03405eb012c93d0b722a75c9765e068af4d3663", + "@vscode/vsce-sign-darwin-x64@npm:2.0.6": "b6f55bb9b95866c99fdbaa70f64dc30b3133545115f042e54041add56280cf65b5246376bb1529549524fc4b34f82cc105a6d2d811d13bcc49d1dba025d3c2a5", + "@vscode/vsce-sign-linux-arm64@npm:2.0.6": "1cf2faeba5f3a1ea44149d77f51e4bdb38eb9a7a605ddea1a7f5c368ab040727d52a4e44083c4e7ab14988e68e43a9120204efaf2882986d7e411043f4527e91", + "@vscode/vsce-sign-linux-arm@npm:2.0.6": "06c184d9ea62f37a93e7c2e17963cc8037b3a25904ae829384474084ddc45ee116f49fd8bb48ea902c6bbd8681e32837b36094f0bf4f626b0f45e0aa9a7681d8", + "@vscode/vsce-sign-linux-x64@npm:2.0.6": "d225d8bbe31bcb4ddd9f8a3f9c46b4ad804b424e9a2bc75ab4e5b1eb928d539c8a9add0baa59f46e8428ab61158ab543f257694dcaf7e43fc10a0a5854d30327", + "@vscode/vsce-sign-win32-arm64@npm:2.0.6": "cb552557dfc1094b7b6307224279ab0090cfc32d8c5285475d2308148d5b7a0e00d120ff18f26d3947a4b112b814312a1613ad3c045be9b308f0019c2a4f76f3", + "@vscode/vsce-sign-win32-x64@npm:2.0.6": "838165c978836dd7180e4c07d71e7a351b4cf46a0400fc5186b9363d42cc89cc706f915f6907964ceaeaa885bc4a53313df88ebf6e580a34778036585b19a05d" +} diff --git a/pkgs/os-specific/linux/kernel/htmldocs.nix b/pkgs/os-specific/linux/kernel/htmldocs.nix index af43f3162783..5f5ce7c94e8c 100644 --- a/pkgs/os-specific/linux/kernel/htmldocs.nix +++ b/pkgs/os-specific/linux/kernel/htmldocs.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { tools/net/ynl/pyynl/ynl_gen_rst.py ''; - FONTCONFIG_FILE = makeFontsConf { + env.FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; }; diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index 4fb0f9ac8345..b74a494634b8 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -26,6 +26,8 @@ let }; }; + # nixpkgs-update: no auto update + xanmodKernelFor = { version, diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index ecb8349406a8..4f44473df795 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -365,9 +365,11 @@ let rm -r "$out"/OFF ''; - env = lib.optionalAttrs stdenv.hostPlatform.isi686 { - CXXFLAGS = "-fpermissive"; - }; + env = + lib.optionalAttrs stdenv.hostPlatform.isi686 { + CXXFLAGS = "-fpermissive"; + } + // (common.env or { }); passthru = { inherit client; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 2dfc26b8bafe..32fe7240abf1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -295,7 +295,6 @@ mapAliases { androidndkPkgs_26 = throw "androidndkPkgs_26 has been removed, as it is EOL"; # Added 2025-08-09 anew = throw "'anew' has been removed, as it has been unmaintained upstream since March 2022"; # Added 2026-01-01 anonymousPro = anonymous-pro-fonts; # Added 2026-02-08 - ansible-language-server = throw "ansible-language-server was removed, because it was unmaintained in nixpkgs."; # Added 2025-09-24 ansible-later = throw "ansible-later has been discontinued. The author recommends switching to ansible-lint"; # Added 2025-08-24 ansible_2_16 = throw "ansible_2_16 has been removed, as it is EOL"; # Added 2025-11-10 ansible_2_17 = throw "ansible_2_17 has been removed, as it is EOL"; # Added 2025-11-10 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7e01a1896c0c..92a92ccf7662 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2156,6 +2156,7 @@ with pkgs; cudaPackages_12_8 cudaPackages_12_9 cudaPackages_13_0 + cudaPackages_13_1 ; cudaPackages_12 = cudaPackages_12_8; @@ -5431,6 +5432,10 @@ with pkgs; ansible = python3Packages.toPythonApplication python3Packages.ansible-core; + ansible-language-server = + callPackage ../development/tools/language-servers/ansible-language-server + { }; + ansible-builder = with python3Packages; toPythonApplication ansible-builder; yakut = python3Packages.callPackage ../development/tools/misc/yakut { }; @@ -11208,12 +11213,14 @@ with pkgs; demoSupport = false; jpegSupport = false; lcmsSupport = false; + luaSupport = false; pangoSupport = false; pipewireSupport = false; rdpSupport = false; remotingSupport = false; vaapiSupport = false; vncSupport = false; + vulkanSupport = false; webpSupport = false; xwaylandSupport = false; }; diff --git a/pkgs/top-level/cuda-packages.nix b/pkgs/top-level/cuda-packages.nix index 190fbc3a82a6..687dad26c850 100644 --- a/pkgs/top-level/cuda-packages.nix +++ b/pkgs/top-level/cuda-packages.nix @@ -123,6 +123,28 @@ let tensorrt = if hasPreThorJetsonCudaCapability requestedJetsonCudaCapabilities then "10.7.0" else "10.14.1"; }; + + cudaPackages_13_1 = + let + inherit (cudaPackages_13_1.backendStdenv) requestedJetsonCudaCapabilities; + in + mkCudaPackages { + cublasmp = "0.6.0"; + cuda = "13.1.1"; + cudnn = "9.13.0"; + cudss = "0.6.0"; + cuquantum = "25.09.0"; + cusolvermp = "0.7.0"; + cusparselt = "0.8.1"; + cutensor = "2.3.1"; + nppplus = "0.10.0"; + nvcomp = "5.0.0.6"; + nvjpeg2000 = "0.9.0"; + nvpl = "25.5"; + nvtiff = "0.5.1"; + tensorrt = + if hasPreThorJetsonCudaCapability requestedJetsonCudaCapabilities then "10.7.0" else "10.14.1"; + }; in { inherit @@ -130,5 +152,6 @@ in cudaPackages_12_8 cudaPackages_12_9 cudaPackages_13_0 + cudaPackages_13_1 ; }