2015-07-24 22:40:35 +00:00
|
|
|
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
|
2018-07-21 00:44:44 +00:00
|
|
|
, 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";
|
2019-03-01 23:31:34 +00:00
|
|
|
version = "20190206";
|
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";
|
2019-03-01 23:31:34 +00:00
|
|
|
sha256 = "16agynxjl2b6y9ly2fl1imgy51k4fqnzn1w6bah2gnmifssxfny3";
|
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 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; {
|
2016-02-27 17:24:00 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|