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

stdenv.mkDerivation rec {
  revision = "1564";
  name = "portaudio-svn-r${revision}";
	
  src = fetchsvn {
    url = "https://www.portaudio.com/repos/portaudio/trunk";
    rev = revision;
    sha256 = "0vhiy4lkmv0flhvkbbra71z5cfr3gbh27bbfcqqdc939b4z35lsi";
  };

  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;
  };
}