1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

monkeysAudio: Fix compilation using an older version of gcc

Fixes this issue:

> /nix/store/...-gcc-11.2.0/include/c++/11.2.0/cmath:1930:1: error: expected declaration before '}' token
>  1930 | } // extern "C++"
>       | ^
This commit is contained in:
Doron Behar 2022-05-05 19:43:05 +03:00
parent a394b50112
commit 0b084cd7af

View file

@ -1,6 +1,6 @@
{lib, stdenv, fetchurl}:
{lib, gcc10Stdenv, fetchurl}:
stdenv.mkDerivation rec {
gcc10Stdenv.mkDerivation rec {
version = "3.99-u4-b5";
pname = "monkeys-audio";