nixpkgs/pkgs/tools/misc/kanshi/default.nix

34 lines
1.0 KiB
Nix
Raw Normal View History

2020-04-02 09:43:58 +00:00
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, scdoc, wayland }:
2019-08-28 08:44:57 +00:00
stdenv.mkDerivation rec {
pname = "kanshi";
2020-04-02 09:43:58 +00:00
version = "1.1.0";
2019-03-17 21:47:38 +00:00
src = fetchFromGitHub {
owner = "emersion";
repo = "kanshi";
2019-08-28 08:44:57 +00:00
rev = "v${version}";
2020-04-02 09:43:58 +00:00
sha256 = "0nbpgm8qnn7ljsg9vgs35kl8l4rrk542vdcbx8wrn9r909ld3x92";
2019-03-17 21:47:38 +00:00
};
2020-04-02 09:43:58 +00:00
nativeBuildInputs = [ meson ninja pkg-config scdoc ];
2019-08-28 08:44:57 +00:00
buildInputs = [ wayland ];
2019-03-17 21:47:38 +00:00
2019-08-28 08:44:57 +00:00
meta = with stdenv.lib; {
2019-03-17 21:47:38 +00:00
description = "Dynamic display configuration tool";
2019-08-28 08:44:57 +00:00
longDescription = ''
kanshi allows you to define output profiles that are automatically enabled
and disabled on hotplug. For instance, this can be used to turn a laptop's
internal screen off when docked.
kanshi can be used on Wayland compositors supporting the
wlr-output-management protocol.
2019-03-17 21:47:38 +00:00
'';
homepage = "https://github.com/emersion/kanshi";
downloadPage = "https://github.com/emersion/kanshi";
2019-08-28 08:44:57 +00:00
license = licenses.mit;
maintainers = with maintainers; [ balsoft ];
platforms = platforms.linux;
2019-03-17 21:47:38 +00:00
};
}