add svc
This commit is contained in:
parent
3f90c1ea4c
commit
58800c1a05
1 changed files with 26 additions and 0 deletions
26
packages/svc.nix
Normal file
26
packages/svc.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue