nixpkgs/pkgs/misc/sndio/default.nix

29 lines
881 B
Nix
Raw Normal View History

2018-06-17 20:50:47 +00:00
{ stdenv, fetchurl, alsaLib }:
stdenv.mkDerivation rec {
pname = "sndio";
version = "1.6.0";
2018-06-17 20:50:47 +00:00
enableParallelBuilding = true;
2019-10-26 14:00:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isLinux [ alsaLib ];
2018-06-17 20:50:47 +00:00
src = fetchurl {
url = "http://www.sndio.org/sndio-${version}.tar.gz";
sha256 = "1havdx3q4mipgddmd2bnygr1yh6y64567m1yqwjapkhsq550dq4r";
2018-06-17 20:50:47 +00:00
};
2019-10-26 14:00:00 +00:00
postFixup = stdenv.lib.optionalString stdenv.isDarwin ''
2019-11-14 03:56:45 +00:00
install_name_tool -id $out/lib/libsndio.7.0.dylib $out/lib/libsndio.7.0.dylib
2019-10-26 14:00:00 +00:00
for file in $out/bin/*; do
install_name_tool -change libsndio.7.0.dylib $out/lib/libsndio.dylib $file
done
'';
2018-06-17 20:50:47 +00:00
meta = with stdenv.lib; {
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;
};
}