flake/packages/svc.nix

27 lines
546 B
Nix
Raw Normal View History

2025-02-21 15:29:30 -06:00
{
pkgs,
...
}:
let
version = "1.0.4";
in
pkgs.rustPlatform.buildRustPackage rec {
pname = "svc";
inherit version;
src = pkgs.fetchFromGitHub {
owner = "henkelmax";
repo = "svc-cli-utils";
rev = version;
2025-03-06 18:42:06 -06:00
sha256 = "sha256-vRqYQd5OaYXAc74Jlg8twBGDr9YxP+Mk1ZY9JGJTmvc=";
2025-02-21 15:29:30 -06:00
};
2025-03-06 18:42:06 -06:00
cargoHash = "sha256-vtVoIRGp46tItQyHbjp/PF5ZxwASAM9Hhdm6HxjmODw=";
2025-02-21 15:29:30 -06:00
meta = {
description = "Command line utilities for Simple Voice Chat.";
homepage = "https://github.com/henkelmax/svc-cli-utils";
maintianers = "cswimr";
};
}