diff --git a/nvfetcher.toml b/nvfetcher.toml index f48e7f6..38fff90 100644 --- a/nvfetcher.toml +++ b/nvfetcher.toml @@ -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" diff --git a/pkgs/_sources/generated.json b/pkgs/_sources/generated.json index acb9908..c05f6fc 100644 --- a/pkgs/_sources/generated.json +++ b/pkgs/_sources/generated.json @@ -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" @@ -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, diff --git a/pkgs/_sources/generated.nix b/pkgs/_sources/generated.nix index dd60ce5..d9de4c7 100644 --- a/pkgs/_sources/generated.nix +++ b/pkgs/_sources/generated.nix @@ -9,7 +9,7 @@ repo = "tdesktop"; rev = "v1.1.8"; fetchSubmodules = true; - sha256 = "sha256-Nq+G7L8hC10xuozv/fQ+Lb1gsp7mAT3WwDh8pfXwgfU="; + sha256 = "sha256-5DOVB0y1fh3AwPkL4YfmPOUH322VVi6bISaAcOiT6VI="; }; }; applet-window-appmenu = { @@ -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"; diff --git a/pkgs/uncategorized/kes/default.nix b/pkgs/uncategorized/kes/default.nix new file mode 100644 index 0000000..ef84ec2 --- /dev/null +++ b/pkgs/uncategorized/kes/default.nix @@ -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; + }; +}