nixpkgs/pkgs/tools/wayland/waynergy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.0 KiB
Nix
Raw Normal View History

2022-10-17 22:06:07 +00:00
{ lib
, stdenv
, fetchFromGitHub
, meson
, pkg-config
, ninja
, wayland-scanner
, libdrm
, wayland
, wayland-protocols
, wl-clipboard
, libxkbcommon
, cmake
, libressl
}:
stdenv.mkDerivation rec {
pname = "waynergy";
2022-12-07 22:11:03 +00:00
version = "0.0.15";
2022-10-17 22:06:07 +00:00
src = fetchFromGitHub {
owner = "r-c-f";
repo = "waynergy";
rev = "v${version}";
2022-12-07 22:11:03 +00:00
hash = "sha256-pk1U3svy9r7O9ivFjBNXsaOmgc+nv2QTuwwHejB7B4Q=";
2022-10-17 22:06:07 +00:00
};
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson ninja ];
buildInputs = [ libdrm wayland wayland-protocols wl-clipboard libxkbcommon libressl ];
2022-10-17 22:06:07 +00:00
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 ];
};
}