3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/uxplay/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
954 B
Nix
Raw Normal View History

2022-04-21 16:18:52 +01:00
{ lib
, stdenv
, pkg-config
, fetchFromGitHub
, cmake
, wrapGAppsHook
, avahi
, avahi-compat
, openssl
, gst_all_1
, libplist
}:
stdenv.mkDerivation rec {
pname = "uxplay";
2022-10-10 15:10:55 +01:00
version = "1.57";
2022-04-21 16:18:52 +01:00
src = fetchFromGitHub {
owner = "FDH2";
repo = "UxPlay";
rev = "v${version}";
2022-10-10 15:10:55 +01:00
sha256 = "sha256-KdKpZi5OiC5GNON4rKy5vs1dt+CCWic7SKwZYN6jY9E=";
2022-04-21 16:18:52 +01:00
};
nativeBuildInputs = [
cmake
openssl
libplist
pkg-config
wrapGAppsHook
];
buildInputs = [
avahi
avahi-compat
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
];
meta = with lib; {
broken = stdenv.isDarwin;
2022-04-21 16:18:52 +01:00
homepage = "https://github.com/FDH2/UxPlay";
description = "AirPlay Unix mirroring server";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ azuwis ];
platforms = platforms.unix;
};
}