hyprpaper/nix/default.nix

91 lines
1.3 KiB
Nix
Raw Normal View History

2022-08-23 19:58:33 +02:00
{
lib,
stdenv,
pkg-config,
cmake,
ninja,
cairo,
file,
2022-08-23 19:58:33 +02:00
fribidi,
libdatrie,
2023-12-18 00:50:59 +01:00
libGL,
2022-08-23 19:58:33 +02:00
libjpeg,
libselinux,
libsepol,
libthai,
pango,
pcre,
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;
src = ../.;
nativeBuildInputs = [
cmake
ninja
pkg-config
];
buildInputs = [
cairo
file
2022-08-23 19:58:33 +02:00
fribidi
libdatrie
2023-12-18 00:50:59 +01:00
libGL
2022-08-23 19:58:33 +02:00
libjpeg
libselinux
libsepol
libthai
pango
pcre
wayland
wayland-protocols
wayland-scanner
libXdmcp
util-linux
2022-08-23 19:58:33 +02:00
];
configurePhase = ''
runHook preConfigure
make protocols
runHook postConfigure
'';
buildPhase = ''
runHook preBuild
make release
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,share/licenses}
install -Dm755 build/hyprpaper -t $out/bin
install -Dm644 LICENSE -t $out/share/licenses/hyprpaper
runHook postInstall
'';
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";
};
}