2019-11-28 18:04:25 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, python2
|
|
|
|
}:
|
|
|
|
python2.pkgs.buildPythonApplication rec {
|
2019-02-03 10:14:46 +00:00
|
|
|
pname = "chirp-daily";
|
2019-11-28 18:04:25 +00:00
|
|
|
version = "20191123";
|
2015-07-24 23:40:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-03 10:14:46 +00:00
|
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz";
|
2019-11-28 18:04:25 +00:00
|
|
|
sha256 = "11wzk0c9fa3gp185gyd47g3sh7gfallw7qapr6qp913q2zfmif8v";
|
2015-07-24 23:40:35 +01:00
|
|
|
};
|
|
|
|
|
2019-11-28 18:04:25 +00:00
|
|
|
propagatedBuildInputs = with python2.pkgs; [
|
|
|
|
pygtk pyserial libxml2
|
2015-07-24 23:40:35 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "A free, open-source tool for programming your amateur radio";
|
2018-05-01 04:03:23 +01:00
|
|
|
homepage = https://chirp.danplanet.com/;
|
2015-07-24 23:40:35 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.the-kenny ];
|
|
|
|
};
|
|
|
|
}
|