2022-12-16T14:47:05 ell 0.53 -> 0.54 https://repology.org/metapackage/ell/versions 2022-12-16T14:47:08 attrpath: ell 2022-12-16T14:47:08 Checking auto update branch... 2022-12-16T14:47:08 No auto update branch exists 2022-12-16T14:47:09 Old version 0.53" not present in staging derivation file with contents: { lib, stdenv , fetchgit , autoreconfHook , pkg-config , dbus }: stdenv.mkDerivation rec { pname = "ell"; version = "0.54"; outputs = [ "out" "dev" ]; src = fetchgit { url = "https://git.kernel.org/pub/scm/libs/ell/ell.git"; rev = version; sha256 = "sha256-Oi+S4DWXuTUL36Xh3iWIZj9rdN2qUDHmZiFSH1csW+8="; }; nativeBuildInputs = [ pkg-config autoreconfHook ]; checkInputs = [ dbus ]; enableParallelBuilding = true; doCheck = true; meta = with lib; { homepage = "https://git.kernel.org/pub/scm/libs/ell/ell.git"; description = "Embedded Linux Library"; longDescription = '' The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons. It typically has no dependencies other than the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems. ''; changelog = "https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog?h=${version}"; license = licenses.lgpl21Plus; platforms = platforms.linux; maintainers = with maintainers; [ mic92 dtzWill maxeaubrey ]; }; }