wl-screenrec: 0.1.3 -> 0.1.4-unstable-2024-07-28

Includes support for FFmpeg 7. We can’t use
the release tag because of a Cargo build issue; see
<https://github.com/russelltg/wl-screenrec/issues/77>. Hopefully
there’ll be a new release tag soon.

Diff: <https://github.com/russelltg/wl-screenrec/compare/v0.1.3...b817accf1d4f2373cb6f466f760de35e5b8626bd>
This commit is contained in:
Emily 2024-07-12 14:07:21 +01:00
parent affeca17c0
commit d9b57ba729
2 changed files with 7 additions and 9 deletions

View File

@ -3,22 +3,22 @@
, fetchFromGitHub
, pkg-config
, libdrm
, ffmpeg
, ffmpeg_7
, wayland
}:
rustPlatform.buildRustPackage rec {
pname = "wl-screenrec";
version = "0.1.3";
version = "0.1.4-unstable-2024-07-28";
src = fetchFromGitHub {
owner = "russelltg";
repo = pname;
rev = "v${version}";
hash = "sha256-ThPZPV1GyMFRu94O9WwUpXbR4gnIML26K7TyIfXZlcI=";
rev = "b817accf1d4f2373cb6f466f760de35e5b8626bd";
hash = "sha256-07O2YM9dOHWzriM2+uiBWjEt2hKAuXtRtnKBuzb02Us=";
};
cargoHash = "sha256-DtlVsUFKNKXcwqNvGvqkSKUE+kRHX8wajL4fR0c9ZuQ=";
cargoHash = "sha256-AYirjrnk8SGTXk5IjzCep2AQJYPbgHAOOf47MUDYj4k=";
nativeBuildInputs = [
pkg-config
@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
wayland
libdrm
ffmpeg
ffmpeg_7
];
doCheck = false; # tests use host compositor, etc

View File

@ -4654,9 +4654,7 @@ with pkgs;
wl-mirror = callPackage ../tools/wayland/wl-mirror { };
wl-screenrec = callPackage ../tools/wayland/wl-screenrec {
ffmpeg = ffmpeg_6;
};
wl-screenrec = callPackage ../tools/wayland/wl-screenrec { };
wleave = callPackage ../tools/wayland/wleave { };