mirror of
https://github.com/hyprwm/aquamarine.git
synced 2024-11-17 04:56:00 +01:00
70 lines
1,013 B
Nix
70 lines
1,013 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
hwdata,
|
|
hyprutils,
|
|
hyprwayland-scanner,
|
|
libdisplay-info,
|
|
libdrm,
|
|
libffi,
|
|
libGL,
|
|
libinput,
|
|
libseat,
|
|
mesa,
|
|
pixman,
|
|
pkg-config,
|
|
udev,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
version ? "git",
|
|
doCheck ? false,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "aquamarine";
|
|
inherit version doCheck;
|
|
src = ../.;
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
hyprwayland-scanner
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
hwdata
|
|
hyprutils
|
|
libdisplay-info
|
|
libdrm
|
|
libffi
|
|
libGL
|
|
libinput
|
|
libseat
|
|
mesa
|
|
pixman
|
|
udev
|
|
wayland
|
|
wayland-protocols
|
|
wayland-scanner
|
|
];
|
|
|
|
outputs = ["out" "dev"];
|
|
|
|
cmakeBuildType = "RelWithDebInfo";
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/hyprwm/aquamarine";
|
|
description = "A very light linux rendering backend library";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|