tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
surge-XT: init at unstable-2021-11-07
Bart Brouns
4 years ago
d9e363ca
7fa8d14f
+35
2 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
surge-XT
default.nix
top-level
all-packages.nix
+33
pkgs/applications/audio/surge-XT/default.nix
···
1
1
+
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, cairo, libxkbcommon, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor, alsa-lib, libjack2
2
2
+
}:
3
3
+
4
4
+
stdenv.mkDerivation rec {
5
5
+
pname = "surge-XT";
6
6
+
version = "unstable-2021-11-07";
7
7
+
8
8
+
src = fetchFromGitHub {
9
9
+
owner = "surge-synthesizer";
10
10
+
repo = "surge";
11
11
+
rev = "ed93833eb44b177c977e3a7b878ffdd9bf9f24e5";
12
12
+
sha256 = "0b164659ksl6h5nn7jja5zccx2mwzibqs6b7hg8l98gpcy9fi5r2";
13
13
+
fetchSubmodules = true;
14
14
+
};
15
15
+
16
16
+
nativeBuildInputs = [ cmake pkg-config ];
17
17
+
buildInputs = [ cairo libxkbcommon xcbutilcursor xcbutilkeysyms xcbutil libXrandr libXinerama libXcursor alsa-lib libjack2 ];
18
18
+
19
19
+
installPhase = ''
20
20
+
cd ..
21
21
+
cmake --build build --config Release --target install
22
22
+
'';
23
23
+
24
24
+
doInstallCheck = false;
25
25
+
26
26
+
meta = with lib; {
27
27
+
description = "LV2 & VST3 synthesizer plug-in (previously released as Vember Audio Surge)";
28
28
+
homepage = "https://surge-synthesizer.github.io";
29
29
+
license = licenses.gpl3;
30
30
+
platforms = [ "x86_64-linux" ];
31
31
+
maintainers = with maintainers; [ magnetophon orivej ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/all-packages.nix
···
28124
28124
git = gitMinimal;
28125
28125
};
28126
28126
28127
28127
+
surge-XT = callPackage ../applications/audio/surge-XT { };
28128
28128
+
28127
28129
survex = callPackage ../applications/misc/survex {
28128
28130
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
28129
28131
};