nixpkgs/pkgs/misc/sndio/default.nix

25 lines
721 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, alsa-lib, fixDarwinDylibNames }:
2018-06-17 20:50:47 +00:00
stdenv.mkDerivation rec {
pname = "sndio";
2021-05-12 17:56:23 +00:00
version = "1.8.0";
2018-06-17 20:50:47 +00:00
src = fetchurl {
url = "http://www.sndio.org/sndio-${version}.tar.gz";
2021-05-12 17:56:23 +00:00
sha256 = "027hlqji0h2cm96rb8qvkdmwxl56l59bgn828nvmwak2c2i5k703";
2018-06-17 20:50:47 +00:00
};
2021-05-12 17:56:23 +00:00
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
buildInputs = lib.optional stdenv.hostPlatform.isLinux alsa-lib;
2021-05-12 17:56:23 +00:00
enableParallelBuilding = true;
meta = with lib; {
2018-06-17 20:50:47 +00: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;
};
}