mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Adding a portaudio svn-head expression
svn path=/nixpkgs/trunk/; revision=25336
This commit is contained in:
parent
03419cfc5a
commit
660792741d
25
pkgs/development/libraries/portaudio/svn-head.nix
Normal file
25
pkgs/development/libraries/portaudio/svn-head.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user