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
40 lines
981 B
Nix
40 lines
981 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
python3,
|
|
unstableGitUpdater,
|
|
rustfmt,
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "windowtolayer";
|
|
version = "0-unstable-2025-01-26";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mstoeckl";
|
|
repo = "windowtolayer";
|
|
rev = "5ddb3a2834c834af4ec412bb2ba2c77431953d51";
|
|
hash = "sha256-PzKx8lkWDJGVj1Azc/vfbSPYV7x5+ZnCGMAAK4o207Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-XuSlbBLWUkPsA0DYC4qemvAGyynkkuznA5FGBKRmNso=";
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
rustfmt
|
|
];
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://gitlab.freedesktop.org/mstoeckl/windowtolayer.git";
|
|
};
|
|
|
|
meta = {
|
|
description = "Display existing Wayland applications as a wallpaper instead";
|
|
homepage = "https://gitlab.freedesktop.org/mstoeckl/windowtolayer";
|
|
mainProgram = "windowtolayer";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ anomalocaris ];
|
|
};
|
|
}
|