audiowaveform 1.7.0 -> 1.7.1 https://github.com/bbc/audiowaveform/releases attrpath: audiowaveform Checking auto update branch... No auto update branch exists Old version 1.7.0" 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.7.1"; src = fetchFromGitHub { owner = "bbc"; repo = "audiowaveform"; rev = version; sha256 = "sha256-DxVEAe9j4BAMrfMiaxDfkGvL6CCT/v5oKTrxmgkHuyM="; }; 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 ]; }; }