3
0
Fork 0
forked from mirrors/nixpkgs

spotify-tray: init at 1.3.2

This commit is contained in:
Michael Hoang 2021-12-19 01:49:55 +11:00
parent eedb795fd2
commit 9f9158362e
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk3 }:
stdenv.mkDerivation rec {
pname = "spotify-tray";
version = "1.3.2";
src = fetchFromGitHub {
owner = "tsmetana";
repo = pname;
rev = "v${version}";
sha256 = "sha256-E86rA8cBjy/bI7sZHlT40o7i23PcONXT5GTHEfcaDf0=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ gtk3 ];
meta = with lib; {
homepage = "https://github.com/tsmetana/spotify-tray";
description = "Adds a tray icon to the Spotify Linux client application.";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ Enzime ];
};
}

View file

@ -28303,6 +28303,8 @@ with pkgs;
spotify-qt = libsForQt5.callPackage ../applications/audio/spotify-qt { };
spotify-tray = callPackage ../applications/misc/spotify-tray { };
spotify-tui = callPackage ../applications/audio/spotify-tui {
inherit (darwin.apple_sdk.frameworks) AppKit Security;
};