From 56da918ec58499865b38bf3550cd54a9d90bbed9 Mon Sep 17 00:00:00 2001 From: Marcelo Amancio de Lima Santos Date: Mon, 17 Oct 2022 19:05:39 -0300 Subject: [PATCH 1/2] maintainers: add maxhero --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index f2dc80c7281..e9fb74fbc2d 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -8530,6 +8530,12 @@ githubId = 95194; name = "Mauricio Scheffer"; }; + maxhero = { + email = "contact@maxhero.dev"; + github = "themaxhero"; + githubId = 4708337; + name = "Marcelo A. de L. Santos"; + }; max-niederman = { email = "max@maxniederman.com"; github = "max-niederman"; From b4cce939b66baca81661489d7cc0ab2aef8fe190 Mon Sep 17 00:00:00 2001 From: Marcelo Amancio de Lima Santos Date: Mon, 17 Oct 2022 19:06:07 -0300 Subject: [PATCH 2/2] waynergy: init at 0.0.13 --- pkgs/tools/wayland/waynergy/default.nix | 45 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/tools/wayland/waynergy/default.nix diff --git a/pkgs/tools/wayland/waynergy/default.nix b/pkgs/tools/wayland/waynergy/default.nix new file mode 100644 index 00000000000..7208334ea50 --- /dev/null +++ b/pkgs/tools/wayland/waynergy/default.nix @@ -0,0 +1,45 @@ +{ lib +, stdenv +, fetchFromGitHub +, meson +, pkg-config +, ninja +, wayland-scanner +, libdrm +, wayland +, wayland-protocols +, wl-clipboard +, libxkbcommon +, cmake +, libressl +}: +stdenv.mkDerivation rec { + pname = "waynergy"; + version = "0.0.13"; + + src = fetchFromGitHub { + owner = "r-c-f"; + repo = "waynergy"; + rev = "v${version}"; + hash = "sha256-eTY7tktUmoTZO3w9uP1P8cIz0mmFiWm5YFGVAS6JwwE="; + }; + + depsBuildBuild = [ pkg-config ]; + buildInputs = [ libdrm wayland wayland-protocols wl-clipboard libxkbcommon cmake libressl ]; + nativeBuildInputs = [ meson ninja ]; + + postPatch = '' + substituteInPlace waynergy.desktop --replace "Exec=/usr/bin/waynergy" "Exec=$out/bin/waynergy" + ''; + + meta = with lib; { + description = "A synergy client for Wayland compositors"; + longDescription = '' + A synergy client for Wayland compositors + ''; + homepage = "https://github.com/r-c-f/waynergy"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ maxhero pedrohlc ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3a50c5b68e8..4b9db01d762 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3506,6 +3506,8 @@ with pkgs; wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { }; + waynergy = callPackage ../tools/wayland/waynergy { }; + wayout = callPackage ../tools/wayland/wayout { }; way-displays = callPackage ../tools/wayland/way-displays { };