mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
1aeeaf9b05
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
81 lines
1.3 KiB
Nix
81 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
hwdata,
|
|
hyprutils,
|
|
hyprwayland-scanner,
|
|
libdisplay-info,
|
|
libdrm,
|
|
libffi,
|
|
libGL,
|
|
libinput,
|
|
mesa,
|
|
nix-update-script,
|
|
pixman,
|
|
pkg-config,
|
|
seatd,
|
|
udev,
|
|
wayland,
|
|
wayland-protocols,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "aquamarine";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = "aquamarine";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-UKdFUKA/h6SeiXpQ06BSZkBJKDwFOFaGI3NtiuaDOhg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
hyprwayland-scanner
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
hwdata
|
|
hyprutils
|
|
libdisplay-info
|
|
libdrm
|
|
libffi
|
|
libGL
|
|
libinput
|
|
mesa
|
|
pixman
|
|
seatd
|
|
udev
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
cmakeBuildType = "RelWithDebInfo";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/hyprwm/aquamarine/releases/tag/${finalAttrs.version}";
|
|
description = "A very light linux rendering backend library";
|
|
homepage = "https://github.com/hyprwm/aquamarine";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
fufexan
|
|
johnrtitor
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|