mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
73 lines
1.1 KiB
Nix
73 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, fontconfig
|
|
, icu
|
|
, libdrm
|
|
, libGL
|
|
, libinput
|
|
, libX11
|
|
, libXcursor
|
|
, libxkbcommon
|
|
, mesa
|
|
, pixman
|
|
, seatd
|
|
, srm-cuarzo
|
|
, udev
|
|
, wayland
|
|
, xorgproto
|
|
}:
|
|
stdenv.mkDerivation (self: {
|
|
pname = "louvre";
|
|
version = "2.2.0-1";
|
|
rev = "v${self.version}";
|
|
hash = "sha256-Ds1TTxHFq0Z88djdpAunhtKAipOCTodKIKOh5oxF568=";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit (self) rev hash;
|
|
owner = "CuarzoSoftware";
|
|
repo = "Louvre";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
icu
|
|
libdrm
|
|
libGL
|
|
libinput
|
|
libX11
|
|
libXcursor
|
|
libxkbcommon
|
|
mesa
|
|
pixman
|
|
seatd
|
|
srm-cuarzo
|
|
udev
|
|
wayland
|
|
xorgproto
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
preConfigure = ''
|
|
# The root meson.build file is in src/
|
|
cd src
|
|
'';
|
|
|
|
meta = {
|
|
description = "C++ library for building Wayland compositors";
|
|
homepage = "https://github.com/CuarzoSoftware/Louvre";
|
|
mainProgram = "louvre-views";
|
|
maintainers = [ lib.maintainers.dblsaiko ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|