2022-12-09T06:49:05 hwdata 0.363 -> 0.365 https://github.com/vcrhonek/hwdata/releases 2022-12-09T06:49:07 attrpath: hwdata 2022-12-09T06:49:07 Checking auto update branch... 2022-12-09T06:49:07 No auto update branch exists 2022-12-09T06:49:08 Old version 0.363" not present in staging derivation file with contents: { lib, stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "hwdata"; version = "0.364"; src = fetchFromGitHub { owner = "vcrhonek"; repo = "hwdata"; rev = "v${version}"; sha256 = "sha256-9fGYoyj7vN3j72H+6jv/R0MaWPZ+4UNQhCSWnZRZZS4="; }; postPatch = '' patchShebangs ./configure ''; configureFlags = [ "--datadir=${placeholder "out"}/share" ]; doCheck = false; # this does build machine-specific checks (e.g. enumerates PCI bus) meta = { homepage = "https://github.com/vcrhonek/hwdata"; description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.all; }; }