Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
rofi,
gtk3,
}:
stdenv.mkDerivation rec {
pname = "rofi-file-browser-extended";
version = "1.3.1";
src = fetchFromGitHub {
owner = "marvinkreis";
repo = "rofi-file-browser-extended";
tag = version;
hash = "sha256-UEFv0skFzWhgFkmz1h8uV1ygW977zNq1Dw8VAawqUgw=";
fetchSubmodules = true;
};
patches = [
./fix_incompatible_pointer_type.patch
./fix_build_on_i686.patch
./fix_recent_glib_deprecation_warning.patch
];
prePatch = ''
substituteInPlace ./CMakeLists.txt \
--replace ' ''${ROFI_PLUGINS_DIR}' " $out/lib/rofi" \
--replace "/usr/share/" "$out/share/"
'';
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
rofi
gtk3
];
ROFI_PLUGINS_DIR = "$out/lib/rofi";
dontUseCmakeBuildDir = true;
meta = with lib; {
description = "Use rofi to quickly open files";
homepage = "https://github.com/marvinkreis/rofi-file-browser-extended";
license = licenses.mit;
maintainers = with maintainers; [
bew
jluttine
];
};
}