nixpkgs/pkgs/development/libraries/ffmpeg/5.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
288 B
Nix
Raw Normal View History

2022-01-22 03:53:14 +01:00
{ callPackage
# Darwin frameworks
, Cocoa, CoreMedia, VideoToolbox
, ...
}@args:
callPackage ./generic.nix (rec {
version = "5.0.1";
2022-01-22 03:53:14 +01:00
branch = version;
sha256 = "sha256-KN8z1AChwcGyDQepkZeAmjuI73ZfXwfcH/Bn+sZMWdY=";
2022-01-22 03:53:14 +01:00
darwinFrameworks = [ Cocoa CoreMedia VideoToolbox ];
} // args)