2013-05-17 01:18:48 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libsndfile }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libbs2b";
|
2013-05-17 01:18:48 +02:00
|
|
|
version = "3.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/bs2b/${pname}-${version}.tar.bz2";
|
2013-05-17 01:18:48 +02:00
|
|
|
sha256 = "0vz442kkjn2h0dlxppzi4m5zx8qfyrivq581n06xzvnyxi5rg6a7";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsndfile ];
|
2013-05-17 01:18:48 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2013-05-17 01:18:48 +02:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://bs2b.sourceforge.net/";
|
2013-05-17 01:18:48 +02:00
|
|
|
description = "Bauer stereophonic-to-binaural DSP library";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-05-17 01:18:48 +02:00
|
|
|
};
|
|
|
|
}
|