python3Packages.pybids: 0.12.4 -> 0.13
[NixPkgs.git] / pkgs / misc / sndio / default.nix
blob3b4c34702d3c5554613178a605e25c6802456ebe
1 { lib, stdenv, fetchurl, alsaLib, fixDarwinDylibNames }:
3 stdenv.mkDerivation rec {
4   pname = "sndio";
5   version = "1.8.0";
7   src = fetchurl {
8     url = "http://www.sndio.org/sndio-${version}.tar.gz";
9     sha256 = "027hlqji0h2cm96rb8qvkdmwxl56l59bgn828nvmwak2c2i5k703";
10   };
12   nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
13   buildInputs = lib.optional stdenv.hostPlatform.isLinux alsaLib;
15   enableParallelBuilding = true;
17   meta = with lib; {
18     homepage = "http://www.sndio.org";
19     description = "Small audio and MIDI framework part of the OpenBSD project";
20     license = licenses.isc;
21     maintainers = with maintainers; [ chiiruno ];
22     platforms = platforms.all;
23   };