37 lines
1017 B
Nix
37 lines
1017 B
Nix
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
|
|
, python, pyserial, pygtk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chirp-daily-${version}";
|
|
version = "20170714";
|
|
|
|
src = fetchurl {
|
|
url = "http://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
|
|
sha256 = "1pglsmc0pf50w7df4vv30z5hmdxy4aqjl3qrv8kfiax7rld21gcy";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
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";
|
|
homepage = http://chirp.danplanet.com/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.the-kenny ];
|
|
};
|
|
}
|