about summary refs log tree commit diff
path: root/pkgs/applications/audio/spotify/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/spotify/default.nix')
-rw-r--r--pkgs/applications/audio/spotify/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
deleted file mode 100644
index df6d762c65ef..000000000000
--- a/pkgs/applications/audio/spotify/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ 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.isDarwin
-then callPackage ./darwin.nix (extraArgs // { inherit pname meta; })
-else callPackage ./linux.nix (extraArgs // { inherit pname meta; })