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

48 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, pass }:
2018-07-04 19:10:21 +00:00
stdenv.mkDerivation rec {
pname = "passff-host";
2019-05-20 06:34:33 +00:00
version = "1.2.1";
2018-07-04 19:10:21 +00:00
src = fetchFromGitHub {
owner = "passff";
repo = pname;
2018-07-04 19:10:21 +00:00
rev = version;
2019-05-20 06:34:33 +00:00
sha256 = "0ydfwvhgnw5c3ydx2gn5d7ys9g7cxlck57vfddpv6ix890v21451";
2018-07-04 19:10:21 +00:00
};
buildInputs = [ python3 ];
makeFlags = [ "VERSION=${version}" ];
2018-07-04 19:10:21 +00:00
patchPhase = ''
2019-05-20 06:34:33 +00:00
sed -i 's#COMMAND = "pass"#COMMAND = "${pass}/bin/pass"#' src/passff.py
2018-07-04 19:10:21 +00:00
'';
installPhase = ''
substituteInPlace bin/${version}/passff.json \
2018-07-04 19:10:21 +00: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
)
for manifestDir in "''${nativeMessagingPaths[@]}"; do
install -d $out$manifestDir
ln -s $out/share/passff-host/passff.json $out$manifestDir/
done
2018-07-04 19:10:21 +00:00
'';
meta = with lib; {
2018-07-04 19:10:21 +00:00
description = "Host app for the WebExtension PassFF";
homepage = "https://github.com/passff/passff-host";
2018-07-04 19:10:21 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ nadrieril ];
};
}