summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorCray Elliott <MP2E@archlinux.us>2017-05-23 20:46:10 -0700
committerCray Elliott <MP2E@archlinux.us>2017-05-23 20:46:10 -0700
commitdc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5 (patch)
treedde76550f558fc66ce97d63dfd75daca9d683aa3 /pkgs/development
parent454041a557b39cb030e8e53a723844ec0cefdaa3 (diff)
downloadnixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar.gz
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar.bz2
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar.lz
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar.xz
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.tar.zst
nixlib-dc12cd1caecb81e2bfb3ea6953d0a086bd3e1fc5.zip
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
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/ffmpeg/3.3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/ffmpeg/3.3.nix b/pkgs/development/libraries/ffmpeg/3.3.nix
index 0227d7489ba9..d6380b795af8 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 ];
 })