24 lines
618 B
Nix
24 lines
618 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, callPackage
|
||
|
, ...
|
||
|
}@args:
|
||
|
|
||
|
let
|
||
|
extraArgs = removeAttrs args [ "callPackage" ];
|
||
|
|
||
|
pname = "spotify";
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://www.spotify.com/";
|
||
|
description = "Play music from the Spotify music service";
|
||
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||
|
license = licenses.unfree;
|
||
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||
|
mainProgram = "spotify";
|
||
|
};
|
||
|
|
||
|
in if stdenv.hostPlatform.isDarwin
|
||
|
then callPackage ./darwin.nix (extraArgs // { inherit pname meta; })
|
||
|
else callPackage ./linux.nix (extraArgs // { inherit pname meta; })
|