forked from mirrors/nixpkgs
metar: init at 20161013.1
This commit is contained in:
parent
33e10b8334
commit
c3cbbd09a0
|
@ -587,6 +587,7 @@
|
||||||
yurrriq = "Eric Bailey <eric@ericb.me>";
|
yurrriq = "Eric Bailey <eric@ericb.me>";
|
||||||
z77z = "Marco Maggesi <maggesi@math.unifi.it>";
|
z77z = "Marco Maggesi <maggesi@math.unifi.it>";
|
||||||
zagy = "Christian Zagrodnick <cz@flyingcircus.io>";
|
zagy = "Christian Zagrodnick <cz@flyingcircus.io>";
|
||||||
|
zalakain = "Unai Zalakain <contact@unaizalakain.info>";
|
||||||
zauberpony = "Elmar Athmer <elmar@athmer.org>";
|
zauberpony = "Elmar Athmer <elmar@athmer.org>";
|
||||||
zef = "Zef Hemel <zef@zef.me>";
|
zef = "Zef Hemel <zef@zef.me>";
|
||||||
zimbatm = "zimbatm <zimbatm@zimbatm.com>";
|
zimbatm = "zimbatm <zimbatm@zimbatm.com>";
|
||||||
|
|
30
pkgs/applications/misc/metar/default.nix
Normal file
30
pkgs/applications/misc/metar/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, fetchgit, curl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "metar-20161013.1";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/keesL/metar.git";
|
||||||
|
rev = "20e9ca69faea330f6c2493b6829131c24cb55147";
|
||||||
|
sha256 = "1fgrlnpasqf1ihh9y6zy6mzzybqx0lxvh7gmv03rjdb55dr42dxj";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ curl ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/keesL/metar;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.zalakain ];
|
||||||
|
description = "Downloads weather reports and optionally decodes them";
|
||||||
|
longDescription = ''
|
||||||
|
METAR reports are meteorogical weather reports for aviation. Metar is a small
|
||||||
|
program which downloads weather reports for user-specified stations and
|
||||||
|
optionally decodes them into a human-readable format.
|
||||||
|
|
||||||
|
Currently, metar supports decoding date/time, wind, visibility, cloud layers,
|
||||||
|
temperature, air pressure and weather phenomena, such as rain, fog, etc. Also,
|
||||||
|
more work in the area of clouds need to be done, as support for Cumulus or
|
||||||
|
Cumulunimbus is not yet decoded.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
|
@ -3020,6 +3020,8 @@ with pkgs;
|
||||||
|
|
||||||
metamorphose2 = callPackage ../applications/misc/metamorphose2 { };
|
metamorphose2 = callPackage ../applications/misc/metamorphose2 { };
|
||||||
|
|
||||||
|
metar = callPackage ../applications/misc/metar { };
|
||||||
|
|
||||||
mfcuk = callPackage ../tools/security/mfcuk { };
|
mfcuk = callPackage ../tools/security/mfcuk { };
|
||||||
|
|
||||||
mfoc = callPackage ../tools/security/mfoc { };
|
mfoc = callPackage ../tools/security/mfoc { };
|
||||||
|
|
Loading…
Reference in a new issue