mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
1d9b7ecaed
this is required while building to validate appstream information
88 lines
1.6 KiB
Nix
88 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
cargo,
|
|
rustc,
|
|
alsa-lib,
|
|
appstream-glib,
|
|
blueprint-compiler,
|
|
desktop-file-utils,
|
|
gettext,
|
|
glib,
|
|
gst_all_1,
|
|
gtk4,
|
|
libadwaita,
|
|
libpulseaudio,
|
|
libhandy,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
openssl,
|
|
pkg-config,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "spot";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xou816";
|
|
repo = "spot";
|
|
rev = version;
|
|
hash = "sha256-F875e/VZyN8mTfe9lgjtILNxMqn+66XoPCdaEUagHyU=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-45Rqs2/tSWoyZVjFuygR5SxldjoqpprtOKEnMqJK+p8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
rustc
|
|
appstream-glib
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
gettext
|
|
gtk4 # for gtk-update-icon-cache
|
|
glib # for glib-compile-schemas
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.cargoSetupHook
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
glib
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gstreamer
|
|
gtk4
|
|
libadwaita
|
|
libhandy
|
|
libpulseaudio
|
|
openssl
|
|
];
|
|
|
|
# https://github.com/xou816/spot/issues/313
|
|
mesonBuildType = "release";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Native Spotify client for the GNOME desktop";
|
|
homepage = "https://github.com/xou816/spot";
|
|
changelog = "https://github.com/xou816/spot/releases/tag/${src.rev}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
mainProgram = "spot";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|