2022-11-03T21:51:22 gmid 1.8.4 -> 1.8.5 https://repology.org/metapackage/gmid/versions 2022-11-03T21:51:25 attrpath: gmid 2022-11-03T21:51:25 Checking auto update branch... 2022-11-03T21:51:25 No auto update branch exists 2022-11-03T21:51:25 Old version 1.8.4" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, bison, libressl, libevent }: stdenv.mkDerivation rec { pname = "gmid"; version = "1.8.5"; src = fetchFromGitHub { owner = "omar-polo"; repo = pname; rev = version; hash = "sha256-XZcBcbSKfhXGlwAVkoXkEwASIghJfJIOebWPROy16Uo="; }; nativeBuildInputs = [ bison ]; buildInputs = [ libressl libevent ]; configureFlags = [ "PREFIX=${placeholder "out"}" ]; meta = with lib; { description = "Simple and secure Gemini server"; homepage = "https://gmid.omarpolo.com/"; license = licenses.isc; maintainers = with maintainers; [ sikmir ]; platforms = platforms.linux; }; }