vault-bin: nixfmt
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
{ lib, stdenv, fetchzip }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchzip,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vault-bin";
|
||||
@@ -25,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
in
|
||||
fetchzip {
|
||||
url = "https://releases.hashicorp.com/vault/${version}/vault_${version}_${suffix}.zip";
|
||||
stripRoot=false;
|
||||
stripRoot = false;
|
||||
inherit hash;
|
||||
};
|
||||
|
||||
@@ -57,8 +61,23 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://www.vaultproject.io";
|
||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||
license = licenses.bsl11;
|
||||
maintainers = with maintainers; teams.serokell.members ++ [ offline psyanticy Chili-Man techknowlogick mkaito ];
|
||||
maintainers =
|
||||
with maintainers;
|
||||
teams.serokell.members
|
||||
++ [
|
||||
offline
|
||||
psyanticy
|
||||
Chili-Man
|
||||
techknowlogick
|
||||
mkaito
|
||||
];
|
||||
mainProgram = "vault";
|
||||
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" ];
|
||||
platforms = [
|
||||
"x86_64-linux"
|
||||
"i686-linux"
|
||||
"x86_64-darwin"
|
||||
"aarch64-darwin"
|
||||
"aarch64-linux"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user