1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #290885 from simonhollingshead/audiowaveform-cpp14

audiowaveform: Build with C++14.
This commit is contained in:
Nick Cao 2024-02-25 11:19:46 -05:00 committed by GitHub
commit 20fdff81d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
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 ];