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

37 lines
1,004 B
Nix
Raw Normal View History

2015-07-24 22:40:35 +00:00
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
, pyserial, pygtk }:
2017-03-20 00:23:57 +00:00
2015-07-24 22:40:35 +00:00
stdenv.mkDerivation rec {
2019-02-03 10:14:46 +00:00
pname = "chirp-daily";
version = "20190718";
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";
sha256 = "1zngdqqqrlm8qpv8dzinamhwq6rr8zcq7db3vb284wrq0jcvrry5";
2015-07-24 22:40:35 +00:00
};
2017-03-20 00:23:57 +00:00
nativeBuildInputs = [ makeWrapper ];
2015-07-24 22:40:35 +00:00
buildInputs = [
pyserial pygtk libxml2Python libxslt
2015-07-24 22:40:35 +00:00
];
installPhase = ''
mkdir -p $out/bin $out/share/chirp
cp -r . $out/share/chirp/
ln -s $out/share/chirp/chirpw $out/bin/chirpw
for file in "$out"/bin/*; do
wrapProgram "$file" \
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath "$out")
done
'';
meta = with stdenv.lib; {
description = "A free, open-source tool for programming your amateur radio";
2018-05-01 03:03:23 +00:00
homepage = https://chirp.danplanet.com/;
2015-07-24 22:40:35 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.the-kenny ];
};
}