about summary refs log tree commit diff
path: root/pkgs/applications/audio/faust
diff options
context:
space:
mode:
authorannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-25 17:26:56 +0000
committerannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-25 19:46:15 +0000
commit02cc697a7c89237ee3d3f4ae0cec116cbff202be (patch)
treeb3a6136046df1acbbabb4ffec8a7749943202d5e /pkgs/applications/audio/faust
parent875cce1e7225f3bb4a7947eb2df59d11fb300f9e (diff)
faustlive: reformat
Diffstat (limited to 'pkgs/applications/audio/faust')
-rw-r--r--pkgs/applications/audio/faust/faustlive.nix56
1 files changed, 50 insertions, 6 deletions
diff --git a/pkgs/applications/audio/faust/faustlive.nix b/pkgs/applications/audio/faust/faustlive.nix
index 3e1074ad691f6..375ecfbbea043 100644
--- a/pkgs/applications/audio/faust/faustlive.nix
+++ b/pkgs/applications/audio/faust/faustlive.nix
@@ -1,6 +1,28 @@
-{ lib, stdenv, fetchFromGitHub
-, llvm_10, qt5, qrencode, libmicrohttpd, libjack2, alsa-lib, faust, curl
-, bc, coreutils, which, libsndfile, flac, libogg, libvorbis, libopus, pkg-config, libxcb, cmake, gnutls, libtasn1, p11-kit
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, which
+, alsa-lib
+, bc
+, coreutils
+, curl
+, faust
+, flac
+, gnutls
+, libjack2
+, libmicrohttpd
+, libogg
+, libopus
+, libsndfile
+, libtasn1
+, libvorbis
+, libxcb
+, llvm_10
+, p11-kit
+, qrencode
+, qt5
 }:
 
 stdenv.mkDerivation rec {
@@ -14,11 +36,33 @@ stdenv.mkDerivation rec {
     fetchSubmodules = true;
   };
 
-  nativeBuildInputs = [ pkg-config qt5.wrapQtAppsHook cmake ];
+  nativeBuildInputs = [
+    cmake
+    pkg-config
+    qt5.wrapQtAppsHook
+  ];
 
   buildInputs = [
-    llvm_10 qt5.qtbase qrencode libmicrohttpd libjack2 alsa-lib faust curl
-    bc coreutils which libsndfile flac libogg libvorbis libopus libxcb gnutls libtasn1 p11-kit
+    alsa-lib
+    bc
+    coreutils
+    curl
+    faust
+    flac
+    gnutls
+    libjack2
+    libmicrohttpd
+    libogg
+    libopus
+    libsndfile
+    libtasn1
+    libvorbis
+    libxcb
+    llvm_10
+    p11-kit
+    qrencode
+    qt5.qtbase
+    which
   ];
 
   makeFlags = [ "PREFIX=$(out)" ];