summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/vamp/default.nix
blob: bfca4a5230460a32a3e1e9202c2e21808c6f9170 (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
# set VAMP_PATH ?
# plugins availible on sourceforge and http://www.vamp-plugins.org/download.html (various licenses)

{ stdenv, fetchurl, pkgconfig, libsndfile }:

rec {

  vampSDK = stdenv.mkDerivation {
    name = "vamp-sdk-2.2.1";

    src = fetchurl {
      url = mirror://sourceforge/vamp/vamp-plugin-sdk-2.2.1.tar.gz;
      sha256 = "09iw6gv8aqq5v322fhi872mrhjp0a2w63966g0mks4vhh84q252p";
    };

    buildInputs = [pkgconfig libsndfile];

    meta = { 
      description = "Audio processing plugin system for plugins that extract descriptive information from audio data";
      homepage = http://sourceforge.net/projects/vamp;
      license = "BSD";
      maintainers = [ stdenv.lib.maintainers.marcweber ];
      platforms = stdenv.lib.platforms.linux;
    };
  };

}