vault-bin: nixfmt

This commit is contained in:
techknowlogick
2024-09-25 22:23:11 -04:00
parent 2460ec66bb
commit b99a01b711
+23 -4
View File
@@ -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"
];
};
}