2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2019-11-28 19:04:25 +01:00
|
|
|
, fetchurl
|
|
|
|
, python2
|
|
|
|
}:
|
|
|
|
python2.pkgs.buildPythonApplication rec {
|
2019-02-03 11:14:46 +01:00
|
|
|
pname = "chirp-daily";
|
2021-10-23 11:31:00 +02:00
|
|
|
version = "20211016";
|
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";
|
2021-10-23 11:31:00 +02:00
|
|
|
sha256 = "13xzqnhvnw6yipv4izkq0s9ykyl9pc5ifpr1ii8xfp28ch706qyw";
|
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
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-02-27 18:24:00 +01:00
|
|
|
description = "A free, open-source tool for programming your amateur radio";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://chirp.danplanet.com/";
|
2015-07-25 00:40:35 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|