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

37 lines
1,013 B
Nix
Raw Normal View History

2015-07-25 00:40:35 +02:00
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
, pyserial, pygtk }:
2017-03-20 01:23:57 +01:00
2015-07-25 00:40:35 +02:00
stdenv.mkDerivation rec {
2019-02-03 11:14:46 +01:00
pname = "chirp-daily";
2019-03-08 23:31:15 +01:00
version = "20190304";
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";
2019-03-08 23:31:15 +01:00
sha256 = "1m18f7j0bdimp0fvs5ms02amd5pzis581hqn38y8qffny4y9f6ij";
2015-07-25 00:40:35 +02:00
};
2017-03-20 01:23:57 +01:00
nativeBuildInputs = [ makeWrapper ];
2015-07-25 00:40:35 +02: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 05:03:23 +02:00
homepage = https://chirp.danplanet.com/;
2015-07-25 00:40:35 +02:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.the-kenny ];
};
}