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