Unverified Commit 25d2daf3 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #238759 from lunik1/gifski-video

gifski: enable video support
parents b2f53e37 74fd95a6
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
, fetchFromGitHub
, stdenv
, pkg-config
, ffmpeg
}:

rustPlatform.buildRustPackage rec {
@@ -23,7 +24,16 @@ rustPlatform.buildRustPackage rec {
    };
  };

  nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
  nativeBuildInputs = [
    pkg-config
    rustPlatform.bindgenHook
  ];

  buildInputs = [
    ffmpeg
  ];

  buildFeatures = [ "video" ];

  # error: the crate `gifski` is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind`
  doCheck = !stdenv.isDarwin;