ea80663493
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/i289vfzp7kk8h7q27cxcyfsp92yjsgk6-chirp-daily-20180606/bin/.chirpw-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/i289vfzp7kk8h7q27cxcyfsp92yjsgk6-chirp-daily-20180606/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 20180606 with grep in /nix/store/i289vfzp7kk8h7q27cxcyfsp92yjsgk6-chirp-daily-20180606 - directory tree listing: https://gist.github.com/17376dee8e40c9f3de24818bb3278341 - du listing: https://gist.github.com/aefa3450ce2ed4ccd781360dc0a1de4e
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 = "20180606";
|
|
|
|
src = fetchurl {
|
|
url = "https://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
|
|
sha256 = "1v1s02675gyghhxasp4pxjrifkgshc82p99haxph1yzkq7gsf03w";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|