roon-tui: init at 0.3.0

This commit is contained in:
Michael Dormann 2024-02-25 23:00:34 -06:00
parent 0aca8bdd4a
commit fdd3d04748
2 changed files with 1541 additions and 0 deletions

1509
pkgs/by-name/ro/roon-tui/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,32 @@
{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "roon-tui";
version = "0.3.0";
src = fetchFromGitHub {
owner = "TheAppgineer";
repo = "roon-tui";
rev = version;
hash = "sha256-rwZPUa6NyKs+jz0+JQC0kSrw0T/EL+ms2m+AzHvrI7o=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"roon-api-0.1.1" = "sha256-aFcS8esfgMxzzhWLeynTRFp1FZj2z6aHIivU/5p+uec=";
};
};
meta = {
description = "A Roon Remote for the terminal";
homepage = "https://github.com/TheAppgineer/roon-tui";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ MichaelCDormann ];
mainProgram = "roon-tui";
};
}