nixpkgs/pkgs/applications/misc/wbg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.3 KiB
Nix
Raw Normal View History

2020-08-25 01:01:17 +00:00
{ stdenv
, lib
, fetchFromGitea
, pkg-config
2020-08-25 01:01:17 +00:00
, meson
, ninja
, pixman
, tllist
, wayland
, wayland-scanner
2020-08-25 01:01:17 +00:00
, wayland-protocols
, enablePNG ? true
, enableJPEG ? true
2023-05-13 22:22:18 +00:00
, enableWebp ? true
# Optional dependencies
, libpng
, libjpeg
2023-05-13 22:22:18 +00:00
, libwebp
2020-08-25 01:01:17 +00:00
}:
stdenv.mkDerivation rec {
pname = "wbg";
2023-05-13 22:22:18 +00:00
version = "1.1.0";
2020-08-25 01:01:17 +00:00
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "wbg";
rev = version;
2023-05-13 22:22:18 +00:00
sha256 = "sha256-JJIIqSc0qHgjtpGKai8p6vihXg16unsO7vW91pioAmc=";
2020-08-25 01:01:17 +00:00
};
nativeBuildInputs = [
pkg-config
meson
ninja
wayland-scanner
];
2020-08-25 01:01:17 +00:00
buildInputs = [
pixman
tllist
wayland
wayland-protocols
] ++ lib.optional enablePNG libpng
2023-05-13 22:22:18 +00:00
++ lib.optional enableJPEG libjpeg
++ lib.optional enableWebp libwebp;
mesonBuildType = "release";
mesonFlags = [
2022-12-07 21:44:21 +00:00
(lib.mesonEnable "png" enablePNG)
(lib.mesonEnable "jpeg" enableJPEG)
2023-05-13 22:22:18 +00:00
(lib.mesonEnable "webp" enableWebp)
2020-08-25 01:01:17 +00:00
];
meta = with lib; {
description = "Wallpaper application for Wayland compositors";
homepage = "https://codeberg.org/dnkl/wbg";
changelog = "https://codeberg.org/dnkl/wbg/releases/tag/${version}";
2020-08-25 01:01:17 +00:00
license = licenses.isc;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; linux;
2024-02-11 02:19:15 +00:00
mainProgram = "wbg";
2020-08-25 01:01:17 +00:00
};
}