kanshi: 1.2.0 -> 1.3.0

This commit is contained in:
Daniel Barter 2022-09-27 16:54:13 -07:00
parent f28b6e5468
commit 29671d2d11

View File

@ -1,23 +1,24 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchFromSourcehut
, meson
, ninja
, pkg-config
, scdoc
, wayland
, wayland-scanner
, libvarlink
}:
stdenv.mkDerivation rec {
pname = "kanshi";
version = "1.2.0";
version = "1.3.0";
src = fetchFromGitHub {
owner = "emersion";
src = fetchFromSourcehut {
owner = "~emersion";
repo = "kanshi";
rev = "v${version}";
sha256 = "sha256-RVMeS2qEjTYK6r7IwMeFSqfRpKR8di2eQXhewfhTnYI=";
sha256 = "kqTRJhLd9vLGAPO5U5cWeZgzWzne+0Cr4TIS0ciZSGk=";
};
strictDeps = true;
@ -25,10 +26,10 @@ stdenv.mkDerivation rec {
pkg-config
];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
buildInputs = [ wayland ];
buildInputs = [ wayland libvarlink ];
meta = with lib; {
homepage = "https://github.com/emersion/kanshi";
homepage = "https://sr.ht/~emersion/kanshi";
description = "Dynamic display configuration tool";
longDescription = ''
kanshi allows you to define output profiles that are automatically enabled
@ -39,7 +40,7 @@ stdenv.mkDerivation rec {
wlr-output-management protocol.
'';
license = licenses.mit;
maintainers = with maintainers; [ balsoft ];
maintainers = with maintainers; [ balsoft danielbarter ];
platforms = platforms.linux;
};
}