nixpkgs/pkgs/servers/shairplay/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

36 lines
963 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, avahi, libao }:
stdenv.mkDerivation rec {
pname = "shairplay-unstable";
version = "2018-08-24";
src = fetchFromGitHub {
owner = "juhovh";
repo = "shairplay";
rev = "096b61ad14c90169f438e690d096e3fcf87e504e";
sha256 = "02xkd9al79pbqh8rhzz5w99vv43jg5vqkqg7kxsw8c8sz9di9wsa";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ avahi libao ];
enableParallelBuilding = true;
# the build will fail without complaining about a reference to /tmp
preFixup = lib.optionalString stdenv.isLinux ''
patchelf \
--set-rpath "${lib.makeLibraryPath buildInputs}:$out/lib" \
$out/bin/shairplay
'';
meta = with lib; {
inherit (src.meta) homepage;
description = "Apple AirPlay and RAOP protocol server";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}