nixpkgs/pkgs/applications/misc/bitwarden-menu/default.nix

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

34 lines
753 B
Nix
Raw Normal View History

2023-01-20 01:12:10 +00:00
{ lib
, buildPythonApplication
, fetchPypi
, pynput
, xdg
}:
buildPythonApplication rec {
pname = "bitwarden-menu";
version = "0.4.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-OC+MHEiUU6bDT2wSSDtu0KnwDwBpbLTBta0xjfuzlOI=";
};
propagatedBuildInputs = [
pynput
xdg
];
doCheck = false;
meta = with lib; {
changelog = "https://github.com/firecat53/bitwarden-menu/releases/tag/v${version}";
description = "Dmenu/Rofi frontend for managing Bitwarden vaults. Uses the Bitwarden CLI tool to interact with the Bitwarden database.";
mainProgram = "bwm";
2023-01-20 01:12:10 +00:00
homepage = "https://github.com/firecat53/bitwarden-menu";
license = licenses.mit;
maintainers = [ ];
2023-01-20 01:12:10 +00:00
};
}