46 lines
933 B
Nix
46 lines
933 B
Nix
{ lib, bitwarden-cli, coreutils, jq, keyutils, makeWrapper, rofi, shellcheck, stdenvNoCC }:
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "bw-pass";
|
|
version = "0.1.0";
|
|
|
|
src = ./bw-pass;
|
|
|
|
buildInputs = [
|
|
makeWrapper
|
|
shellcheck
|
|
];
|
|
|
|
dontUnpack = true;
|
|
|
|
buildPhase = ''
|
|
shellcheck $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp $src $out/bin/${pname}
|
|
chmod a+x $out/bin/${pname}
|
|
'';
|
|
|
|
wrapperPath = lib.makeBinPath [
|
|
bitwarden-cli
|
|
coreutils
|
|
jq
|
|
keyutils
|
|
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 bitwarden";
|
|
homepage = "https://gitea.belanyi.fr/ambroisie/nix-config";
|
|
license = with licenses; [ mit ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|