mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
rofi-file-browser: init at 1.1.1 (#86052)
Co-authored-by: zimbatm <zimbatm@zimbatm.com>
This commit is contained in:
parent
47cc163dfc
commit
9d7f94a3f0
34
pkgs/applications/misc/rofi-file-browser/default.nix
Normal file
34
pkgs/applications/misc/rofi-file-browser/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, rofi, gtk3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rofi-file-browser-extended";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "marvinkreis";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "10wk5sif3bmvsgyk2gdy0qhpv1b37zgzf89n3h0yh7pg195fi2gn";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace ./CMakeLists.txt \
|
||||
--replace ' ''${ROFI_PLUGINS_DIR}' " $out/lib/rofi" \
|
||||
--replace "/usr/share/" "$out/share/"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ rofi gtk3 ];
|
||||
|
||||
ROFI_PLUGINS_DIR = "$out/lib/rofi";
|
||||
|
||||
dontUseCmakeBuildDir = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Use rofi to quickly open files";
|
||||
homepage = "https://github.com/marvinkreis/rofi-file-browser-extended";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
}
|
|
@ -20756,6 +20756,8 @@ in
|
|||
|
||||
rofi-emoji = callPackage ../applications/misc/rofi-emoji { };
|
||||
|
||||
rofi-file-browser = callPackage ../applications/misc/rofi-file-browser { };
|
||||
|
||||
ympd = callPackage ../applications/audio/ympd { };
|
||||
|
||||
nload = callPackage ../applications/networking/nload { };
|
||||
|
|
Loading…
Reference in a new issue