25 lines
623 B
Nix
25 lines
623 B
Nix
{ lib
|
|
, fetchurl
|
|
, python2
|
|
}:
|
|
python2.pkgs.buildPythonApplication rec {
|
|
pname = "chirp-daily";
|
|
version = "20211016";
|
|
|
|
src = fetchurl {
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "13xzqnhvnw6yipv4izkq0s9ykyl9pc5ifpr1ii8xfp28ch706qyw";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2.pkgs; [
|
|
pygtk pyserial libxml2 future
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A free, open-source tool for programming your amateur radio";
|
|
homepage = "https://chirp.danplanet.com/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|