c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
30 lines
943 B
Nix
30 lines
943 B
Nix
{ 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";
|
|
};
|
|
}
|