refactor(packages): clarify inputs and cleanup meta

This commit is contained in:
matt1432 2025-02-11 13:05:14 -05:00
parent 2c070a4be0
commit f12e7f2513
16 changed files with 124 additions and 53 deletions
packages/librespot-auth

View file

@ -1,10 +1,12 @@
{
# nix build inputs
lib,
fetchFromGitHub,
makeWrapper,
rustPlatform,
# deps
openssl,
pkg-config,
rustPlatform,
...
}:
rustPlatform.buildRustPackage rec {
@ -36,9 +38,12 @@ rustPlatform.buildRustPackage rec {
];
meta = {
description = "A simple program for populating a credentials.json via Spotify's zeroconf authentication.";
mainProgram = pname;
homepage = "https://github.com/dspearson/librespot-auth";
license = with lib.licenses; [isc];
homepage = "https://github.com/dspearson/librespot-auth";
description = ''
A simple program for populating a credentials.json via Spotify's
zeroconf authentication.
'';
};
}