Chirp: New package.
This commit is contained in:
parent
e4956ba0ca
commit
3210555223
41
pkgs/applications/misc/chirp/default.nix
Normal file
41
pkgs/applications/misc/chirp/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv, fetchurl, libxml2Python, libxslt, makeWrapper
|
||||
, python, pyserial, pygtk
|
||||
}:
|
||||
let
|
||||
version = "0.4.1";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chirp-${version}";
|
||||
inherit version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://chirp.danplanet.com/download/0.4.1/chirp-${version}.tar.gz";
|
||||
sha256 = "17iihghqjprn2hld193qw0yl1kkrf6m0fp57l7ibkflxr0nnb7cc";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
pyserial pygtk libxml2Python libxslt pyserial
|
||||
];
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10829,6 +10829,10 @@ let
|
||||
|
||||
chatzilla = callPackage ../applications/networking/irc/chatzilla { };
|
||||
|
||||
chirp = callPackage ../applications/misc/chirp {
|
||||
inherit (pythonPackages) pyserial pygtk;
|
||||
};
|
||||
|
||||
chromium = callPackage ../applications/networking/browsers/chromium {
|
||||
channel = "stable";
|
||||
pulseSupport = config.pulseaudio or true;
|
||||
|
Loading…
Reference in New Issue
Block a user