3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/browserpass/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

# This file was generated by https://github.com/kamilchm/go2nix v1.2.0
2017-06-13 00:03:02 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
2017-04-11 16:32:33 +01:00
name = "browserpass-${version}";
2017-08-11 09:32:17 +01:00
version = "1.0.6";
goPackagePath = "github.com/dannyvankooten/browserpass";
2017-06-13 00:03:02 +01:00
src = fetchFromGitHub {
repo = "browserpass";
owner = "dannyvankooten";
rev = version;
2017-08-11 09:32:17 +01:00
sha256 = "07wkvwb9klzxnlrm9a07kxzj3skpy0lymc9ijr8ykfbz6l0bpbqy";
};
postInstall = ''
host_file="$bin/bin/browserpass"
mkdir -p "$bin/etc"
sed -e "s!%%replace%%!$host_file!" go/src/${goPackagePath}/chrome/host.json > chrome-host.json
sed -e "s!%%replace%%!$host_file!" go/src/${goPackagePath}/firefox/host.json > firefox-host.json
2017-06-13 00:03:02 +01:00
install chrome-host.json $bin/etc/
2017-04-22 14:13:02 +01:00
install -D firefox-host.json $bin/lib/mozilla/native-messaging-hosts/com.dannyvankooten.browserpass.json
2017-06-13 00:03:02 +01:00
install go/src/${goPackagePath}/chrome/policy.json $bin/etc/chrome-policy.json
'';
2017-06-13 00:03:02 +01:00
meta = with stdenv.lib; {
description = "A Chrome & Firefox extension for zx2c4's pass";
2017-06-13 00:03:02 +01:00
homepage = https://github.com/dannyvankooten/browserpass;
license = licenses.mit;
platforms = with platforms; linux ++ darwin ++ openbsd;
2017-08-11 09:32:17 +01:00
maintainers = with maintainers; [ rvolosatovs ];
};
2017-04-22 14:13:02 +01:00
}