hyprpaper/nix/default.nix

76 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2022-08-23 19:58:33 +02:00
{
lib,
stdenv,
pkg-config,
cmake,
cairo,
2024-01-02 22:19:42 +01:00
expat,
file,
2022-08-23 19:58:33 +02:00
fribidi,
2024-01-01 14:22:43 +01:00
hyprlang,
2022-08-23 19:58:33 +02:00
libdatrie,
2023-12-18 00:50:59 +01:00
libGL,
2022-08-23 19:58:33 +02:00
libjpeg,
libselinux,
libsepol,
libthai,
libwebp,
2022-08-23 19:58:33 +02:00
pango,
pcre,
2024-01-02 22:19:42 +01:00
pcre2,
util-linux,
2022-08-23 19:58:33 +02:00
wayland,
wayland-protocols,
wayland-scanner,
libXdmcp,
debug ? false,
version ? "git",
}:
stdenv.mkDerivation {
pname = "hyprpaper" + lib.optionalString debug "-debug";
inherit version;
2022-08-23 19:58:33 +02:00
src = ../.;
cmakeBuildType =
if debug
then "Debug"
else "Release";
2022-08-23 19:58:33 +02:00
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
cairo
2024-01-02 22:19:42 +01:00
expat
file
2022-08-23 19:58:33 +02:00
fribidi
2024-01-01 14:22:43 +01:00
hyprlang
2022-08-23 19:58:33 +02:00
libdatrie
2023-12-18 00:50:59 +01:00
libGL
2022-08-23 19:58:33 +02:00
libjpeg
libselinux
libsepol
libthai
libwebp
2022-08-23 19:58:33 +02:00
pango
pcre
2024-01-02 22:19:42 +01:00
pcre2
2022-08-23 19:58:33 +02:00
wayland
wayland-protocols
wayland-scanner
libXdmcp
util-linux
2022-08-23 19:58:33 +02:00
];
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprpaper";
description = "A blazing fast wayland wallpaper utility with IPC controls";
license = licenses.bsd3;
platforms = platforms.linux;
mainProgram = "hyprpaper";
};
}