nixpkgs/pkgs/servers/shairplay/default.nix

36 lines
963 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
2017-11-20 07:32:53 +00:00
, avahi, libao }:
stdenv.mkDerivation rec {
pname = "shairplay-unstable";
2019-02-25 07:42:51 +00:00
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 pkg-config ];
2017-11-20 07:32:53 +00:00
buildInputs = [ avahi libao ];
enableParallelBuilding = true;
# the build will fail without complaining about a reference to /tmp
2021-01-15 07:07:56 +00:00
preFixup = lib.optionalString stdenv.isLinux ''
2017-11-20 07:32:53 +00:00
patchelf \
2021-01-15 07:07:56 +00:00
--set-rpath "${lib.makeLibraryPath buildInputs}:$out/lib" \
2017-11-20 07:32:53 +00:00
$out/bin/shairplay
'';
meta = with lib; {
2017-11-20 07:32:53 +00:00
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;
};
}