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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
623 B
Nix
Raw Normal View History

{ lib
, 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
};
propagatedBuildInputs = with python2.pkgs; [
pygtk pyserial libxml2 future
2015-07-25 00:40:35 +02:00
];
meta = with lib; {
description = "A free, open-source tool for programming your amateur radio";
homepage = "https://chirp.danplanet.com/";
2015-07-25 00:40:35 +02:00
license = licenses.gpl3;
platforms = platforms.linux;
};
}