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
49 lines
962 B
Nix
49 lines
962 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
cairo,
|
|
gdk-pixbuf,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "oguri";
|
|
version = "0-unstable-2020-12-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vilhalmer";
|
|
repo = "oguri";
|
|
rev = "6937fee10a9b0ef3ad8f94f606c0e0d9e7dec564";
|
|
sha256 = "sXNvpI/YPDPd2cXQAfRO4ut21gSCXxbo1DpaZmHJDYQ=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
cairo
|
|
gdk-pixbuf
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vilhalmer/oguri/";
|
|
description = "Very nice animated wallpaper daemon for Wayland compositors";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
inherit (wayland.meta) platforms;
|
|
broken = stdenv.hostPlatform.isDarwin; # this should be enfoced by wayland platforms in the future
|
|
};
|
|
}
|