nixpkgs/pkgs/development/libraries/dleyna-renderer/default.nix

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

76 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, meson
, ninja
, pkg-config
, dleyna-connector-dbus
, dleyna-core
, gssdp
, gupnp
, gupnp-av
, gupnp-dlna
, libsoup
, makeWrapper
, docbook-xsl-nons
, libxslt
}:
2017-08-31 00:24:13 +02:00
stdenv.mkDerivation rec {
2018-05-28 14:59:57 +02:00
pname = "dleyna-renderer";
2021-10-31 10:04:47 +01:00
version = "0.7.2";
2017-08-31 00:24:13 +02:00
src = fetchFromGitHub {
owner = "phako";
2018-05-28 14:59:57 +02:00
repo = pname;
rev = "v${version}";
2021-10-31 10:04:47 +01:00
sha256 = "sha256-bGasT3XCa7QHV3D7z59TSHoqWksNSIgaO0z9zYfHHuw=";
2017-08-31 00:24:13 +02:00
};
patches = [
# Fix build with meson 1.2. We use the gentoo patch intead of the
# usptream one because the latter only applies on the libsoup_3 based
# merged dLeyna project.
# https://gitlab.gnome.org/World/dLeyna/-/merge_requests/6
(fetchpatch {
url = "https://github.com/gentoo/gentoo/raw/2ebe20ff4cda180cc248d31a021107d08ecf39d9/net-libs/dleyna-renderer/files/meson-1.2.0.patch";
sha256 = "sha256-/p2OaPO5ghWtPotwIir2TtcFF5IDFN9FFuyqPHevuFI=";
})
];
nativeBuildInputs = [
meson
ninja
pkg-config
makeWrapper
# manpage
docbook-xsl-nons
libxslt # for xsltproc
];
buildInputs = [
dleyna-core
dleyna-connector-dbus # runtime dependency to be picked up to DLEYNA_CONNECTOR_PATH
gssdp
gupnp
gupnp-av
gupnp-dlna
libsoup
];
2017-08-31 00:24:13 +02:00
preFixup = ''
wrapProgram "$out/libexec/dleyna-renderer-service" \
--set DLEYNA_CONNECTOR_PATH "$DLEYNA_CONNECTOR_PATH"
'';
meta = with lib; {
2017-08-31 00:24:13 +02:00
description = "Library to discover and manipulate Digital Media Renderers";
homepage = "https://github.com/phako/dleyna-renderer";
maintainers = with maintainers; [ jtojnar ];
2022-10-20 03:04:25 +02:00
platforms = platforms.unix;
license = licenses.lgpl21Only;
2017-08-31 00:24:13 +02:00
};
}