about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-02-10 16:47:28 +0100
committerGitHub <noreply@github.com>2023-02-10 16:47:28 +0100
commit8b103154bc57cf6fd9e09534a10e3bb995437c35 (patch)
treed8dd4b44cb705d112a6da6d652c3dcd4554e6d37 /pkgs/applications/misc
parent4d1f2a29d4d214961f6c413fb4f4f80d02c54d39 (diff)
parent5477de1375d7d746c1efd5cf37c62622df7daa67 (diff)
Merge pull request #215268 from equirosa/rofi-rbw-1.1.0
rofi-rbw: 1.0.1 -> 1.1.0
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/rofi-rbw/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/rofi-rbw/default.nix b/pkgs/applications/misc/rofi-rbw/default.nix
index 28602cf0240e9..d6e820e06fc09 100644
--- a/pkgs/applications/misc/rofi-rbw/default.nix
+++ b/pkgs/applications/misc/rofi-rbw/default.nix
@@ -1,19 +1,20 @@
-{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools }:
+{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools, poetry-core }:
 
 buildPythonApplication rec {
   pname = "rofi-rbw";
-  version = "1.0.1";
+  version = "1.1.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "fdw";
     repo = "rofi-rbw";
     rev = "refs/tags/${version}";
-    hash = "sha256-YDL0pMl3BX59kzjuykn0lQHu2RMvPhsBrlSiqdcZAXs=";
+    hash = "sha256-5K6tofC1bIxxNOQ0jk6NbVoaGGyQImYiUZAaAmkwiTA=";
   };
 
   nativeBuildInputs = [
     setuptools
+    poetry-core
   ];
 
   propagatedBuildInputs = [ configargparse ];
@@ -24,7 +25,7 @@ buildPythonApplication rec {
     description = "Rofi frontend for Bitwarden";
     homepage = "https://github.com/fdw/rofi-rbw";
     license = licenses.mit;
-    maintainers = with maintainers; [ dit7ya ];
+    maintainers = with maintainers; [ equirosa dit7ya ];
     platforms = platforms.linux;
   };
 }