mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
36 lines
745 B
Nix
36 lines
745 B
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, cmake
|
|
, mkDerivation
|
|
, libxcb
|
|
, qtbase
|
|
, qtsvg
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "spotify-qt";
|
|
version = "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kraxarn";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8rLpasgXiaL2KpGnYMQdNN2ayjcSkmz5hDkNBnKNWHk=";
|
|
};
|
|
|
|
buildInputs = [ libxcb qtbase qtsvg ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX=" ];
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight unofficial Spotify client using Qt";
|
|
homepage = "https://github.com/kraxarn/spotify-qt";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|