11 stdenv.mkDerivation rec {
12 pname = "rofi-file-browser-extended";
15 src = fetchFromGitHub {
16 owner = "marvinkreis";
19 hash = "sha256-UEFv0skFzWhgFkmz1h8uV1ygW977zNq1Dw8VAawqUgw=";
20 fetchSubmodules = true;
24 substituteInPlace ./CMakeLists.txt \
25 --replace ' ''${ROFI_PLUGINS_DIR}' " $out/lib/rofi" \
26 --replace "/usr/share/" "$out/share/"
38 ROFI_PLUGINS_DIR = "$out/lib/rofi";
40 dontUseCmakeBuildDir = true;
43 description = "Use rofi to quickly open files";
44 homepage = "https://github.com/marvinkreis/rofi-file-browser-extended";
45 license = licenses.mit;
46 maintainers = with maintainers; [ jluttine ];