mirror of
https://git.allpurposem.at/mat/WiggleWobble.git
synced 2025-12-23 13:01:28 +01:00
29 lines
600 B
Nix
29 lines
600 B
Nix
{
|
|
lib,
|
|
gcc13Stdenv,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
hyprland-debug,
|
|
}: let
|
|
version = builtins.readFile ./VERSION;
|
|
in
|
|
gcc13Stdenv.mkDerivation {
|
|
pname = "wigglewobble";
|
|
inherit version;
|
|
src = ./.;
|
|
|
|
nativeBuildInputs =
|
|
hyprland-debug.nativeBuildInputs
|
|
++ [ninja meson pkg-config];
|
|
|
|
buildInputs = [hyprland-debug] ++ hyprland-debug.buildInputs;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.allpurposem.at/mat/WiggleWobble";
|
|
description = "Wobbly windows for hyprland";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|