forked from mirrors/nixpkgs
way-displays: init at 1.5.3
This commit is contained in:
parent
efc86c4ec3
commit
281713495f
47
pkgs/tools/wayland/way-displays/default.nix
Normal file
47
pkgs/tools/wayland/way-displays/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, wayland
|
||||
, libinput
|
||||
, libyamlcpp
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "way-displays";
|
||||
version = "1.5.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alex-courtis";
|
||||
repo = "way-displays";
|
||||
rev = "${version}";
|
||||
sha256 = "sha256-5A0qZRpWw3Deo9cGqGULpQMoPCVh85cWE/wJ5XSbVJk=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace src/cfg.cpp --replace "\"/etc" "\"$out/etc"
|
||||
'';
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
wayland
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
libyamlcpp
|
||||
libinput
|
||||
];
|
||||
|
||||
makeFlags = [ "DESTDIR=$(out) PREFIX= PREFIX_ETC="];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -3133,6 +3133,8 @@ with pkgs;
|
|||
|
||||
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
||||
|
||||
way-displays = callPackage ../tools/wayland/way-displays { };
|
||||
|
||||
wev = callPackage ../tools/wayland/wev { };
|
||||
|
||||
wdomirror = callPackage ../tools/wayland/wdomirror { };
|
||||
|
|
Loading…
Reference in a new issue