3
0
Fork 0
forked from mirrors/nixpkgs

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
This commit is contained in:
Cray Elliott 2017-05-23 20:46:10 -07:00
parent 454041a557
commit dc12cd1cae

View file

@ -7,6 +7,6 @@
callPackage ./generic.nix (args // rec {
version = "${branch}";
branch = "3.3.1";
sha256 = "0bwgm6z6k3khb91qh9xv15inykkfchpkm0lcdckkxhkacpyaf0mp";
sha256 = "0c37bdqwmaziikr2d5pqp7504ail6i7a1mfcmc06mdpwfxxwvcpw";
darwinFrameworks = [ Cocoa CoreMedia ];
})