d9a1e79c7b
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/b4iyklh8y10knkzrrw45dsz95hvs38mr-chirp-daily-20180611/bin/.chirpw-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/b4iyklh8y10knkzrrw45dsz95hvs38mr-chirp-daily-20180611/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 20180611 with grep in /nix/store/b4iyklh8y10knkzrrw45dsz95hvs38mr-chirp-daily-20180611 - directory tree listing: https://gist.github.com/c4bf3ab0db022bdfe692715110e6c3d6 - du listing: https://gist.github.com/1c1987a895d93ba39651f4037e030aad
36 lines
1,019 B
Nix
36 lines
1,019 B
Nix
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
|
|
, python, pyserial, pygtk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chirp-daily-${version}";
|
|
version = "20180611";
|
|
|
|
src = fetchurl {
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
|
|
sha256 = "1569gnbs4jb53n58wdkdjrxx9nrayljn5v0wqacn5zfr87s16zxf";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|