python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libliftoff / default.nix
blobfa0bc6d3d999a9fd0260be7efec70995a9d05964
1 { lib, stdenv, fetchFromGitLab
2 , meson, pkg-config, ninja
3 , libdrm
4 }:
6 stdenv.mkDerivation rec {
7   pname = "libliftoff";
8   version = "0.3.0";
10   src = fetchFromGitLab {
11     domain = "gitlab.freedesktop.org";
12     owner = "emersion";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-MbXDUkAA9gY6Qb6Ok33MNuqIfb4bPIEHd1IVH/UmH10=";
16   };
18   nativeBuildInputs = [ meson pkg-config ninja ];
20   buildInputs = [ libdrm ];
22   meta = with lib; {
23     description = "A lightweight KMS plane library";
24     longDescription = ''
25       libliftoff eases the use of KMS planes from userspace without standing in
26       your way. Users create "virtual planes" called layers, set KMS properties
27       on them, and libliftoff will pick planes for these layers if possible.
28     '';
29     inherit (src.meta) homepage;
30     changelog = "https://github.com/emersion/libliftoff/releases/tag/v${version}";
31     license     = licenses.mit;
32     platforms   = platforms.linux;
33     maintainers = with maintainers; [ primeos ];
34   };