nixpkgs/pkgs/applications/radio/chirp/default.nix

25 lines
623 B
Nix
Raw Normal View History

{ lib
, fetchurl
, python2
}:
python2.pkgs.buildPythonApplication rec {
2019-02-03 10:14:46 +00:00
pname = "chirp-daily";
2021-07-30 20:40:03 +00:00
version = "20210724";
2015-07-24 22:40:35 +00:00
src = fetchurl {
2019-02-03 10:14:46 +00:00
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${pname}-${version}.tar.gz";
2021-07-30 20:40:03 +00:00
sha256 = "0wddzls7r0l5b8vvljnmrj5lmmp7zkzl4h73pyigyf9nbhaklybb";
2015-07-24 22:40:35 +00:00
};
propagatedBuildInputs = with python2.pkgs; [
pygtk pyserial libxml2 future
2015-07-24 22:40:35 +00:00
];
meta = with lib; {
description = "A free, open-source tool for programming your amateur radio";
homepage = "https://chirp.danplanet.com/";
2015-07-24 22:40:35 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
};
}