Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
889 B
Nix
42 lines
889 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
cmake,
|
|
pkg-config,
|
|
wayland-scanner,
|
|
wayland,
|
|
libGL,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "shaderbg";
|
|
version = "0-unstable-2024-11-26";
|
|
src = fetchFromGitHub {
|
|
owner = "Mr-Pine";
|
|
repo = "shaderbg";
|
|
rev = "cf9b135069550f8d7c8411d8a53285882034331c";
|
|
hash = "sha256-J+fRzSTEMlT9oLVZqbstrDxuKiJTAHNTLxB8IPgdom0=";
|
|
};
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
cmake
|
|
pkg-config
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
wayland
|
|
libGL
|
|
];
|
|
meta = {
|
|
description = "Shader-based live wallpaper program for compositors that support wlr-layer-shell (Sway and others)";
|
|
homepage = "https://github.com/Mr-Pine/shaderbg";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ bokicoder ];
|
|
mainProgram = "shaderbg";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|