lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 19 lines 485 B view raw
1{ stdenv, fetchurl, pkgconfig, libsndfile }: 2 3stdenv.mkDerivation rec { 4 name = "libbs2b-${version}"; 5 version = "3.1.0"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/bs2b/${name}.tar.bz2"; 9 sha256 = "0vz442kkjn2h0dlxppzi4m5zx8qfyrivq581n06xzvnyxi5rg6a7"; 10 }; 11 12 buildInputs = [ pkgconfig libsndfile ]; 13 14 meta = { 15 homepage = "http://bs2b.sourceforge.net/"; 16 description = "Bauer stereophonic-to-binaural DSP library"; 17 license = stdenv.lib.licenses.mit; 18 }; 19}