summary refs log blame commit diff
path: root/pkgs/servers/shairport-sync/default.nix
blob: 27b4a5123462ee544699f143ac18e79782f5ebd1 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                  

                         
                    

                                     
                         
                                                                    


                            

    

                                                   




                 
        
             
                 
        



                                
                    
                                                           
                                                     
                           
                       
    

                           
                                

                                                                              
                                              


                               
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, avahi, alsaLib
, libdaemon, popt, pkgconfig, libconfig, libpulseaudio, soxr }:

stdenv.mkDerivation rec {
  version = "3.2.2";
  name = "shairport-sync-${version}";

  src = fetchFromGitHub {
    sha256 = "1cw6wybnh4sp3llzmam0zpd6fcmr9y6ykrirzygckp2iaglcqbcv";
    rev = version;
    repo = "shairport-sync";
    owner = "mikebrady";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [
    openssl
    avahi
    alsaLib
    libdaemon
    popt
    libconfig
    libpulseaudio
    soxr
  ];

  enableParallelBuilding = true;

  configureFlags = [
    "--with-alsa" "--with-pipe" "--with-pa" "--with-stdout"
    "--with-avahi" "--with-ssl=openssl" "--with-soxr"
    "--without-configfiles"
    "--sysconfdir=/etc"
  ];

  meta = with stdenv.lib; {
    inherit (src.meta) homepage;
    description = "Airtunes server and emulator with multi-room capabilities";
    license = licenses.mit;
    maintainers =  with maintainers; [ lnl7 ];
    platforms = platforms.unix;
  };
}