2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, wayland
|
|
|
|
, libinput
|
2023-02-02 18:25:31 +00:00
|
|
|
, yaml-cpp
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "way-displays";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "1.8.1";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alex-courtis";
|
|
|
|
repo = "way-displays";
|
|
|
|
rev = "${version}";
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-rR181sxaddtn3yFtF1exSGPBU0Yp3VBRyucfuxyXI+Q=";
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
wayland
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
wayland
|
2023-02-02 18:25:31 +00:00
|
|
|
yaml-cpp
|
2022-06-16 17:23:12 +00:00
|
|
|
libinput
|
|
|
|
];
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out) PREFIX= PREFIX_ETC= ROOT_ETC=$(out)/etc"];
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/alex-courtis/way-displays";
|
|
|
|
description = "Auto Manage Your Wayland Displays";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ simoneruffini ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|