Unverified Commit c693083d authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

soundsource: 5.6.3 -> 5.7.1 (#344186)

parents 4b796fa0 9dfd48b9
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
{ lib
, stdenvNoCC
, fetchurl
, unzip
{
  lib,
  stdenvNoCC,
  fetchurl,
  unzip,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "soundsource";
  version = "5.6.3";
  version = "5.7.1";

  src = fetchurl {
    url = "https://web.archive.org/web/20240505002011/https://rogueamoeba.com/soundsource/download/SoundSource.zip";
    sha256 = "sha256-uXQw4MEV4hkrd7tjNCxtuXpbfmdW8bilI5ZmXwn9BLM=";
    url = "https://web.archive.org/web/20240924103013/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip";
    sha256 = "sha256-02+Jb+3GSirypBISjdFg89Dp3LtkgPKho8OCVS+GGcQ=";
  };
  dontUnpack = true;

@@ -29,7 +30,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    homepage = "https://rogueamoeba.com/soundsource";
    license = licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    maintainers = with maintainers; [ emilytrau ];
    maintainers = with maintainers; [
      emilytrau
      donteatoreo
    ];
    platforms = platforms.darwin;
  };
})