Files
nixpkgs/pkgs/development/libraries/hamlib/default.nix
T

36 lines
1.3 KiB
Nix
Raw Normal View History

2017-02-10 09:30:24 +01:00
{stdenv, fetchurl, perl, python2, swig, gd, libxml2, tcl, libusb, pkgconfig,
2014-05-11 16:37:43 -04:00
boost, libtool, perlPackages }:
stdenv.mkDerivation rec {
2014-05-11 18:16:11 -04:00
pname = "hamlib";
2014-05-11 16:37:43 -04:00
version = "1.2.15.3";
2014-05-11 18:16:11 -04:00
name = "${pname}-${version}";
2014-05-11 16:37:43 -04:00
src = fetchurl {
2014-05-11 18:16:11 -04:00
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
2014-05-11 16:37:43 -04:00
sha256 = "0ppp6fc2h9d8p30j2s9wlqd620kmnny4wd8fc3jxd6gxwi4lbjm2";
};
2017-02-10 09:30:24 +01:00
buildInputs = [ perl perlPackages.ExtUtilsMakeMaker python2 swig gd libxml2
2014-05-11 16:37:43 -04:00
tcl libusb pkgconfig boost libtool ];
configureFlags = [ "--with-perl-binding" "--with-python-binding"
"--with-tcl-binding" "--with-rigmatrix" ];
meta = {
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 stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
homepage = http://hamlib.sourceforge.net;
maintainers = with stdenv.lib.maintainers; [ relrod ];
2016-08-02 20:50:55 +03:00
platforms = with stdenv.lib.platforms; unix;
2014-05-11 16:37:43 -04:00
};
}