summary refs log tree commit diff
path: root/pkgs/development/libraries/portaudio/default.nix
blob: 5941c55ee5570f70c77c1395968d32818c7f5c31 (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
{ stdenv, fetchurl, alsaLib, pkgconfig }:

stdenv.mkDerivation rec {
  name = "portaudio-19-20071207";
	
  src = fetchurl {
    url = http://www.portaudio.com/archives/pa_stable_v19_20071207.tar.gz;
    sha256 = "0axz8xzkb6ynzj65p6cv6b0cl5csxsdfvqkd0dljlf3dslkpg886";
  };

  buildInputs = [ alsaLib pkgconfig ];
  
  meta = {
    description = "Portable cross-platform Audio API";
    homepage = http://www.portaudio.com/;
    # Not exactly a bsd license, but alike
    license = "BSD";
  };

  passthru = {
    api_version = 19;
  };
}