2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2019-11-28 10:04:25 -08:00
|
|
|
, fetchurl
|
|
|
|
, python2
|
|
|
|
}:
|
|
|
|
python2.pkgs.buildPythonApplication rec {
|
2019-02-03 02:14:46 -08:00
|
|
|
pname = "chirp-daily";
|
2020-08-24 23:27:50 -07:00
|
|
|
version = "20200807";
|
2015-07-24 15:40:35 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-03 02:14:46 -08:00
|
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz";
|
2020-08-24 23:27:50 -07:00
|
|
|
sha256 = "60b682793698e6427ad485546eae3a044b8290a220f190633158a2fb0e942fa0";
|
2015-07-24 15:40:35 -07:00
|
|
|
};
|
|
|
|
|
2019-11-28 10:04:25 -08:00
|
|
|
propagatedBuildInputs = with python2.pkgs; [
|
2020-01-01 12:45:27 -08:00
|
|
|
pygtk pyserial libxml2 future
|
2015-07-24 15:40:35 -07:00
|
|
|
];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-02-27 09:24:00 -08:00
|
|
|
description = "A free, open-source tool for programming your amateur radio";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://chirp.danplanet.com/";
|
2015-07-24 15:40:35 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|