summary refs log tree commit diff
path: root/pkgs/tools/security/passff-host
diff options
context:
space:
mode:
authorNadrieril <nadrieril@gmail.com>2018-07-04 20:10:21 +0100
committerNadrieril <nadrieril@gmail.com>2018-07-09 21:52:54 +0100
commitceb9110aad9479e012eb5a04904ec9203f22672e (patch)
tree1744796a5d8170e3b5042a93a5c41a3d549fd116 /pkgs/tools/security/passff-host
parent14a9ca27e69e33ac8ffb708de08883f8079f954a (diff)
downloadnixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar.gz
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar.bz2
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar.lz
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar.xz
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.tar.zst
nixpkgs-ceb9110aad9479e012eb5a04904ec9203f22672e.zip
passff-host: init at 1.0.2
Diffstat (limited to 'pkgs/tools/security/passff-host')
-rw-r--r--pkgs/tools/security/passff-host/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/security/passff-host/default.nix b/pkgs/tools/security/passff-host/default.nix
new file mode 100644
index 00000000000..1bb621eab36
--- /dev/null
+++ b/pkgs/tools/security/passff-host/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, python3, pass }:
+
+stdenv.mkDerivation rec {
+  name = "passff-host-${version}";
+  version = "1.0.2";
+
+  src = fetchFromGitHub {
+    owner = "passff";
+    repo = "passff-host";
+    rev = version;
+    sha256 = "1zks34rg9i8vphjrj1h80y5rijadx33z911qxa7pslf7ahmjqdv3";
+  };
+
+  buildInputs = [ python3 ];
+
+  patchPhase = ''
+    sed -i 's#COMMAND      = "pass"#COMMAND = "${pass}/bin/pass"#' src/passff.py
+  '';
+
+  preBuild = "cd src";
+  postBuild = "cd ..";
+
+  installPhase = ''
+    install -D bin/testing/passff.py $out/share/passff-host/passff.py
+    cp bin/testing/passff.json $out/share/passff-host/passff.json
+    substituteInPlace $out/share/passff-host/passff.json \
+      --replace PLACEHOLDER $out/share/passff-host/passff.py
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Host app for the WebExtension PassFF";
+    homepage = https://github.com/passff/passff-host;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ nadrieril ];
+  };
+}