audiowaveform 1.7.1 -> 1.8.0 https://repology.org/project/audiowaveform/versions attrpath: audiowaveform Checking auto update branch... No auto update branch exists Old version 1.7.1" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, cmake, gtest, boost, gd, libsndfile, libmad, libid3tag }: stdenv.mkDerivation rec { pname = "audiowaveform"; version = "1.8.0"; src = fetchFromGitHub { owner = "bbc"; repo = "audiowaveform"; rev = version; sha256 = "sha256-3Fpc0HvtuAYIkyuFrZ+sHkHRHaP4vo0Q4IoGqTksyqE="; }; nativeBuildInputs = [ cmake gtest ]; buildInputs = [ boost gd libsndfile libmad libid3tag ]; preConfigure = '' ln -s ${gtest.src} googletest ''; # One test is failing, see PR #101947 doCheck = false; meta = with lib; { description = "C++ program to generate waveform data and render waveform images from audio files"; longDescription = '' audiowaveform is a C++ command-line application that generates waveform data from either MP3, WAV, FLAC, or Ogg Vorbis format audio files. Waveform data can be used to produce a visual rendering of the audio, similar in appearance to audio editing applications. ''; homepage = "https://github.com/bbc/audiowaveform"; changelog = "https://github.com/bbc/audiowaveform/blob/${version}/ChangeLog"; license = licenses.gpl3Plus; platforms = platforms.all; maintainers = with maintainers; [ edbentley ]; }; }