Merge pull request #256586 from colemickens/wl-screenrec

authored by Artturi and committed by GitHub 6fbb58f8 bd3cbfa0

+9 -5
+9 -5
pkgs/tools/wayland/wl-screenrec/default.nix
··· 2 , rustPlatform 3 , fetchFromGitHub 4 , pkg-config 5 , wayland 6 - , ffmpeg 7 }: 8 9 rustPlatform.buildRustPackage rec { 10 pname = "wl-screenrec"; 11 - version = "unstable-2023-05-31"; 12 13 src = fetchFromGitHub { 14 owner = "russelltg"; 15 repo = pname; 16 - rev = "fc918f7898900c1882c6f64c96ed2de8cb9a6300"; 17 - hash = "sha256-P/JELiw0qGcwLFgNPccN/uetNy8CNCJdlCLhgq0h4sc="; 18 }; 19 20 - cargoHash = "sha256-r9zmAiLiAntHcb5W/WKmKbVP9c9+15ElIWtHkks0wig="; 21 22 nativeBuildInputs = [ 23 pkg-config ··· 26 27 buildInputs = [ 28 wayland 29 ffmpeg 30 ]; 31 32 meta = with lib; { 33 description = "High performance wlroots screen recording, featuring hardware encoding";
··· 2 , rustPlatform 3 , fetchFromGitHub 4 , pkg-config 5 + , libdrm 6 + , ffmpeg 7 , wayland 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "wl-screenrec"; 12 + version = "unstable-2023-09-17"; 13 14 src = fetchFromGitHub { 15 owner = "russelltg"; 16 repo = pname; 17 + rev = "a36c5923009b44f2131196d8a3a234948f8e0102"; 18 + hash = "sha256-V29eB9vozVKIBq8dO7zgA4nirsh1eDBjJN+rwVkeDLE="; 19 }; 20 21 + cargoHash = "sha256-uUfEweLWn/NdqgY8O7Ld+YnGPKQV1tpJi/Gd4MZB4xI="; 22 23 nativeBuildInputs = [ 24 pkg-config ··· 27 28 buildInputs = [ 29 wayland 30 + libdrm 31 ffmpeg 32 ]; 33 + 34 + doCheck = false; # tests use host compositor, etc 35 36 meta = with lib; { 37 description = "High performance wlroots screen recording, featuring hardware encoding";