ebusd 23.2 -> 23.3 https://repology.org/project/ebusd/versions attrpath: ebusd Checking auto update branch... No auto update branch exists Old version 23.2" not present in master derivation file with contents: { lib, stdenv, pkgs, fetchFromGitHub, argparse, mosquitto, cmake, autoconf, automake, libtool, pkg-config, openssl }: stdenv.mkDerivation rec { pname = "ebusd"; version = "23.3"; src = fetchFromGitHub { owner = "john30"; repo = "ebusd"; rev = version; sha256 = "sha256-K3gZ5OudNA92S38U1+HndxjA7OVfh2ymYf8OetB646M="; }; nativeBuildInputs = [ cmake autoconf automake libtool pkg-config ]; buildInputs = [ argparse mosquitto openssl ]; patches = [ ./patches/ebusd-cmake.patch ]; cmakeFlags = [ "-DCMAKE_INSTALL_SYSCONFDIR=${placeholder "out"}/etc" "-DCMAKE_INSTALL_BINDIR=${placeholder "out"}/bin" "-DCMAKE_INSTALL_LOCALSTATEDIR=${placeholder "TMPDIR"}" ]; postInstall = '' mv $out/usr/bin $out rmdir $out/usr ''; meta = with lib; { description = "ebusd"; homepage = "https://github.com/john30/ebusd"; license = licenses.gpl3Only; maintainers = with maintainers; [ nathan-gs ]; platforms = platforms.linux; }; }