spotify 1.2.26.1187.g36b715a1 -> 1.2.30.1135 https://repology.org/project/spotify/versions attrpath: spotify Checking auto update branch... No auto update branch exists Old version 1.2.26.1187.g36b715a1" not present in master derivation file with contents: { 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; })