nixpkgs/pkgs/development/libraries/libseat/default.nix
Rouven Czerwinski 3a93da0a58 libseat: init at 0.5.0
Wlroots will require libseat in the future, add the library to nixpkgs
in preparation.
2021-03-17 05:48:33 +01:00

38 lines
819 B
Nix

{ fetchFromSourcehut
, lib
, meson
, ninja
, pkg-config
, stdenv
, systemd
}:
stdenv.mkDerivation rec {
pname = "libseat";
version = "0.5.0";
src = fetchFromSourcehut {
owner = "~kennylevinsen";
repo = "seatd";
rev = version;
sha256 = "sha256-JwlJLHkRgSRqfQEhXbzuFTmhxfbwKVdLICPbTDbC9M0=";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [
systemd
];
mesonFlags = [ "-Dserver=disabled" "-Dseatd=disabled" "-Dlogind=enabled"];
meta = with lib; {
description = "A universal seat management library";
changelog = "https://git.sr.ht/~kennylevinsen/seatd/refs/${version}";
homepage = "https://sr.ht/~kennylevinsen/seatd/";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ emantor ];
};
}