nixpkgs/pkgs/tools/security/passff-host/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, pass }:
2018-07-04 21:10:21 +02:00
stdenv.mkDerivation rec {
pname = "passff-host";
2021-12-08 00:38:44 +01:00
version = "1.2.3";
2018-07-04 21:10:21 +02:00
src = fetchFromGitHub {
owner = "passff";
repo = pname;
2018-07-04 21:10:21 +02:00
rev = version;
2021-12-08 00:38:44 +01:00
sha256 = "sha256-1JPToJF/ruu69TEZAAvV3Zl0qcTpEyMb2qQDAWWgKNw=";
2018-07-04 21:10:21 +02:00
};
buildInputs = [ python3 ];
makeFlags = [ "VERSION=${version}" ];
2018-07-04 21:10:21 +02:00
patchPhase = ''
2019-05-20 08:34:33 +02:00
sed -i 's#COMMAND = "pass"#COMMAND = "${pass}/bin/pass"#' src/passff.py
2018-07-04 21:10:21 +02:00
'';
installPhase = ''
substituteInPlace bin/${version}/passff.json \
2018-07-04 21:10:21 +02:00
--replace PLACEHOLDER $out/share/passff-host/passff.py
install -Dt $out/share/passff-host \
bin/${version}/passff.{py,json}
nativeMessagingPaths=(
/lib/mozilla/native-messaging-hosts
/etc/opt/chrome/native-messaging-hosts
/etc/chromium/native-messaging-hosts
/etc/vivaldi/native-messaging-hosts
2021-12-08 00:38:44 +01:00
/lib/librewolf/native-messaging-hosts
)
for manifestDir in "''${nativeMessagingPaths[@]}"; do
install -d $out$manifestDir
ln -s $out/share/passff-host/passff.json $out$manifestDir/
done
2018-07-04 21:10:21 +02:00
'';
meta = with lib; {
2018-07-04 21:10:21 +02:00
description = "Host app for the WebExtension PassFF";
homepage = "https://github.com/passff/passff-host";
2018-07-04 21:10:21 +02:00
license = licenses.gpl2;
2021-12-08 00:38:44 +01:00
maintainers = with maintainers; [ ];
2018-07-04 21:10:21 +02:00
};
}