soundsource: init at 5.6.0

This commit is contained in:
Emily Trau 2023-07-08 00:10:38 +10:00
parent 5cbff28ae6
commit 0e5066d63e
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, stdenvNoCC
, fetchurl
, unzip
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "soundsource";
version = "5.6.0";
src = fetchurl {
url = "https://web.archive.org/web/20230707140658/https://rogueamoeba.com/soundsource/download/SoundSource.zip";
sha256 = "1avm1jr75mjbps0fad3glshrwl42vnhc0f9sak038ny85f3apyi0";
};
dontUnpack = true;
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
unzip -d $out/Applications $src
runHook postInstall
'';
meta = with lib; {
description = "Sound controller for macOS";
homepage = "https://rogueamoeba.com/soundsource";
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ emilytrau Enzime ];
platforms = platforms.darwin;
};
})

View file

@ -34836,6 +34836,8 @@ with pkgs;
soulseekqt = libsForQt5.callPackage ../applications/networking/p2p/soulseekqt { };
soundsource = callPackage ../applications/audio/soundsource { };
sox = callPackage ../applications/misc/audio/sox {
inherit (darwin.apple_sdk.frameworks) CoreAudio;
};