From dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5 Mon Sep 17 00:00:00 2001 From: Cray Elliott Date: Tue, 23 May 2017 20:46:10 -0700 Subject: [PATCH] ffmpeg: fix sha256 hash for 3.3.1 ffmpeg-full uses the .xz source release while ffmpeg uses .bz2 so hashes cannot be shared between them --- pkgs/development/libraries/ffmpeg/3.3.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/ffmpeg/3.3.nix b/pkgs/development/libraries/ffmpeg/3.3.nix index 0227d7489ba..d6380b795af 100644 --- a/pkgs/development/libraries/ffmpeg/3.3.nix +++ b/pkgs/development/libraries/ffmpeg/3.3.nix @@ -7,6 +7,6 @@ callPackage ./generic.nix (args // rec { version = "${branch}"; branch = "3.3.1"; - sha256 = "0bwgm6z6k3khb91qh9xv15inykkfchpkm0lcdckkxhkacpyaf0mp"; + sha256 = "0c37bdqwmaziikr2d5pqp7504ail6i7a1mfcmc06mdpwfxxwvcpw"; darwinFrameworks = [ Cocoa CoreMedia ]; })