2022-06-22 13:50:47 +02:00
|
|
|
{ lib, bitwarden-cli, coreutils, jq, keyutils, makeWrapper, rofi, stdenvNoCC }:
|
2021-05-21 23:46:07 +02:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "bw-pass";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = ./bw-pass;
|
|
|
|
|
2023-04-22 13:36:28 +02:00
|
|
|
nativeBuildInputs = [
|
2021-05-21 23:46:07 +02:00
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
2021-08-31 18:59:05 +02:00
|
|
|
dontUnpack = true;
|
|
|
|
|
2022-06-22 13:50:47 +02:00
|
|
|
dontBuild = true;
|
2021-05-21 23:46:07 +02:00
|
|
|
|
|
|
|
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";
|
2023-03-16 21:37:52 +01:00
|
|
|
homepage = "https://git.belanyi.fr/ambroisie/nix-config";
|
2021-05-21 23:46:07 +02:00
|
|
|
license = with licenses; [ mit ];
|
2023-08-04 11:54:23 +02:00
|
|
|
mainProgram = "bw-pass";
|
2021-05-21 23:46:07 +02:00
|
|
|
maintainers = with maintainers; [ ambroisie ];
|
2023-08-04 11:54:10 +02:00
|
|
|
platforms = platforms.linux;
|
2021-05-21 23:46:07 +02:00
|
|
|
};
|
|
|
|
}
|