mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #31760 from LnL7/darwin-gstreamer
gstreamer: fix darwin build
This commit is contained in:
commit
45b6c9c8f1
1 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
|
{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
|
||||||
, glib, makeWrapper
|
, glib, makeWrapper
|
||||||
|
, darwin
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -24,6 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig perl bison flex python gobjectIntrospection makeWrapper
|
pkgconfig perl bison flex python gobjectIntrospection makeWrapper
|
||||||
];
|
];
|
||||||
|
buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.CoreServices;
|
||||||
|
|
||||||
propagatedBuildInputs = [ glib ];
|
propagatedBuildInputs = [ glib ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue