2021-06-10 02:57:09 +00:00
|
|
|
{ lib, stdenv, fetchurl, alsa-lib, fixDarwinDylibNames }:
|
2018-06-17 20:50:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sndio";
|
2021-08-11 21:06:39 +00:00
|
|
|
version = "1.8.1";
|
2018-06-17 20:50:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-11 21:06:39 +00:00
|
|
|
url = "https://www.sndio.org/sndio-${version}.tar.gz";
|
|
|
|
sha256 = "08b33bbrhbva1lyzzsj5k6ggcqzrfjfhb2n99a0b8b07kqc3f7gq";
|
2018-06-17 20:50:47 +00:00
|
|
|
};
|
|
|
|
|
2021-05-12 17:56:23 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2021-06-10 02:57:09 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isLinux alsa-lib;
|
2021-05-12 17:56:23 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-08-11 21:06:39 +00:00
|
|
|
homepage = "https://www.sndio.org";
|
2018-06-17 20:50:47 +00:00
|
|
|
description = "Small audio and MIDI framework part of the OpenBSD project";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|