roon-tui: init at 0.3.0
This commit is contained in:
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
1509
pkgs/by-name/ro/roon-tui/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
32
pkgs/by-name/ro/roon-tui/package.nix
Normal file
32
pkgs/by-name/ro/roon-tui/package.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue