nixos-configs/packages/librespot-auth/default.nix
matt1432 292b1ef0fa
All checks were successful
Discord / discord commits (push) Has been skipped
feat(spotifyd): get credentials from librespot-auth
2024-09-18 20:19:44 -04:00

43 lines
875 B
Nix

{
lib,
fetchFromGitHub,
makeWrapper,
openssl,
pkg-config,
rustPlatform,
...
}:
rustPlatform.buildRustPackage rec {
pname = "librespot-auth";
version = "0.1.1";
src = fetchFromGitHub {
owner = "dspearson";
repo = pname;
rev = "v${version}";
sha256 = "sha256-IbbArRSKpnljhZSgL0b3EjVzKWN7bk6t0Bv7TkYr8FI=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"librespot-core-0.5.0-dev" = "sha256-7HrA1hWEy5lliwgJ9amJy+Kd8lB50b3q2niaFWWwcYE=";
};
};
nativeBuildInputs = [
pkg-config
makeWrapper
];
buildInputs = [
openssl
];
meta = with lib; {
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 licenses; [isc];
};
}