Merge pull request #291476 from MichaelCDormann/roon-tui

This commit is contained in:
Sandro 2024-03-01 11:49:52 +01:00 committed by GitHub
commit 2d0c2dbdf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1547 additions and 0 deletions

View File

@ -12495,6 +12495,12 @@
github = "MichaelBrunn3r";
githubId = 19626539;
};
MichaelCDormann = {
email = "michael.c.dormann@gmail.com";
name = "Michael Dormann";
github = "MichaelCDormann";
githubId = 12633081;
};
michaelCTS = {
email = "michael.vogel@cts.co";
name = "Michael Vogel";

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";
};
}