mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
ba4f0c63e4
(cherry picked from commit 916bc99f2c
)
See the grandparent commit.
13 lines
307 B
Nix
13 lines
307 B
Nix
{ stdenv, callPackage, fetchpatch
|
|
# Darwin frameworks
|
|
, Cocoa, CoreMedia, VideoToolbox
|
|
, ...
|
|
}@args:
|
|
|
|
callPackage ./generic.nix (rec {
|
|
version = "4.3.1";
|
|
branch = "4.3";
|
|
sha256 = "1nghcpm2r9ir2h6xpqfn9381jq6aiwlkwlnyplxywvkbjiisr97l";
|
|
darwinFrameworks = [ Cocoa CoreMedia VideoToolbox ];
|
|
} // args)
|