2022-11-26T13:55:23 libzbc 5.12.0 -> 5.13.0 https://github.com/westerndigitalcorporation/libzbc/releases 2022-11-26T13:55:25 attrpath: libzbc 2022-11-26T13:55:25 Checking auto update branch... 2022-11-26T13:55:25 No auto update branch exists 2022-11-26T13:55:26 Old version 5.12.0" not present in master derivation file with contents: { lib , stdenv , autoreconfHook , fetchFromGitHub , gtk3 , libtool , pkg-config , guiSupport ? false }: stdenv.mkDerivation rec { pname = "libzbc"; version = "5.13.0"; src = fetchFromGitHub { owner = "westerndigitalcorporation"; repo = "libzbc"; rev = "v${version}"; sha256 = "6xkA96bgQ2Ik1vEwkw7hwjMbjMSlopzv5ziTh60Mjx0="; }; nativeBuildInputs = [ autoreconfHook libtool ] ++ lib.optionals guiSupport [ pkg-config ]; buildInputs = lib.optionals guiSupport [ gtk3 ]; configureFlags = lib.optional guiSupport "--enable-gui"; meta = with lib; { description = "ZBC device manipulation library"; homepage = "https://github.com/westerndigitalcorporation/libzbc"; maintainers = with maintainers; [ zseri ]; license = with licenses; [ bsd2 lgpl3Plus ]; platforms = platforms.linux; }; }