chirp: 20220823 -> unstable-2022-12-07

This commit is contained in:
Weijia Wang 2022-12-08 04:38:04 +01:00
parent 8cdc50c434
commit 2e77af64e9

View file

@ -1,24 +1,39 @@
{ lib { lib
, fetchurl , fetchFromGitHub
, python2 , python3
, unstableGitUpdater
}: }:
python2.pkgs.buildPythonApplication rec {
pname = "chirp-daily";
version = "20220823";
src = fetchurl { python3.pkgs.buildPythonApplication rec {
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz"; pname = "chirp";
sha256 = "sha256-V+8HQAYU2XjOYeku0XEHqkY4m0XjiUBxM61QcupnlVM="; version = "unstable-2022-12-07";
src = fetchFromGitHub {
owner = "kk7ds";
repo = "chirp";
rev = "dc0c98d22423b496faf0a86296a6ec0bb3b3e11a";
hash = "sha256-z0xD11CB7Vt8k0dPXE+E5ZD9XAFwWNxjnUs25/Gd7zI=";
}; };
propagatedBuildInputs = with python2.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
pygtk pyserial libxml2 future future
pyserial
requests
six
wxPython_4_2
]; ];
# "running build_ext" fails with no output
doCheck = false;
passthru.updateScript = unstableGitUpdater {
branch = "py3";
};
meta = with lib; { meta = with lib; {
description = "A free, open-source tool for programming your amateur radio"; description = "A free, open-source tool for programming your amateur radio";
homepage = "https://chirp.danplanet.com/"; homepage = "https://chirp.danplanet.com/";
license = licenses.gpl3; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }