waynergy: init at 0.0.13
This commit is contained in:
parent
56da918ec5
commit
b4cce939b6
2 changed files with 47 additions and 0 deletions
45
pkgs/tools/wayland/waynergy/default.nix
Normal file
45
pkgs/tools/wayland/waynergy/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3506,6 +3506,8 @@ with pkgs;
|
||||||
|
|
||||||
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
||||||
|
|
||||||
|
waynergy = callPackage ../tools/wayland/waynergy { };
|
||||||
|
|
||||||
wayout = callPackage ../tools/wayland/wayout { };
|
wayout = callPackage ../tools/wayland/wayout { };
|
||||||
|
|
||||||
way-displays = callPackage ../tools/wayland/way-displays { };
|
way-displays = callPackage ../tools/wayland/way-displays { };
|
||||||
|
|
Loading…
Reference in a new issue