43 lines
942 B
Nix
43 lines
942 B
Nix
|
{ lib
|
||
|
, makeWrapper
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, installShellFiles
|
||
|
, gopass
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "gopass-jsonapi";
|
||
|
version = "1.11.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "gopasspw";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "03xhza7n92xg12z83as9qdvvc0yx1qy6q0c7i4njvng594f9a8x2";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = "0d4fyppsdfzvmjb0qvpnfnw0vl6z256bly7hfb0whk6rldks60wr";
|
||
|
|
||
|
subPackages = [ "." ];
|
||
|
|
||
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||
|
|
||
|
preBuild = ''
|
||
|
buildFlagsArray+=(
|
||
|
"-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}"
|
||
|
)
|
||
|
'';
|
||
|
|
||
|
postFixup = ''
|
||
|
wrapProgram $out/bin/gopass-jsonapi --prefix PATH : "${lib.makeBinPath [ gopass ]}"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Enables communication with gopass via JSON messages";
|
||
|
homepage = "https://www.gopass.pw/";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ maxhbr ];
|
||
|
};
|
||
|
}
|