Skip to content

Commit

Permalink
addpkg: kes
Browse files Browse the repository at this point in the history
  • Loading branch information
A1ca7raz committed Jan 9, 2024
1 parent 71105f6 commit 1c96da5
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 2 deletions.
4 changes: 4 additions & 0 deletions nvfetcher.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ src.archpkg = "fcitx5-pinyin-zhwiki"
src.prefix = "0.2.4."
fetch.url = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/0.2.4/zhwiki-$ver.dict"

[kes]
src.github = "minio/kes"
fetch.github = "minio/kes"

[wemeet]
src.manual = "3.14.0.401"
fetch.url = "https://updatecdn.meeting.qq.com/cos/1b001ef75914a1d6948decb8c2550b47/TencentMeeting_0300000000_3.14.0.401_x86_64_default.publish.deb"
22 changes: 21 additions & 1 deletion pkgs/_sources/generated.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"owner": "TDesktop-x64",
"repo": "tdesktop",
"rev": "v1.1.8",
"sha256": "sha256-Nq+G7L8hC10xuozv/fQ+Lb1gsp7mAT3WwDh8pfXwgfU=",
"sha256": "sha256-5DOVB0y1fh3AwPkL4YfmPOUH322VVi6bISaAcOiT6VI=",
"type": "github"
},
"version": "v1.1.8"
Expand Down Expand Up @@ -139,6 +139,26 @@
},
"version": "20231205"
},
"kes": {
"cargoLocks": null,
"date": null,
"extract": null,
"name": "kes",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "minio",
"repo": "kes",
"rev": "2023-11-10T10-44-28Z",
"sha256": "sha256-mv9M+5Qc6ESMa8HL8WV/aaIHMJ8WbY5BXGcmnrluRlI=",
"type": "github"
},
"version": "2023-11-10T10-44-28Z"
},
"wemeet": {
"cargoLocks": null,
"date": null,
Expand Down
13 changes: 12 additions & 1 deletion pkgs/_sources/generated.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
repo = "tdesktop";
rev = "v1.1.8";
fetchSubmodules = true;
sha256 = "sha256-Nq+G7L8hC10xuozv/fQ+Lb1gsp7mAT3WwDh8pfXwgfU=";
sha256 = "sha256-5DOVB0y1fh3AwPkL4YfmPOUH322VVi6bISaAcOiT6VI=";
};
};
applet-window-appmenu = {
Expand Down Expand Up @@ -79,6 +79,17 @@
sha256 = "sha256-crMmSqQ7QgmjgEG8QpvBgQYfvttCUsKYo8gHZGXIZmc=";
};
};
kes = {
pname = "kes";
version = "2023-11-10T10-44-28Z";
src = fetchFromGitHub {
owner = "minio";
repo = "kes";
rev = "2023-11-10T10-44-28Z";
fetchSubmodules = false;
sha256 = "sha256-mv9M+5Qc6ESMa8HL8WV/aaIHMJ8WbY5BXGcmnrluRlI=";
};
};
wemeet = {
pname = "wemeet";
version = "3.14.0.401";
Expand Down
25 changes: 25 additions & 0 deletions pkgs/uncategorized/kes/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
source,
lib,
buildGoModule
}:
buildGoModule {
inherit (source) pname version src;
vendorHash = "sha256-QtZrpqzDoMEydrLV7NIArA8tziogUd+JoIerKMvCHto=";
doCheck = true;

CGO_ENABLED = 0;

tags = [ "kqueue" ];

ldflags = [
"-s"
"-w"
];

meta = with lib; {
description = "Key Managament Server [not just] for Object Storage";
homepage = "https://github.com/minio/kes";
license = licenses.agpl3;
};
}

0 comments on commit 1c96da5

Please sign in to comment.