summary refs log tree commit diff
path: root/pkgs/development/libraries/ffmpegthumbnailer
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-02-09 17:37:51 +0000
committerSergei Trofimovich <slyich@gmail.com>2022-04-23 10:02:39 +0100
commit1610bf2db99f0ad0557a6470e887e708ce25474b (patch)
tree46d608012a911f73407624f2249dd6dee77431f5 /pkgs/development/libraries/ffmpegthumbnailer
parent79d81ff4a80deddca317e46faab31d9d6df88cd4 (diff)
downloadnixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar.gz
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar.bz2
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar.lz
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar.xz
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.tar.zst
nixpkgs-1610bf2db99f0ad0557a6470e887e708ce25474b.zip
ffmpegthumbnailer: unstable-2021-09-02 -> unstable-2022-02-18
Without the change build fails as:

    libffmpegthumbnailer/videothumbnailer.cpp: In member function 'void ffmpegthumbnailer::VideoThumbnailer::writeImage(...)':
    libffmpegthumbnailer/videothumbnailer.cpp:274:109: error: 'strerror' was not declared in this scope; did you mean 'stderr'?
      274 |             TraceMessage(ThumbnailerLogLevelError, std::string("Failed to stat file ") + videoFile + " (" + strerror(errno) + ")");

Update contains the only fix: https://github.com/dirkvdb/ffmpegthumbnailer/pull/213
Diffstat (limited to 'pkgs/development/libraries/ffmpegthumbnailer')
-rw-r--r--pkgs/development/libraries/ffmpegthumbnailer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/ffmpegthumbnailer/default.nix b/pkgs/development/libraries/ffmpegthumbnailer/default.nix
index 9bfee290871..cb7b8214c57 100644
--- a/pkgs/development/libraries/ffmpegthumbnailer/default.nix
+++ b/pkgs/development/libraries/ffmpegthumbnailer/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   pname = "ffmpegthumbnailer";
-  version = "unstable-2021-09-02";
+  version = "unstable-2022-02-18";
 
   src = fetchFromGitHub {
     owner = "dirkvdb";
     repo = "ffmpegthumbnailer";
-    rev = "d92e191dd793b12cee0a0f685f5a8d8252988399";
-    sha256 = "1ysfq3g74b8ivivrdpfi4vm23d3cyc3rfla5i6y8q9aycis9xv6q";
+    rev = "3db9fe895b2fa656bb40ddb7a62e27604a688171";
+    sha256 = "0606pbg391l4s8mpyyalm9zrcnm75fwqdlrxy2gif9n21i2fm3rc";
   };
 
   nativeBuildInputs = [ cmake pkg-config ];