summary refs log tree commit diff
path: root/pkgs/tools/graphics/wdisplays/default.nix
blob: b05aa13ea601086c2a22ab83a44bc267540f29cf (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
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, gtk3, libepoxy, wayland, wrapGAppsHook }:

stdenv.mkDerivation rec {
  pname = "wdisplays";
  version = "unstable-2021-04-03";

  nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ];

  buildInputs = [ gtk3 libepoxy wayland ];

  src = fetchFromGitHub {
    owner = "luispabon";
    repo = "wdisplays";
    rev = "7f2eac0d2aa81b5f495da7950fd5a94683f7868e";
    sha256 = "sha256-cOF3+T34zPro58maWUouGG+vlLm2C5NfcH7PZhSvApE=";
  };

  patchPhase = ''
    substituteInPlace ./resources/wdisplays.desktop.in --replace "@app_id@" "wdisplays"
  '';

  meta = with lib; {
    description = "A graphical application for configuring displays in Wayland compositors";
    homepage = "https://github.com/luispabon/wdisplays";
    maintainers = with maintainers; [ lheckemann ma27 ];
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    mainProgram = "wdisplays";
  };
}