about summary refs log tree commit diff
path: root/pkgs/applications/audio/soundsource
diff options
context:
space:
mode:
authorEmily Trau <emily@downunderctf.com>2023-07-08 00:10:38 +1000
committerEmily Trau <emily@downunderctf.com>2023-07-08 00:10:38 +1000
commit0e5066d63ebfc38e281b98d88a2e71fd5a40facb (patch)
tree324ca392b947eed7e838269af8139aae1d5541a5 /pkgs/applications/audio/soundsource
parent5cbff28ae66e5a98386bcbea29f5a7252c33c808 (diff)
soundsource: init at 5.6.0
Diffstat (limited to 'pkgs/applications/audio/soundsource')
-rw-r--r--pkgs/applications/audio/soundsource/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/audio/soundsource/default.nix b/pkgs/applications/audio/soundsource/default.nix
new file mode 100644
index 0000000000000..e211a5736689e
--- /dev/null
+++ b/pkgs/applications/audio/soundsource/default.nix
@@ -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;
+  };
+})