This commit is contained in:
cswimr 2025-02-21 15:29:30 -06:00
parent 3f90c1ea4c
commit 58800c1a05
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

26
packages/svc.nix Normal file
View file

@ -0,0 +1,26 @@
{
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;
sha256 = "";
};
cargoSha256 = "";
meta = {
description = "Command line utilities for Simple Voice Chat.";
homepage = "https://github.com/henkelmax/svc-cli-utils";
maintianers = "cswimr";
};
}