blackmagic-desktop-video: use gcc, not gcc7

`gcc7` will soon be removed from `nixpkgs`. Switch the package to use a
default version of `gcc`.
This commit is contained in:
Sergei Trofimovich 2024-09-16 09:32:33 +01:00
parent 0282c8767e
commit ae1991a95b

View File

@ -6,7 +6,7 @@
, autoPatchelfHook
, libcxx
, libGL
, gcc7
, gcc
}:
stdenv.mkDerivation (finalAttrs: {
pname = "blackmagic-desktop-video";
@ -16,7 +16,7 @@ stdenv.mkDerivation (finalAttrs: {
autoPatchelfHook
libcxx
libGL
gcc7.cc.lib
gcc.cc.lib
];
# yes, the below download function is an absolute mess.