Skip to content

Commit

Permalink
ffmpeg: fix sha256 hash for 3.3.1
Browse files Browse the repository at this point in the history
ffmpeg-full uses the .xz source release while ffmpeg uses .bz2 so hashes
cannot be shared between them
  • Loading branch information
Cray Elliott authored and Cray Elliott committed May 24, 2017
1 parent 454041a commit dc12cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/ffmpeg/3.3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
callPackage ./generic.nix (args // rec {
version = "${branch}";
branch = "3.3.1";
sha256 = "0bwgm6z6k3khb91qh9xv15inykkfchpkm0lcdckkxhkacpyaf0mp";
sha256 = "0c37bdqwmaziikr2d5pqp7504ail6i7a1mfcmc06mdpwfxxwvcpw";
darwinFrameworks = [ Cocoa CoreMedia ];
})

1 comment on commit dc12cd1

@MP2E
Copy link

@MP2E MP2E commented on dc12cd1 May 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.