about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/wayland/wdomirror/default.nix
blob: 8796b2036dd5dbb92a68fbb06bc6b1780f5ad479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wayland
, wayland-protocols
, fetchpatch
, wayland-scanner
}:

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
    (fetchpatch {
      url = "https://github.com/progandy/wdomirror/commit/142632208e9ea2b4a4ebd784532efdb8cad7b87c.patch";
      hash = "sha256-MG71IEwRAjjacAkRoB7Tn45+FbY7LAqTDkVJkoWuQUU=";
    })
  ];

  strictDeps = true;
  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];

  buildInputs = [ wayland wayland-protocols ];

  installPhase = ''
    runHook preInstall
    install -m755 -D wdomirror $out/bin/wdomirror
    runHook postInstall
  '';

  postPatch = ''
    substituteInPlace meson.build \
      --replace "werror=true" "werror=false"
  '';

  meta = with lib; {
    description = "Mirrors an output of a wlroots compositor to a window";
    homepage = "https://github.com/progandy/wdomirror";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jpas ];
    mainProgram = "wdomirror";
  };
}