Merge pull request #79325 from eonpatapon/safe

safe: init at 1.5.1
This commit is contained in:
lewo
2020-02-11 16:27:00 +01:00
committed by GitHub
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{ stdenv
, buildGoPackage
, fetchFromGitHub
}:
with builtins;
buildGoPackage rec {
pname = "safe";
version = "1.5.1";
src = fetchFromGitHub {
owner = "starkandwayne";
repo = "safe";
rev = "v${version}";
sha256 = "12gzxrnyl890h79z9yx23m1wwgy8ahm74q4qwi8n2nh7ydq6mn2d";
};
goPackagePath = "github.com/starkandwayne/safe";
preBuild = ''
buildFlagsArray+=("-ldflags" "-X main.Version=${version}")
'';
meta = with stdenv.lib; {
description = "A Vault CLI";
homepage = "https://github.com/starkandwayne/safe";
license = licenses.mit;
maintainers = with maintainers; [ eonpatapon ];
};
}