chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / metar / package.nix
blob9f7defda371d23652e2a2bdffca9d00782c17e35
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   curl,
6 }:
8 stdenv.mkDerivation {
9   pname = "metar";
10   version = "unstable-2017-02-17";
12   src = fetchFromGitHub {
13     owner = "keesL";
14     repo = "metar";
15     rev = "20e9ca69faea330f6c2493b6829131c24cb55147";
16     sha256 = "1fgrlnpasqf1ihh9y6zy6mzzybqx0lxvh7gmv03rjdb55dr42dxj";
17   };
19   buildInputs = [ curl ];
21   meta = with lib; {
22     homepage = "https://github.com/keesL/metar";
23     description = "Downloads weather reports and optionally decodes them";
24     longDescription = ''
25       METAR reports are meteorogical weather reports for aviation. Metar is a small
26       program which downloads weather reports for user-specified stations and
27       optionally decodes them into a human-readable format.
29       Currently, metar supports decoding date/time, wind, visibility, cloud layers,
30       temperature, air pressure and weather phenomena, such as rain, fog, etc. Also,
31       more work in the area of clouds need to be done, as support for Cumulus or
32       Cumulunimbus is not yet decoded.
33     '';
34     license = licenses.gpl2Plus;
35     maintainers = with maintainers; [ zalakain ];
36     mainProgram = "metar";
37   };