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
55 lines
913 B
Nix
55 lines
913 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromSourcehut,
|
|
meson,
|
|
ninja,
|
|
cmake,
|
|
pkg-config,
|
|
wayland-scanner,
|
|
wayland-protocols,
|
|
wayland,
|
|
cairo,
|
|
scdoc,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wlclock";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~leon_plickat";
|
|
repo = "wlclock";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-aHA4kXHYH+KvAJSep5X3DqsiK6WFpXr3rGQl/KNiUcY=";
|
|
};
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
cmake
|
|
pkg-config
|
|
scdoc
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
wayland-protocols
|
|
wayland
|
|
cairo
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Digital analog clock for Wayland desktops";
|
|
homepage = "https://git.sr.ht/~leon_plickat/wlclock";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ nomisiv ];
|
|
platforms = with platforms; linux;
|
|
mainProgram = "wlclock";
|
|
};
|
|
}
|