dleyna-core: 0.7.0 -> 0.8.3

closes #399076

Grimmauld 562172f0 4f1cb3ee

+58 -61
-53
pkgs/by-name/dl/dleyna-core/package.nix
··· 1 - { 2 - stdenv, 3 - lib, 4 - fetchFromGitHub, 5 - meson, 6 - ninja, 7 - pkg-config, 8 - gupnp, 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "dleyna-core"; 13 - version = "0.7.0"; 14 - 15 - outputs = [ 16 - "out" 17 - "dev" 18 - ]; 19 - 20 - setupHook = ./setup-hook.sh; 21 - 22 - src = fetchFromGitHub { 23 - owner = "phako"; 24 - repo = "dleyna-core"; 25 - rev = "v${version}"; 26 - sha256 = "i4L9+iyAdBNtgImbD54jkjYL5hvzeZ2OaAyFrcFmuG0="; 27 - }; 28 - 29 - nativeBuildInputs = [ 30 - meson 31 - ninja 32 - pkg-config 33 - ]; 34 - 35 - propagatedBuildInputs = [ 36 - gupnp 37 - ]; 38 - 39 - env.NIX_CFLAGS_COMPILE = toString ( 40 - lib.optionals stdenv.cc.isClang [ 41 - "-Wno-error=implicit-function-declaration" 42 - "-Wno-error=int-conversion" 43 - ] 44 - ); 45 - 46 - meta = with lib; { 47 - description = "Library of utility functions that are used by the higher level dLeyna"; 48 - homepage = "https://github.com/phako/dleyna-core"; 49 - maintainers = with maintainers; [ jtojnar ]; 50 - platforms = platforms.unix; 51 - license = licenses.lgpl21Only; 52 - }; 53 - }
-8
pkgs/by-name/dl/dleyna-core/setup-hook.sh
··· 1 - addDleynaConnectorPath () { 2 - if test -d "$1/lib/dleyna-1.0/connectors" 3 - then 4 - export DLEYNA_CONNECTOR_PATH="${DLEYNA_CONNECTOR_PATH-}${DLEYNA_CONNECTOR_PATH:+:}$1/lib/dleyna-1.0/connectors" 5 - fi 6 - } 7 - 8 - addEnvHooks "$targetOffset" addDleynaConnectorPath
+57
pkgs/by-name/dl/dleyna/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + docutils, 5 + fetchFromGitLab, 6 + meson, 7 + ninja, 8 + pkg-config, 9 + gupnp_1_6, 10 + gupnp-av, 11 + gupnp-dlna, 12 + }: 13 + 14 + stdenv.mkDerivation (finalAttrs: { 15 + pname = "dleyna"; 16 + version = "0.8.3"; 17 + 18 + outputs = [ 19 + "out" 20 + "dev" 21 + ]; 22 + 23 + src = fetchFromGitLab { 24 + domain = "gitlab.gnome.org"; 25 + owner = "World"; 26 + repo = "dLeyna"; 27 + tag = "v${finalAttrs.version}"; 28 + hash = "sha256-ti4yF8sALpWyrdQTt/jVrMKQ4PLhakEi620fJNMxT0c="; 29 + }; 30 + 31 + nativeBuildInputs = [ 32 + meson 33 + ninja 34 + docutils 35 + pkg-config 36 + ]; 37 + 38 + buildInputs = [ 39 + gupnp_1_6 40 + gupnp-dlna 41 + gupnp-av 42 + gupnp-dlna 43 + ]; 44 + 45 + mesonFlags = [ 46 + # Sphinx docs not installed, do not depend on sphinx 47 + "-Ddocs=false" 48 + ]; 49 + 50 + meta = { 51 + description = "Library of utility functions that are used by the higher level dLeyna"; 52 + homepage = "https://gitlab.gnome.org/World/dLeyna"; 53 + maintainers = with lib.maintainers; [ jtojnar ]; 54 + platforms = lib.platforms.unix; 55 + license = lib.licenses.lgpl21Only; 56 + }; 57 + })
+1
pkgs/top-level/aliases.nix
··· 500 500 dibbler = throw "dibbler was removed because it is not maintained anymore"; # Added 2024-05-14 501 501 dillong = throw "'dillong' has been removed, as upstream is abandoned since 2021-12-13. Use either 'dillo' or 'dillo-plus'. The latter integrates features from dillong."; # Added 2024-10-07 502 502 diskonaut = throw "'diskonaut' was removed due to lack of upstream maintenance"; # Added 2025-01-25 503 + dleyna-core = dleyna; # Added 2025-04-19 503 504 dnnl = throw "'dnnl' has been renamed to/replaced by 'oneDNN'"; # Converted to throw 2024-10-17 504 505 dnscrypt-wrapper = throw "dnscrypt-wrapper was removed because it has been effectively unmaintained since 2018. Use DNSCcrypt support in dnsdist instead"; # Added 2024-09-14 505 506 docear = throw "Docear was removed because it was unmaintained upstream. JabRef, Zotero, or Mendeley are potential replacements."; # Added 2024-11-02