···1616- LLVM has been updated from LLVM 16 (on Darwin) and LLVM 18 (on other platforms) to LLVM 19.
1717 This introduces some backwards‐incompatible changes; see the [upstream release notes](https://releases.llvm.org/) for details.
18181919+- The default PHP version has been updated to 8.3.
1920<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
20212122## New Modules {#sec-release-25.05-new-modules}
+1-1
nixos/modules/services/web-apps/castopod.nix
···66 user = "castopod";
7788 # https://docs.castopod.org/getting-started/install.html#requirements
99- phpPackage = pkgs.php.withExtensions ({ enabled, all }: with all; [
99+ phpPackage = pkgs.php82.withExtensions ({ enabled, all }: with all; [
1010 intl
1111 curl
1212 mbstring
···11+{
22+ lib,
33+ stdenv,
44+ fetchzip,
55+ dotnet-runtime,
66+ zlib,
77+ runtimeShell,
88+}:
99+1010+stdenv.mkDerivation rec {
1111+ pname = "avdump3";
1212+ version = "8293_stable";
1313+1414+ src = fetchzip {
1515+ url = "https://cdn.anidb.net/client/avdump3/avdump3_8293_stable.zip";
1616+ hash = "sha256-H9Sn3I4S9CmymKIMHVagDy+7svHs285S3EJgYQo+ks0=";
1717+ stripRoot = false;
1818+ };
1919+2020+ installPhase = ''
2121+ runHook preInstall
2222+ mkdir -p $out/share/avdump3 $out/bin
2323+ mv * $out/share/avdump3
2424+ cat > $out/bin/avdump3 <<EOF
2525+ #!${runtimeShell}
2626+ export LD_LIBRARY_PATH="${lib.makeLibraryPath [ zlib ]}:\$LD_LIBRARY_PATH"
2727+ exec ${dotnet-runtime}/bin/dotnet $out/share/avdump3/AVDump3CL.dll "\$@"
2828+ EOF
2929+ chmod +x $out/bin/avdump3
3030+ runHook postInstall
3131+ '';
3232+3333+ dontPatchELF = true;
3434+3535+ meta = {
3636+ mainProgram = "avdump3";
3737+ description = "Tool for extracting audio/video metadata from media files and uploading it to AniDB";
3838+ longDescription = ''
3939+ AVDump is a tool to extract meta information from media files while at the
4040+ same time calculating multiple hashes. Based on that information reports
4141+ can be generated in multiple forms. Of particular interest is the ability
4242+ to send those reports back to AniDB and thereby quickly filling in missing
4343+ metadata for new files.
4444+ '';
4545+ homepage = "https://wiki.anidb.net/Avdump3";
4646+ sourceProvenance = with lib.sourceTypes; [
4747+ binaryNativeCode
4848+ binaryBytecode
4949+ ];
5050+ # partial source code available under MIT license at https://github.com/DvdKhl/AVDump3
5151+ license = with lib.licenses; [
5252+ mit
5353+ unfree
5454+ ];
5555+ maintainers = with lib.maintainers; [ kini ];
5656+ # NOTE: aarch64-linux may also work but hasn't been tested; co-maintainers welcome.
5757+ platforms = [ "x86_64-linux" ];
5858+ };
5959+}
+4-3
pkgs/by-name/aw/await/package.nix
···8899stdenv.mkDerivation rec {
1010 pname = "await";
1111- version = "1.0.5";
1111+ version = "1.0.7";
12121313 src = fetchFromGitHub {
1414 owner = "slavaGanzin";
1515 repo = "await";
1616- rev = "v${version}";
1717- hash = "sha256-0U9eLQDvHnRUJt46AI4bDWZfGynqjaWs9teidWP3RsA=";
1616+ rev = version;
1717+ hash = "sha256-Yrit1WdWIfjwqbjvyjrPT3EqSSkooYX+uoOstbxy//I=";
1818 };
19192020 nativeBuildInputs = [ installShellFiles ];
···4040 versionCheckHook
4141 ];
4242 doInstallCheck = true;
4343+ versionCheckProgramArg = [ "--version" ];
43444445 meta = with lib; {
4546 description = "Small binary that runs a list of commands in parallel and awaits termination";
···55 /* Do not use "dev" as a version. If you do, Tilt will consider itself
66 running in development environment and try to serve assets from the
77 source tree, which is not there once build completes. */
88- version = "0.33.17";
88+ version = "0.33.21";
991010 src = fetchFromGitHub {
1111 owner = "tilt-dev";
1212 repo = "tilt";
1313 rev = "v${version}";
1414- hash = "sha256-GzWnTq3X615A/jRjYhBriRYaH4tjv+yg2/zHIJuKXPE=";
1414+ hash = "sha256-3LFsTaz47QAIDGId/Tl3G7xP5b9gc25X+ZeMaVhXf8w=";
1515 };
1616 };
1717
···1515 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json);
16161717 # the version of infisical
1818- version = "0.31.2";
1818+ version = "0.31.8";
19192020 # the platform-specific, statically linked binary
2121 src =
···147147 bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15
148148 bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15
149149 bird2 = bird; # Added 2022-02-21
150150+ bisq-desktop = throw "bisq-desktop has been removed because OpenJFX 11 was removed"; # Added 2024-11-17
150151 bitwarden = bitwarden-desktop; # Added 2024-02-25
151152 blender-with-packages = args:
152153 lib.warn "blender-with-packages is deprecated in favor of blender.withPackages, e.g. `blender.withPackages(ps: [ ps.foobar ])`"