41 lines
918 B
Nix
41 lines
918 B
Nix
{
|
|
lib,
|
|
mkHyprlandPlugin,
|
|
hyprland,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
mkHyprlandPlugin hyprland {
|
|
pluginName = "hyprscroller";
|
|
version = "0-unstable-2024-10-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dawsers";
|
|
repo = "hyprscroller";
|
|
rev = "1a907fd38594ec58a8fe5d68be0dcf2f9e76b0f8";
|
|
hash = "sha256-cgwHl2YtqrnS0ThUyycFGYoYozpq7zT9POARrQAoahY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib
|
|
mv hyprscroller.so $out/lib/libhyprscroller.so
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dawsers/hyprscroller";
|
|
description = "Hyprland layout plugin providing a scrolling layout like PaperWM";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|