nixpkgs/pkgs/tools/security/browserpass/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

2018-03-31 07:19:26 +02:00
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchFromGitHub, gnupg }:
buildGoPackage rec {
2017-04-11 17:32:33 +02:00
name = "browserpass-${version}";
2018-03-31 07:19:26 +02:00
version = "2.0.18";
goPackagePath = "github.com/dannyvankooten/browserpass";
2017-11-05 14:38:03 +01:00
goDeps = ./deps.nix;
2017-06-13 01:03:02 +02:00
src = fetchFromGitHub {
repo = "browserpass";
owner = "dannyvankooten";
rev = version;
2018-03-31 07:19:26 +02:00
sha256 = "0wszjpxfa0krr2zdx7a33vl1r86k74dpy5c940r6ww1zbgqzcibg";
};
postPatch = ''
substituteInPlace browserpass.go \
--replace /usr/local/bin/gpg ${gnupg}/bin/gpg
'';
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 01:03:02 +02:00
install chrome-host.json $bin/etc/
2017-04-22 15:13:02 +02:00
install -D firefox-host.json $bin/lib/mozilla/native-messaging-hosts/com.dannyvankooten.browserpass.json
2017-06-13 01:03:02 +02:00
install go/src/${goPackagePath}/chrome/policy.json $bin/etc/chrome-policy.json
'';
2017-06-13 01:03:02 +02:00
meta = with stdenv.lib; {
description = "A Chrome & Firefox extension for zx2c4's pass";
2017-06-13 01:03:02 +02:00
homepage = https://github.com/dannyvankooten/browserpass;
license = licenses.mit;
platforms = with platforms; linux ++ darwin ++ openbsd;
2017-08-11 10:32:17 +02:00
maintainers = with maintainers; [ rvolosatovs ];
};
2017-04-22 15:13:02 +02:00
}