mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
709 B
Nix
33 lines
709 B
Nix
{ 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 = "Roon Remote for the terminal";
|
|
homepage = "https://github.com/TheAppgineer/roon-tui";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ MichaelCDormann ];
|
|
mainProgram = "roon-tui";
|
|
};
|
|
}
|