dotfiles/packages/okc-agents.nix
2024-11-07 16:25:41 -07:00

27 lines
588 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "okc-agents";
version = "0.1.2";
src = fetchFromGitHub {
owner = "DDoSolitary";
repo = "okc-agents";
rev = "v${version}";
hash = "sha256-UFcsnzsoN15xXDY7hVyRjAj6+/ffefu/gcnxSjt6l+E=";
};
cargoHash = "sha256-g2GQmi4OBgZoX/qlX+PK5he5UBBKIdHoEAkdd4RhiBI=";
meta = {
description = "";
homepage = "https://github.com/DDoSolitary/okc-agents.git";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
mainProgram = "okc-agents";
};
}