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

37 lines
1019 B
Nix
Raw Normal View History

2015-07-24 23:40:35 +01:00
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
2017-03-20 00:23:57 +00:00
, python, pyserial, pygtk }:
2015-07-24 23:40:35 +01:00
stdenv.mkDerivation rec {
name = "chirp-daily-${version}";
version = "20180614";
2015-07-24 23:40:35 +01:00
src = fetchurl {
2018-05-01 04:03:23 +01:00
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
sha256 = "011bxd418hrl88rhp6lhja68b2kvnm1b845v41g9qfsagvfmbv3g";
2015-07-24 23:40:35 +01:00
};
2017-03-20 00:23:57 +00:00
nativeBuildInputs = [ makeWrapper ];
2015-07-24 23:40:35 +01:00
buildInputs = [
pyserial pygtk libxml2Python libxslt pyserial
];
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 04:03:23 +01:00
homepage = https://chirp.danplanet.com/;
2015-07-24 23:40:35 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.the-kenny ];
};
}