Unverified Commit 379ecf7d authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #230783 from qbit/coze-0.0.3

parents 918b48e4 5e692f20
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildGoModule  }:

buildGoModule rec {
  pname = "coze";
  version = "0.0.3";

  src = fetchFromGitHub {
    owner = "Cyphrme";
    repo = "Coze_cli";
    rev = "v${version}";
    hash = "sha256-/Cznx5Q0a9vVrC4oAoBmAkejT1505AQzzCW/wi3itv4=";
  };

  vendorHash = "sha256-MdU6fls9jQ51uCa+nB8RF8XDoZ3XgGowUGcSOAK/k+4=";

  postInstall = ''
    mv $out/bin/coze_cli $out/bin/coze
  '';

  meta = with lib; {
    description = "CLI client for Coze, a cryptographic JSON messaging specification.";
    homepage = "https://github.com/Cyphrme/coze_cli";
    license = with licenses; [ bsd3 ];
    maintainers = with maintainers; [ qbit ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3278,6 +3278,8 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) PCSC;
  };
  coze = callPackage ../tools/security/coze { } ;
  cozy = callPackage ../applications/audio/cozy { };
  cpptoml = callPackage ../development/libraries/cpptoml { };