571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gtest, boost, gd, libsndfile, libmad, libid3tag }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "audiowaveform";
|
|
version = "1.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bbc";
|
|
repo = "audiowaveform";
|
|
rev = version;
|
|
sha256 = "sha256-FcQq0xWs3jH2MfhFQ5r5Vaz8B3akBHBSg8Z/k9An/Wg=";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
# gtest no longer supports C++11.
|
|
"-DCMAKE_CXX_STANDARD=14"
|
|
];
|
|
|
|
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 ];
|
|
mainProgram = "audiowaveform";
|
|
};
|
|
}
|