forked from mirrors/nixpkgs
26 lines
669 B
Nix
26 lines
669 B
Nix
{ stdenv
|
|
, fetchurl
|
|
, python2
|
|
}:
|
|
python2.pkgs.buildPythonApplication rec {
|
|
pname = "chirp-daily";
|
|
version = "20191123";
|
|
|
|
src = fetchurl {
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "11wzk0c9fa3gp185gyd47g3sh7gfallw7qapr6qp913q2zfmif8v";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2.pkgs; [
|
|
pygtk pyserial libxml2
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free, open-source tool for programming your amateur radio";
|
|
homepage = https://chirp.danplanet.com/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.the-kenny ];
|
|
};
|
|
}
|