summary refs log tree commit diff
path: root/pkgs/development/libraries/ffmpeg/3.4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/ffmpeg/3.4.nix')
-rw-r--r--pkgs/development/libraries/ffmpeg/3.4.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ffmpeg/3.4.nix b/pkgs/development/libraries/ffmpeg/3.4.nix
new file mode 100644
index 000000000000..513654e98f74
--- /dev/null
+++ b/pkgs/development/libraries/ffmpeg/3.4.nix
@@ -0,0 +1,12 @@
+{ stdenv, callPackage
+# Darwin frameworks
+, Cocoa, CoreMedia
+, ...
+}@args:
+
+callPackage ./generic.nix (args // rec {
+  version = "${branch}";
+  branch = "3.4";
+  sha256 = "0pn8g3ab937ahslqd41crk0g4j4fh7kwimsrlfc0rl0pc3z132ax";
+  darwinFrameworks = [ Cocoa CoreMedia ];
+})