mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 12:48:42 +00:00
soundsource: init at 5.6.0
This commit is contained in:
parent
5cbff28ae6
commit
0e5066d63e
35
pkgs/applications/audio/soundsource/default.nix
Normal file
35
pkgs/applications/audio/soundsource/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user