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

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

57 lines
1.3 KiB
Nix
Raw Normal View History

2021-02-25 05:05:08 +00:00
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wayland
, wayland-protocols
2022-05-11 18:20:20 +00:00
, fetchpatch
, wayland-scanner
2021-02-25 05:05:08 +00:00
}:
stdenv.mkDerivation {
pname = "wdomirror";
version = "unstable-2021-01-08";
src = fetchFromGitHub {
owner = "progandy";
repo = "wdomirror";
rev = "e4a4934e6f739909fbf346cbc001c72690b5c906";
sha256 = "1fz0sajhdjqas3l6mpik8w1k15wbv65hgh9r9vdgfqvw5l6cx7jv";
};
patches = [
# https://github.com/progandy/wdomirror/pull/7
2022-05-11 18:20:20 +00:00
(fetchpatch {
url = "https://github.com/progandy/wdomirror/commit/142632208e9ea2b4a4ebd784532efdb8cad7b87c.patch";
2022-05-11 18:20:20 +00:00
hash = "sha256-MG71IEwRAjjacAkRoB7Tn45+FbY7LAqTDkVJkoWuQUU=";
})
];
2022-05-11 18:20:20 +00:00
strictDeps = true;
nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
buildInputs = [ wayland wayland-protocols ];
2021-02-25 05:05:08 +00:00
installPhase = ''
runHook preInstall
install -m755 -D wdomirror $out/bin/wdomirror
runHook postInstall
'';
2022-09-10 13:18:21 +00:00
postPatch = ''
substituteInPlace meson.build \
--replace "werror=true" "werror=false"
'';
2021-02-25 05:05:08 +00:00
meta = with lib; {
description = "Mirrors an output of a wlroots compositor to a window";
2022-09-10 13:18:21 +00:00
homepage = "https://github.com/progandy/wdomirror";
2021-02-25 05:05:08 +00:00
license = licenses.mit;
platforms = platforms.linux;
2021-02-25 05:05:08 +00:00
maintainers = with maintainers; [ jpas ];
2023-11-27 01:17:53 +00:00
mainProgram = "wdomirror";
2021-02-25 05:05:08 +00:00
};
}