summary refs log tree commit diff
path: root/pkgs/applications/audio/i-score/default.nix
blob: 17fadfe8b1f0f9e7505711243ef0a9c74e2ea036 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
  boost,
  cln,
  cmake,
  fetchgit,
  gcc5,
  ginac,
  jamomacore,
  kde5,
  libsndfile,
  ninja,
  portaudio,
  qtbase,
  qtdeclarative,
  qtimageformats,
  qtsvg,
  qttools,
  qtwebsockets,
  rtaudio,
  stdenv
}:

stdenv.mkDerivation rec {
  version = "1.0.0-a67";
  name = "i-score-${version}";

  src = fetchgit {
    url = "https://github.com/OSSIA/i-score.git";
    rev = "ede2453b139346ae46702b5e2643c5488f8c89fb";
    sha256 = "0mk0zsqhx9z7ry1amjki89h6yp5ysi1qgy2j3kzhrm5sfazvf0x3";
    leaveDotGit = true;
    deepClone = true;
  };

  buildInputs = [
    boost
    cln
    cmake
    ginac
    gcc5
    jamomacore
    kde5.kdnssd
    libsndfile
    ninja
    portaudio
    qtbase
    qtdeclarative
    qtimageformats
    qtsvg
    qttools
    qtwebsockets
    rtaudio
  ];

  cmakeFlags = [
    "-GNinja"
    "-DISCORE_CONFIGURATION=static-release"
    "-DISCORE_ENABLE_LTO=OFF"
    "-DISCORE_BUILD_FOR_PACKAGE_MANAGER=True"
  ];

  patchPhase = ''
    sed -e '77d' -i CMake/modules/GetGitRevisionDescription.cmake
  '';

  preConfigure = ''
    export CMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH:$(echo "${jamomacore}/jamoma/share/cmake/Jamoma")"
  '';

  preBuild = ''
    ninja
  '';

  installPhase = ''
    cmake --build . --target install
  '';

  meta = {
    description = "An interactive sequencer for the intermedia arts";
    homepage = http://i-score.org/;
    license = stdenv.lib.licenses.cecill20;
    maintainers = [ stdenv.lib.maintainers.magnetophon ];
    platforms = stdenv.lib.platforms.linux;
  };
}