neatvnc 0.5.4 -> 0.6.0 https://repology.org/metapackage/neatvnc/versions attrpath: neatvnc Checking auto update branch... No auto update branch exists Old version 0.5.4" 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.6.0"; src = fetchFromGitHub { owner = "any1"; repo = pname; rev = "v${version}"; sha256 = "sha256-3hNdgfAJGJkMXdB86+u3bKwrvXoMei1YCFXDG4ObkU4="; }; 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 ]; }; }