summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-09-02 04:05:52 +0000
committerOrivej Desh <orivej@gmx.fr>2020-09-02 05:09:42 +0000
commit018f0862ba57c7d76573eb22bba90dc934800388 (patch)
treed5ea9371dff5b2d1c4e20b75dce507f8ba69a731 /pkgs/applications
parente0baa46feac7bd99c07407624ef3edbe29eb8919 (diff)
downloadnixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar.gz
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar.bz2
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar.lz
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar.xz
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.tar.zst
nixpkgs-018f0862ba57c7d76573eb22bba90dc934800388.zip
surge: fix build
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/surge/default.nix48
1 files changed, 19 insertions, 29 deletions
diff --git a/pkgs/applications/audio/surge/default.nix b/pkgs/applications/audio/surge/default.nix
index 216caec9b1c..1614bbfae66 100644
--- a/pkgs/applications/audio/surge/default.nix
+++ b/pkgs/applications/audio/surge/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, premake5, pkgconfig, cmake
-,cairo, libxkbcommon, libxcb, xcb-util-cursor, xcbutilkeysyms, ncurses, which, getopt
-,python, gnome3, lato, pcre, libpthreadstubs, libXdmcp, xcbutilrenderutil, xcbutilimage, libsndfile }:
+{ stdenv, fetchFromGitHub, cmake, git, pkg-config, python3
+, cairo, libsndfile, libxcb, libxkbcommon, xcbutil, xcbutilcursor, xcbutilkeysyms, zenity
+}:
 
 stdenv.mkDerivation rec {
   pname = "surge";
@@ -10,49 +10,39 @@ stdenv.mkDerivation rec {
     owner = "surge-synthesizer";
     repo = pname;
     rev = "release_${version}";
-    sha256 = "1jhk8iaqh89dnci4446b47315v2lc8gclraygk8m9jl20zpjxl0l";
+    sha256 = "1b3ccc78vrpzy18w7070zfa250dnd1bww147xxcnj457vd6n065s";
+    leaveDotGit = true; # for SURGE_VERSION
     fetchSubmodules = true;
   };
 
-  nativeBuildInputs = [ premake5 pkgconfig cmake ncurses which getopt python ];
+  nativeBuildInputs = [ cmake git pkg-config python3 ];
+  buildInputs = [ cairo libsndfile libxcb libxkbcommon xcbutil xcbutilcursor xcbutilkeysyms zenity ];
 
-  buildInputs = [  cairo libxkbcommon libxcb xcb-util-cursor xcbutilkeysyms gnome3.zenity lato pcre libpthreadstubs libXdmcp xcbutilrenderutil xcbutilimage libsndfile ];
-
-  buildFlags = [ "config=release_x64" ];
-
-  enableParallelBuilding = true;
-
-  patchPhase = ''
-    patchShebangs build-linux.sh
+  postPatch = ''
     substituteInPlace src/common/SurgeStorage.cpp --replace "/usr/share/Surge" "$out/share/surge"
-    substituteInPlace src/linux/UserInteractionsLinux.cpp --replace 'execlp("zenity"' 'execlp("${gnome3.zenity}/bin/zenity"'
-    substituteInPlace src/common/gui/PopupEditorDialog.cpp --replace zenity ${gnome3.zenity}/bin/zenity
-  '';
-
-  buildPhase = ''
-    ./build-linux.sh build;
+    substituteInPlace src/common/gui/PopupEditorDialog.cpp --replace '"zenity' '"${zenity}/bin/zenity'
+    substituteInPlace src/linux/UserInteractionsLinux.cpp --replace '"zenity' '"${zenity}/bin/zenity'
+    substituteInPlace vstgui.surge/vstgui/lib/platform/linux/x11fileselector.cpp --replace /usr/bin/zenity ${zenity}/bin/zenity
   '';
 
   installPhase = ''
-    mkdir -p $out/lib/lv2
-    cp -r buildlin/surge_products/Surge.lv2/ $out/lib/lv2
-    mkdir -p $out/lib/vst3
-    cp -r buildlin/surge_products/Surge.vst3/ $out/lib/vst3
-    mkdir -p $out/share/surge
-    cp -r resources/data/* $out/share/surge/
+    mkdir -p $out/lib/lv2 $out/lib/vst3 $out/share/surge
+    cp -r surge_products/Surge.lv2 $out/lib/lv2/
+    cp -r surge_products/Surge.vst3 $out/lib/vst3/
+    cp -r ../resources/data/* $out/share/surge/
   '';
 
   doInstallCheck = true;
   installCheckPhase = ''
-    ./build-linux.sh build -p headless
-    ./buildlin/surge-headless
+    cd ..
+    build/surge-headless
   '';
 
   meta = with stdenv.lib; {
-    description = "LV2 & VST Synthesizer plug-in (previously released as Vember Audio Surge)";
+    description = "LV2 & VST3 synthesizer plug-in (previously released as Vember Audio Surge)";
     homepage = "https://surge-synthesizer.github.io";
     license = licenses.gpl3;
     platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ magnetophon ];
+    maintainers = with maintainers; [ magnetophon orivej ];
   };
 }