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
45 lines
860 B
Nix
45 lines
860 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
cairo,
|
|
pkg-config,
|
|
rofi-unwrapped,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rofi-blezz";
|
|
version = "2023-03-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davatorium";
|
|
repo = "rofi-blezz";
|
|
rev = "3a00473471e7c56d2c349ad437937107b7d8e961";
|
|
hash = "sha256-hY5UA7nyL6QoOBIZTjEiR0zjZFhkUkRa50r5rVZDnbg=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-Patch-plugindir-to-output.patch
|
|
./0002-Patch-add-cairo.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
rofi-unwrapped
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin for rofi that emulates blezz behaviour";
|
|
homepage = "https://github.com/davatorium/rofi-blezz";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ johnjohnstone ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|