nixpkgs/pkgs/servers/shairplay/default.nix

36 lines
987 B
Nix
Raw Normal View History

2017-11-20 07:32:53 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, avahi, libao }:
stdenv.mkDerivation rec {
2019-02-25 07:42:51 +00:00
name = "shairplay-unstable-${version}";
version = "2018-08-24";
2017-11-20 07:32:53 +00:00
src = fetchFromGitHub {
owner = "juhovh";
repo = "shairplay";
2019-02-25 07:42:51 +00:00
rev = "096b61ad14c90169f438e690d096e3fcf87e504e";
sha256 = "02xkd9al79pbqh8rhzz5w99vv43jg5vqkqg7kxsw8c8sz9di9wsa";
2017-11-20 07:32:53 +00:00
};
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 ''
2017-11-20 07:32:53 +00:00
patchelf \
--set-rpath "${stdenv.lib.makeLibraryPath buildInputs}:$out/lib" \
$out/bin/shairplay
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
2019-02-25 07:42:51 +00:00
description = "Apple AirPlay and RAOP protocol server";
2017-11-20 07:32:53 +00:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}