hyprpaper/nix/default.nix

86 lines
1.2 KiB
Nix
Raw Normal View History

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