rofi-rbw: add previously implicit dependency to rbw

This commit is contained in:
Philipp Middendorf 2023-04-29 10:54:21 +02:00
parent e776b54be1
commit 75ed5ecfd6

View file

@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools, poetry-core }:
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools, poetry-core, rbw }:
buildPythonApplication rec {
pname = "rofi-rbw";
@ -21,6 +21,10 @@ buildPythonApplication rec {
pythonImportsCheck = [ "rofi_rbw" ];
preFixup = ''
makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ rbw ]})
'';
meta = with lib; {
description = "Rofi frontend for Bitwarden";
homepage = "https://github.com/fdw/rofi-rbw";