2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, alsaLib, fixDarwinDylibNames }:
|
2018-06-17 21:50:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sndio";
|
2020-07-12 07:23:44 +01:00
|
|
|
version = "1.7.0";
|
2018-06-17 21:50:47 +01:00
|
|
|
enableParallelBuilding = true;
|
2020-10-26 07:17:14 +00:00
|
|
|
nativeBuildInputs = stdenv.lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.hostPlatform.isLinux alsaLib;
|
2018-06-17 21:50:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.sndio.org/sndio-${version}.tar.gz";
|
2020-07-12 07:23:44 +01:00
|
|
|
sha256 = "0ljmac0lnjn61admgbcwjfcr5fwccrsblx9rj9bys8wlhz8f796x";
|
2018-06-17 21:50:47 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-17 21:50:47 +01:00
|
|
|
homepage = "http://www.sndio.org";
|
|
|
|
description = "Small audio and MIDI framework part of the OpenBSD project";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|