mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
3ca8b20328
/cc ZHF #36454
36 lines
978 B
Nix
36 lines
978 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
, avahi, libao }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "shairplay-${version}";
|
|
version = "2016-01-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juhovh";
|
|
repo = "shairplay";
|
|
rev = "ce80e005908f41d0e6fde1c4a21e9cb8ee54007b";
|
|
sha256 = "10b4bmqgf4rf1wszvj066mc42p90968vqrmyqyrdal4k6f8by1r6";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ avahi libao ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# the build will fail without complaining about a reference to /tmp
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
|
patchelf \
|
|
--set-rpath "${stdenv.lib.makeLibraryPath buildInputs}:$out/lib" \
|
|
$out/bin/shairplay
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Apple airplay and raop protocol server";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|