summary refs log tree commit diff
path: root/pkgs/applications/audio/pd-plugins/cyclone/default.nix
blob: 30bdd534d40271b0dc813cf97a51ce31ec38a35e (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
{ stdenv, fetchurl, puredata }:

stdenv.mkDerivation rec {
  name = "cyclone-${version}";
  version = "0.1-alpha55";

  src = fetchurl {
    url = "http://downloads.sourceforge.net/project/pure-data/libraries/cyclone/${name}.tar.gz";
    sha256 = "1yys9xrlz09xgnqk2gqdl8vw6xj6l9d7km2lkihidgjql0jx5b5i";
  };

  buildInputs = [ puredata ];

  /*unpackPhase = ''*/
    /*unzip $src*/
  /*'';*/

  patchPhase = ''
    for file in `grep -r -l g_canvas.h`
      do
        sed -i 's|#include "g_canvas.h"|#include "${puredata}/include/pd/g_canvas.h"|g' $file
      done
    for file in `grep -r -l m_imp.h`
      do
        sed -i 's|#include "m_imp.h"|#include "${puredata}/include/pd/m_imp.h"|g' $file
      done
  '';

  installPhase = ''
    mkdir -p $out/cyclone
    cp -r bin/* $out/cyclone
  '';

  meta = {
    description = "A library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments.";
    homepage = http://puredata.info/downloads/cyclone;
    license = stdenv.lib.licenses.tcltk;
    maintainers = [ stdenv.lib.maintainers.magnetophon ];
    platforms = stdenv.lib.platforms.linux;
  };
}