From d330730a59c593c8a82d72f80f4af5764f6db4e3 Mon Sep 17 00:00:00 2001 From: Yifei Sun Date: Sun, 10 Dec 2023 20:03:05 -0500 Subject: [PATCH] xwaylandvideobridge: 0.2 -> 0.3.0 Co-authored-by: Sandro --- .../tools/wayland/xwaylandvideobridge/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/wayland/xwaylandvideobridge/default.nix b/pkgs/tools/wayland/xwaylandvideobridge/default.nix index 83b2186c8ab1..103c92eed5a1 100644 --- a/pkgs/tools/wayland/xwaylandvideobridge/default.nix +++ b/pkgs/tools/wayland/xwaylandvideobridge/default.nix @@ -1,6 +1,6 @@ { lib , stdenv -, fetchFromGitLab +, fetchurl , cmake , extra-cmake-modules , pkg-config @@ -14,14 +14,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "xwaylandvideobridge"; - version = "0.2"; + version = "0.3.0"; - src = fetchFromGitLab { - domain = "invent.kde.org"; - owner = "system"; - repo = "xwaylandvideobridge"; - rev = "v${finalAttrs.version}"; - hash = "sha256-79Z4BH7C85ZF+1Zivs3bTey7IdUnaDKhvZxzL6sDqUs="; + src = fetchurl { + url = "mirror://kde/stable/xwaylandvideobridge/xwaylandvideobridge-${finalAttrs.version}.tar.xz"; + hash = "sha256-+Npuj+DsO9XqeXr4qtj+Haqzb8PHfi02u3RDgyzfz/o="; }; nativeBuildInputs = [ @@ -42,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Utility to allow streaming Wayland windows to X applications"; homepage = "https://invent.kde.org/system/xwaylandvideobridge"; - license = lib.licenses.gpl2Plus; + license = with lib.licenses; [ bsd3 cc0 gpl2Plus ]; maintainers = with lib.maintainers; [ stepbrobd ]; platforms = lib.platforms.linux; mainProgram = "xwaylandvideobridge";