libopenmpt 0 -> 1 attrpath: libopenmpt Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/sa76iqa4y6p2j6xdw8qkw7gx2i89lkwv-packages.json.drv building '/nix/store/sa76iqa4y6p2j6xdw8qkw7gx2i89lkwv-packages.json.drv'... Going to be running update for following packages: - libopenmpt-0.7.1 Press Enter key to continue... Running update for: - libopenmpt-0.7.1: UPDATING ... - libopenmpt-0.7.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/libraries/audio/libopenmpt/default.nix b/pkgs/development/libraries/audio/libopenmpt/default.nix index f058be4b645..bb5a4e0dd53 100644 --- a/pkgs/development/libraries/audio/libopenmpt/default.nix +++ b/pkgs/development/libraries/audio/libopenmpt/default.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "libopenmpt"; - version = "0.7.1"; + version = "0.7.2"; outputs = [ "out" "dev" "bin" ]; src = fetchurl { url = "https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-${version}+release.autotools.tar.gz"; - hash = "sha256-vxddJkSLsTP3RxTzqIWecAC5NSL7NXdVnf/ANxYZEPk="; + hash = "sha256-UJFD5aTzsT3Zjq4om/7BtWTt3XG7x8p4ZLgoNeMTMOE="; }; enableParallelBuilding = true; No auto update branch exists Old version 0.7.1" not present in staging derivation file with contents: { config , lib , stdenv , fetchurl , zlib , pkg-config , mpg123 , libogg , libvorbis , portaudio , libsndfile , flac , usePulseAudio ? config.pulseaudio or stdenv.isLinux , libpulseaudio }: stdenv.mkDerivation rec { pname = "libopenmpt"; version = "0.7.2"; outputs = [ "out" "dev" "bin" ]; src = fetchurl { url = "https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-${version}+release.autotools.tar.gz"; hash = "sha256-UJFD5aTzsT3Zjq4om/7BtWTt3XG7x8p4ZLgoNeMTMOE="; }; enableParallelBuilding = true; nativeBuildInputs = [ pkg-config ]; buildInputs = [ zlib mpg123 libogg libvorbis portaudio libsndfile flac ] ++ lib.optionals usePulseAudio [ libpulseaudio ]; configureFlags = [ (lib.strings.withFeature usePulseAudio "pulseaudio") ]; doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; postFixup = '' moveToOutput share/doc $dev ''; passthru.updateScript = ./update.sh; meta = with lib; { description = "Cross-platform C++ and C library to decode tracked music files into a raw PCM audio stream"; longDescription = '' libopenmpt is a cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. openmpt123 is a cross-platform command-line or terminal based module file player. libopenmpt is based on the player code of the OpenMPT project. ''; homepage = "https://lib.openmpt.org/libopenmpt/"; license = licenses.bsd3; maintainers = with maintainers; [ OPNA2608 ]; platforms = platforms.unix; }; }