mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 18:03:59 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
64 lines
1.4 KiB
Nix
64 lines
1.4 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";
|
|
};
|
|
}
|