summary refs log tree commit diff
path: root/pkgs/applications/audio/sonic-pi/default.nix
blob: 3c7be51554d8d5234348e64ee623609b25c6bf37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ stdenv
, fetchFromGitHub
, qscintilla
, supercollider
, ruby
, cmake
, pkgconfig
, qt48Full
, bash
, makeWrapper
}:

stdenv.mkDerivation rec {
  version = "2.9.0";
  name = "sonic-pi-${version}";

  src = fetchFromGitHub {
    owner = "samaaron";
    repo = "sonic-pi";
    rev = "v${version}";
    sha256 = "19db5dxrf6h1v2w3frds5g90nb6izd9ppp7cs2xi6i0m67l6jrwb";
  };

  buildInputs = [
    bash
    cmake
    makeWrapper
    pkgconfig
    qscintilla
    qt48Full
    ruby
    supercollider
  ];

  meta = {
    homepage = http://sonic-pi.net/;
    description = "Free live coding synth for everyone originally designed to support computing and music lessons within schools";
    license = stdenv.lib.licenses.mit;
    maintainers = [ stdenv.lib.maintainers.Phlogistique ];
    platforms = stdenv.lib.platforms.linux;
  };

  dontUseCmakeConfigure = true;

  patches = [ ./fixed-prefixes.patch ];

  preConfigure = ''
    patchShebangs .
    substituteInPlace app/gui/qt/mainwindow.cpp \
      --subst-var-by ruby "${ruby}/bin/ruby" \
      --subst-var out
  '';

  buildPhase = ''
    pushd app/server/bin
      ./compile-extensions.rb
    popd

    pushd app/gui/qt
      ./rp-build-app
    popd
  '';

  installPhase = ''
    cp -r . $out
    wrapProgram $out/bin/sonic-pi --prefix PATH : \
      ${ruby}/bin:${bash}/bin
  '';
}