mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
44 lines
851 B
Nix
44 lines
851 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;
|
|
};
|
|
}
|