hyprpaper/nix/default.nix

90 lines
1.3 KiB
Nix
Raw 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,
hyprutils,
hyprwayland-scanner,
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,
xorg,
2024-05-05 14:04:53 +02:00
commit,
2022-08-23 19:58:33 +02:00
debug ? false,
version ? "git",
}:
stdenv.mkDerivation {
pname = "hyprpaper" + lib.optionalString debug "-debug";
inherit version;
2022-08-23 19:58:33 +02:00
src = ../.;
2024-05-05 14:04:53 +02:00
prePatch = ''
substituteInPlace src/main.cpp \
--replace GIT_COMMIT_HASH '"${commit}"'
'';
2024-09-01 15:58:33 +02:00
depsBuildBuild = [
pkg-config
];
cmakeBuildType =
if debug
then "Debug"
else "Release";
2022-08-23 19:58:33 +02:00
nativeBuildInputs = [
cmake
hyprwayland-scanner
2022-08-23 19:58:33 +02:00
pkg-config
wayland-scanner
2022-08-23 19:58:33 +02:00
];
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
hyprutils
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
xorg.libXdmcp
util-linux
2022-08-23 19:58:33 +02:00
];
meta = with lib; {
description = "A blazing fast wayland wallpaper utility with IPC controls";
homepage = "https://github.com/hyprwm/hyprpaper";
2022-08-23 19:58:33 +02:00
license = licenses.bsd3;
mainProgram = "hyprpaper";
platforms = platforms.linux;
2022-08-23 19:58:33 +02:00
};
}