27 lines
446 B
Nix
27 lines
446 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
}
|