hamlib_4 4.5.2 -> 4.5.5 https://repology.org/project/hamlib/versions attrpath: hamlib_4 Checking auto update branch... No auto update branch exists Old version 4.5.2" not present in master derivation file with contents: { lib , stdenv , fetchurl , perl , swig , gd , ncurses , python3 , libxml2 , tcl , libusb-compat-0_1 , pkg-config , boost , libtool , perlPackages , pythonBindings ? true , tclBindings ? true , perlBindings ? true }: stdenv.mkDerivation rec { pname = "hamlib"; version = "4.5.5"; src = fetchurl { url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; sha256 = "sha256-YByJ8y7SJelSet49ZNDQXSMgLAWuIf+nflnXDuRZf80="; }; nativeBuildInputs = [ swig pkg-config libtool ]; buildInputs = [ gd libxml2 libusb-compat-0_1 boost ] ++ lib.optionals pythonBindings [ python3 ncurses ] ++ lib.optionals tclBindings [ tcl ] ++ lib.optionals perlBindings [ perl perlPackages.ExtUtilsMakeMaker ]; configureFlags = lib.optionals perlBindings [ "--with-perl-binding" ] ++ lib.optionals tclBindings [ "--with-tcl-binding" "--with-tcl=${tcl}/lib/" ] ++ lib.optionals pythonBindings [ "--with-python-binding" ]; meta = with lib; { description = "Runtime library to control radio transceivers and receivers"; longDescription = '' Hamlib provides a standardized programming interface that applications can use to send the appropriate commands to a radio. Also included in the package is a simple radio control program 'rigctl', which lets one control a radio transceiver or receiver, either from command line interface or in a text-oriented interactive interface. ''; license = with licenses; [ gpl2Plus lgpl2Plus ]; homepage = "https://hamlib.sourceforge.net"; maintainers = with maintainers; [ relrod ]; platforms = with platforms; unix; }; }