neatvnc 0.7.1 -> 0.7.2 https://repology.org/project/neatvnc/versions attrpath: neatvnc Checking auto update branch... No auto update branch exists Old version 0.7.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , meson , ninja , pkg-config , aml , ffmpeg , gnutls , libjpeg_turbo , mesa , pixman , zlib }: stdenv.mkDerivation rec { pname = "neatvnc"; version = "0.7.2"; src = fetchFromGitHub { owner = "any1"; repo = pname; rev = "v${version}"; sha256 = "sha256-S2LMD15MYd/t/Z8B1OQ0hVrZQLR6Gf4LB45mhmDwblg="; }; strictDeps = true; nativeBuildInputs = [ meson ninja pkg-config ]; buildInputs = [ aml ffmpeg gnutls libjpeg_turbo mesa pixman zlib ]; mesonFlags = [ (lib.mesonBool "tests" true) ]; doCheck = true; meta = with lib; { description = "A VNC server library"; longDescription = '' This is a liberally licensed VNC server library that's intended to be fast and neat. Goals: - Speed - Clean interface - Interoperability with the Freedesktop.org ecosystem ''; inherit (src.meta) homepage; changelog = "https://github.com/any1/neatvnc/releases/tag/v${version}"; license = licenses.isc; platforms = platforms.linux; maintainers = with maintainers; [ nickcao ]; }; }