summary refs log tree commit diff
path: root/pkgs/tools/security/vault/default.nix
blob: 8470441f530b6e952dc09bade56ca1e2f297ca8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGo16Package rec {
  name = "vault-${version}";
  version = "0.5.2";
  rev = "v${version}";

  goPackagePath = "github.com/hashicorp/vault";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/hashicorp/vault";
    sha256 = "085rk5i480wdlkn2p14yxi8zgsc11595nkkda1i77c4vjkllbkdy";
  };
}