obs-studio: apply fix for fdk-aac v2.0.0

This commit is contained in:
nyanloutre 2018-12-28 13:52:38 +01:00 committed by Robin Gloster
parent 46adbcde48
commit 560a7add3d

View File

@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, fdk_aac
, ffmpeg
@ -39,6 +40,13 @@ in stdenv.mkDerivation rec {
sha256 = "0ri9qkqk3h71b1a5bwpjzqdr21bbmfqbykg48l779d20zln23n1i";
};
patches = [
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/obsproject/obs-studio/pull/1557.diff";
sha256 = "0xq3sh1g8j58mpa4ryi9agqqpr41prrzagxmqafkbgfv6fjv3h0c";
})
];
nativeBuildInputs = [ cmake
pkgconfig
];