Merge pull request #2621 from CodeBlock/fldigi
Package hamlib and fldigi; Bump perlPackages.ExtUtilsMakeMaker
This commit is contained in:
commit
21cb0c9bbb
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, fetchurl, hamlib, fltk13, libjpeg, libpng, portaudio, libsndfile,
|
||||||
|
libsamplerate, pulseaudio, libXinerama, gettext, pkgconfig, alsaLib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "3.21.82";
|
||||||
|
pname = "fldigi";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.w1hkj.com/downloads/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "1q2fc1zm9kfsjir4g6fh95vmjdq984iyxfcs6q4gjqy1znhqcyqs";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libXinerama gettext hamlib fltk13 libjpeg libpng portaudio
|
||||||
|
libsndfile libsamplerate pulseaudio pkgconfig alsaLib ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Digital modem program";
|
||||||
|
homepage = http://www.w1hkj.com/Fldigi.html;
|
||||||
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ relrod ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{stdenv, fetchurl, perl, python, swig, gd, libxml2, tcl, libusb, pkgconfig,
|
||||||
|
boost, libtool, perlPackages }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "hamlib";
|
||||||
|
version = "1.2.15.3";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "0ppp6fc2h9d8p30j2s9wlqd620kmnny4wd8fc3jxd6gxwi4lbjm2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ perl perlPackages.ExtUtilsMakeMaker python swig gd libxml2
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4713,6 +4713,8 @@ let
|
||||||
|
|
||||||
gwenhywfar = callPackage ../development/libraries/gwenhywfar { };
|
gwenhywfar = callPackage ../development/libraries/gwenhywfar { };
|
||||||
|
|
||||||
|
hamlib = callPackage ../development/libraries/hamlib { };
|
||||||
|
|
||||||
# TODO : Add MIT Kerberos and let admin choose.
|
# TODO : Add MIT Kerberos and let admin choose.
|
||||||
kerberos = heimdal;
|
kerberos = heimdal;
|
||||||
|
|
||||||
|
@ -8227,6 +8229,8 @@ let
|
||||||
inherit stdenv fetchurl openssl;
|
inherit stdenv fetchurl openssl;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fldigi = callPackage ../applications/audio/fldigi { };
|
||||||
|
|
||||||
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
||||||
|
|
||||||
fossil = callPackage ../applications/version-management/fossil { };
|
fossil = callPackage ../applications/version-management/fossil { };
|
||||||
|
|
|
@ -3319,10 +3319,10 @@ let self = _self // overrides; _self = with self; {
|
||||||
};
|
};
|
||||||
|
|
||||||
ExtUtilsMakeMaker = buildPerlPackage rec{
|
ExtUtilsMakeMaker = buildPerlPackage rec{
|
||||||
name = "ExtUtils-MakeMaker-6.84";
|
name = "ExtUtils-MakeMaker-6.98";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://cpan/modules/by-module/ExtUtils/${name}.tar.gz";
|
url = "mirror://cpan/modules/by-module/ExtUtils/${name}.tar.gz";
|
||||||
sha256 = "1s3fn1fkm9l6pjhz7dbzsc6nhw1jm2hpf08fqhsqh1h50nj5pv5b";
|
sha256 = "1vv3v9rc2dnx8amwa7lpdywg3lakx7yv2n38qvfbk9jzkqc27c1f";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
[ ParseCPANMeta version JSONPP CPANMetaYAML CPANMeta
|
[ ParseCPANMeta version JSONPP CPANMetaYAML CPANMeta
|
||||||
|
|
Loading…
Reference in New Issue