Unverified Commit 1ca3d78e authored by seth's avatar seth
Browse files
parent 4a67d03c
Loading
Loading
Loading
Loading
+28 −27
Original line number Diff line number Diff line
@@ -2,25 +2,25 @@
  lib,
  stdenv,
  fetchFromGitHub,
  nix-update-script,
  meson,
  ninja,
  gettext,
  desktop-file-utils,
  cargo,
  rustPlatform,
  cargo,
  rustc,
  pkg-config,
  alsa-lib,
  blueprint-compiler,
  desktop-file-utils,
  gettext,
  glib,
  gst_all_1,
  gtk4,
  libadwaita,
  libpulseaudio,
  libhandy,
  gtk4,
  meson,
  ninja,
  nix-update-script,
  openssl,
  alsa-lib,
  libpulseaudio,
  pkg-config,
  wrapGAppsHook4,
  blueprint-compiler,
  gst_all_1,
}:

stdenv.mkDerivation rec {
@@ -41,30 +41,30 @@ stdenv.mkDerivation rec {
  };

  nativeBuildInputs = [
    cargo
    rustc
    blueprint-compiler
    desktop-file-utils
    gettext
    gtk4 # for gtk-update-icon-cache
    glib # for glib-compile-schemas
    meson
    ninja
    pkg-config
    gtk4 # for gtk-update-icon-cache
    glib # for glib-compile-schemas
    desktop-file-utils
    cargo
    rustPlatform.cargoSetupHook
    rustc
    wrapGAppsHook4
    blueprint-compiler
  ];

  buildInputs = [
    alsa-lib
    glib
    gst_all_1.gst-plugins-base
    gst_all_1.gstreamer
    gtk4
    libadwaita
    libhandy
    openssl
    alsa-lib
    libpulseaudio
    gst_all_1.gst-plugins-base
    gst_all_1.gstreamer
    openssl
  ];

  # https://github.com/xou816/spot/issues/313
@@ -74,12 +74,13 @@ stdenv.mkDerivation rec {
    updateScript = nix-update-script { };
  };

  meta = with lib; {
  meta = {
    description = "Native Spotify client for the GNOME desktop";
    mainProgram = "spot";
    homepage = "https://github.com/xou816/spot";
    license = licenses.mit;
    maintainers = with maintainers; [ getchoo ];
    platforms = platforms.linux;
    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;
  };
}