159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
30 lines
875 B
Nix
30 lines
875 B
Nix
{ lib, stdenv
|
|
, meson, pkg-config, ninja
|
|
, libdrm
|
|
, version
|
|
, src
|
|
, patches
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libliftoff";
|
|
inherit version src patches;
|
|
|
|
nativeBuildInputs = [ meson pkg-config ninja ];
|
|
|
|
buildInputs = [ libdrm ];
|
|
|
|
meta = {
|
|
description = "Lightweight KMS plane library";
|
|
longDescription = ''
|
|
libliftoff eases the use of KMS planes from userspace without standing in
|
|
your way. Users create "virtual planes" called layers, set KMS properties
|
|
on them, and libliftoff will pick planes for these layers if possible.
|
|
'';
|
|
inherit (finalAttrs.src.meta) homepage;
|
|
changelog = "https://gitlab.freedesktop.org/emersion/libliftoff/-/tags/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ primeos Scrumplex ];
|
|
};
|
|
})
|