shairport-sync: 2.3.0 -> 2.3.6.5

- Enable additional backends: pipe, stdout
- Support high-quality resampling with soxr
- Support configuration files, but don't install one
- Cut down on boilerplate code with fetchFromGitHub/autoreconfHook
This commit is contained in:
Tobias Geerinckx-Rice 2015-07-07 14:09:38 +02:00
parent e54d0371b9
commit 8ff60567ae

View file

@ -1,36 +1,40 @@
{ stdenv, fetchurl, openssl, avahi, alsaLib, libdaemon, autoconf, automake, libtool, popt, unzip, pkgconfig, libconfig, libpulseaudio }:
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, avahi, alsaLib
, libdaemon, popt, pkgconfig, libconfig, libpulseaudio, soxr }:
stdenv.mkDerivation rec {
version = "2.3.0";
version = "2.3.6.5";
name = "shairport-sync-${version}";
src = fetchurl {
url = "https://github.com/mikebrady/shairport-sync/archive/${version}.zip";
sha256 = "1kslif2ifrn0frvi39d44wpn53sjahwq0xjc0hd98ycf3xbcgndg";
src = fetchFromGitHub {
sha256 = "1337y62pnch27s2gr47miip3na1am24xprlc5a27lbr764nr85s3";
rev = version;
repo = "shairport-sync";
owner = "mikebrady";
};
buildInputs = [
autoreconfHook
openssl
avahi
alsaLib
libdaemon
autoconf
automake
pkgconfig
libtool
popt
unzip
libconfig
libpulseaudio
soxr
];
enableParallelBuilding = true;
preConfigure = "autoreconf -vfi";
configureFlags = "--with-alsa --with-avahi --with-ssl=openssl --without-initscript --with-pulseaudio";
configureFlags = ''
--with-alsa --with-pipe --with-pulseaudio --with-stdout
--with-avahi --with-ssl=openssl --with-soxr
--without-configfiles --without-initscript
'';
meta = with stdenv.lib; {
homepage = https://github.com/mikebrady/shairport-sync;
inherit (src.meta) homepage;
description = "Airtunes server and emulator with multi-room capabilities";
license = licenses.mit;
platforms = platforms.unix;