Skip to content

Commit dc12cd1

Browse files
Cray ElliottCray Elliott
Cray Elliott
authored and
Cray Elliott
committedMay 24, 2017
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
1 parent 454041a commit dc12cd1

File tree

1 file changed

+1
-1
lines changed
  • pkgs/development/libraries/ffmpeg

1 file changed

+1
-1
lines changed
 

‎pkgs/development/libraries/ffmpeg/3.3.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
callPackage ./generic.nix (args // rec {
88
version = "${branch}";
99
branch = "3.3.1";
10-
sha256 = "0bwgm6z6k3khb91qh9xv15inykkfchpkm0lcdckkxhkacpyaf0mp";
10+
sha256 = "0c37bdqwmaziikr2d5pqp7504ail6i7a1mfcmc06mdpwfxxwvcpw";
1111
darwinFrameworks = [ Cocoa CoreMedia ];
1212
})

1 commit comments

Comments
 (1)

MP2E commented on May 27, 2017

@MP2E

Sorry for the inconvenience, ffmpeg uses the bz2 archive whereas ffmpeg-full uses the xz archive, so it mixed me up. Should be fixed as of 3a18388

I looked into why ffmpeg is using the bz2 archive, and the reason is because the URL in generic.nix is for all of the versions of ffmpeg that we package, and the older versions do not have xz archives available.

Please sign in to comment.