nixpkgs/pkgs/development/libraries/libliftoff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1013 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab
2021-07-01 12:55:04 +00:00
, meson, pkg-config, ninja
, libdrm
}:
stdenv.mkDerivation rec {
pname = "libliftoff";
version = "0.2.0";
2021-07-01 12:55:04 +00:00
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
2021-07-01 12:55:04 +00:00
owner = "emersion";
repo = pname;
rev = "v${version}";
sha256 = "1ysxm7kg1gwrsn29lw8kngvkxp46g4m2pvbwcvscgvr54ikirn4q";
2021-07-01 12:55:04 +00:00
};
nativeBuildInputs = [ meson pkg-config ninja ];
buildInputs = [ libdrm ];
meta = with lib; {
description = "A 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 (src.meta) homepage;
changelog = "https://github.com/emersion/libliftoff/releases/tag/v${version}";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}