827d3d3796
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/chirp-daily/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/gfgi7c2ps023ga27vx6s38y4gkgx1c54-chirp-daily-20180614/bin/.chirpw-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/gfgi7c2ps023ga27vx6s38y4gkgx1c54-chirp-daily-20180614/bin/chirpw had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 20180614 with grep in /nix/store/gfgi7c2ps023ga27vx6s38y4gkgx1c54-chirp-daily-20180614 - directory tree listing: https://gist.github.com/5a739e8fa0584360afb3f692d19e3771 - du listing: https://gist.github.com/e530a387cd61ae6e0b944b372041bd3d
37 lines
1019 B
Nix
37 lines
1019 B
Nix
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
|
|
, python, pyserial, pygtk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chirp-daily-${version}";
|
|
version = "20180614";
|
|
|
|
src = fetchurl {
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
|
|
sha256 = "011bxd418hrl88rhp6lhja68b2kvnm1b845v41g9qfsagvfmbv3g";
|
|
};
|
|
|
|
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 = https://chirp.danplanet.com/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.the-kenny ];
|
|
};
|
|
}
|