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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/c46dfa1pssb1v98na8jcccfak9kig5ri-packages.json.drv building '/nix/store/c46dfa1pssb1v98na8jcccfak9kig5ri-packages.json.drv'... Going to be running update for following packages: - libopenmpt-0.7.2 Press Enter key to continue... Running update for: - libopenmpt-0.7.2: UPDATING ... - libopenmpt-0.7.2: 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 bb5a4e0dd53b..b8b89abc8ea7 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.2"; + version = "0.7.3"; outputs = [ "out" "dev" "bin" ]; src = fetchurl { url = "https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-${version}+release.autotools.tar.gz"; - hash = "sha256-UJFD5aTzsT3Zjq4om/7BtWTt3XG7x8p4ZLgoNeMTMOE="; + hash = "sha256-LPg2m3kWsJJk8/FLn7bO81pum+4DKN7E9J2YIRzP1yI="; }; enableParallelBuilding = true; No auto update branch exists Old version 0.7.2" 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.3"; outputs = [ "out" "dev" "bin" ]; src = fetchurl { url = "https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-${version}+release.autotools.tar.gz"; hash = "sha256-LPg2m3kWsJJk8/FLn7bO81pum+4DKN7E9J2YIRzP1yI="; }; 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; }; }