ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
33 lines
753 B
Nix
33 lines
753 B
Nix
{ 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";
|
|
homepage = "https://github.com/firecat53/bitwarden-menu";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|