summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPowerUser64 <blake@blakenorth.net>2023-01-17 17:06:13 -0800
committerPowerUser64 <blake@blakenorth.net>2023-03-02 19:10:44 -0800
commit57221929c932530aba1c48dbb689d80767bca958 (patch)
treef069a32583eeb5f9020ed0a74f58a9d71e1de829 /pkgs/applications
parentdc2b9778ad88d452d05d904f289c193bed657915 (diff)
downloadnixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar.gz
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar.bz2
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar.lz
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar.xz
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.tar.zst
nixpkgs-57221929c932530aba1c48dbb689d80767bca958.zip
sonobus: init at 1.6.2
Co-authored-by: tobiasBora <tobias.bora@gmail.com>

sonobus: add meta

sonobus: remove tree dependency (left from debug)

sonobus: rewrite comments

sonobus: remove platform

sonobus: apply suggestions from review

Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>
Co-authored-by: Matthias Thym <git@thym.at>

sonobus: mark darwin as broken

Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>

sonobus: apply suggestions from code review

Co-authored-by: Lily Foster <lily@lily.flowers>

sonobus: remove opusTools

sonobus: 1.6.2

sonobus: change to autoPatchelfHook

Co-authored-by: Lily Foster <lily@lily.flowers>
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/sonobus/default.nix83
1 files changed, 83 insertions, 0 deletions
diff --git a/pkgs/applications/audio/sonobus/default.nix b/pkgs/applications/audio/sonobus/default.nix
new file mode 100644
index 00000000000..da82fcc5a86
--- /dev/null
+++ b/pkgs/applications/audio/sonobus/default.nix
@@ -0,0 +1,83 @@
+{ lib
+, pkg-config
+, stdenv
+, fetchFromGitHub
+, autoPatchelfHook
+, alsa-lib
+, cmake
+, freetype
+, libGL
+, libX11
+, libXcursor
+, libXext
+, libXinerama
+, libXrandr
+, libjack2
+, libopus
+, curl
+, gtk3
+, webkitgtk
+}:
+
+stdenv.mkDerivation rec {
+  pname = "sonobus";
+  version = "1.6.2";
+
+  src = fetchFromGitHub {
+    owner = "sonosaurus";
+    repo = "sonobus";
+    rev = version;
+    sha256 = "sha256-/Pb+PYmoCYA6Qcy/tR1Ejyt+rZ3pfJeWV4j7bQWYE58=";
+    fetchSubmodules = true;
+  };
+
+  nativeBuildInputs = [
+    autoPatchelfHook
+    cmake
+    pkg-config
+  ];
+
+  buildInputs = [
+    alsa-lib
+    freetype
+    libjack2
+    libopus
+    curl
+    gtk3
+    webkitgtk
+  ];
+
+  runtimeDependencies = [
+    libGL
+    libX11
+    libXcursor
+    libXext
+    libXinerama
+    libXrandr
+  ];
+
+  postPatch = lib.optionalString (stdenv.isLinux) ''
+    # needs special setup on Linux, dunno if it can work on Darwin
+    # https://github.com/NixOS/nixpkgs/issues/19098
+    # Also, I get issues with linking without that, not sure why
+    sed -i -e '/juce::juce_recommended_lto_flags/d' CMakeLists.txt
+    patchShebangs linux/install.sh
+  '';
+
+  # The program does not provide any CMake install instructions
+  installPhase = lib.optionalString (stdenv.isLinux) ''
+    runHook preInstall
+    cd ../linux
+    ./install.sh "$out"
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    description = "High-quality network audio streaming";
+    homepage = "https://sonobus.net/";
+    license = with licenses; [ gpl3Plus ];
+    maintainers = with maintainers; [ PowerUser64 ];
+    platforms = platforms.unix;
+    broken = stdenv.isDarwin;
+  };
+}