nixpkgs/pkgs/tools/wayland/waynergy/default.nix
Artturin 94ce5a875a pkgs/tools/wayland: enable strictDeps
`fd "\.nix" pkgs/tools/wayland | xargs rg "strictDeps" --files-without-match | xargs rg "buildRust|buildGo|buildPyt|buildNim" --files-without-match | xargs vim -p`

checked with Artturin/diffing

removed unnecessary depsBuildBuild in waynergy
2023-03-07 18:13:38 +02:00

46 lines
1.0 KiB
Nix

{ 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.15";
src = fetchFromGitHub {
owner = "r-c-f";
repo = "waynergy";
rev = "v${version}";
hash = "sha256-pk1U3svy9r7O9ivFjBNXsaOmgc+nv2QTuwwHejB7B4Q=";
};
strictDeps = true;
nativeBuildInputs = [ pkg-config meson ninja wayland-scanner ];
buildInputs = [ libdrm wayland wayland-protocols wl-clipboard libxkbcommon libressl ];
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 ];
};
}