Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1003 B
Nix
58 lines
1003 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
docutils,
|
|
fetchFromGitLab,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gupnp_1_6,
|
|
gupnp-av,
|
|
gupnp-dlna,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dleyna";
|
|
version = "0.8.3";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "dLeyna";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-ti4yF8sALpWyrdQTt/jVrMKQ4PLhakEi620fJNMxT0c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
docutils
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gupnp_1_6
|
|
gupnp-dlna
|
|
gupnp-av
|
|
gupnp-dlna
|
|
];
|
|
|
|
mesonFlags = [
|
|
# Sphinx docs not installed, do not depend on sphinx
|
|
"-Ddocs=false"
|
|
];
|
|
|
|
meta = {
|
|
description = "Library of utility functions that are used by the higher level dLeyna";
|
|
homepage = "https://gitlab.gnome.org/World/dLeyna";
|
|
maintainers = with lib.maintainers; [ jtojnar ];
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.lgpl21Only;
|
|
};
|
|
})
|