pkgs: add rbw-pass

This is honestly almost overkill, as the script doesn't really have any
logic in it, but it's good to have a common base with the bitwarden-cli
one.
This commit is contained in:
Bruno BELANYI 2023-07-23 18:44:08 +01:00
parent 25143be03d
commit 92b26e9d54
3 changed files with 85 additions and 0 deletions

40
pkgs/rbw-pass/default.nix Normal file
View file

@ -0,0 +1,40 @@
{ lib, coreutils, makeWrapper, rbw, rofi, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "rbw-pass";
version = "0.1.0";
src = ./rbw-pass;
nativeBuildInputs = [
makeWrapper
];
dontUnpack = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/${pname}
chmod a+x $out/bin/${pname}
'';
wrapperPath = lib.makeBinPath [
rbw
coreutils
rofi
];
fixupPhase = ''
patchShebangs $out/bin/${pname}
wrapProgram $out/bin/${pname} --prefix PATH : "${wrapperPath}"
'';
meta = with lib; {
description = "A simple script to query a password from rbw";
homepage = "https://git.belanyi.fr/ambroisie/nix-config";
license = with licenses; [ mit ];
platforms = platforms.linux;
maintainers = with maintainers; [ ambroisie ];
};
}