ddcutil 1.3.2 -> 1.4.1 https://repology.org/metapackage/ddcutil/versions attrpath: ddcutil Checking auto update branch... No auto update branch exists Old version 1.3.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , pkg-config , glib , i2c-tools , udev , kmod , libgudev , libusb1 , libdrm , xorg }: stdenv.mkDerivation rec { pname = "ddcutil"; version = "1.4.1"; src = fetchFromGitHub { owner = "rockowitz"; repo = pname; rev = "v${version}"; sha256 = "sha256-y3mubdInYa4gpxhdw2JcRhnhd12O7jNq/oF3qoP82LU="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ glib i2c-tools kmod libdrm libgudev libusb1 udev xorg.libXrandr ]; enableParallelBuilding = true; meta = with lib; { homepage = "http://www.ddcutil.com/"; description = "Query and change Linux monitor settings using DDC/CI and USB"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ rnhmjoj ]; changelog = "https://github.com/rockowitz/ddcutil/blob/v${version}/CHANGELOG.md"; }; }