nixpkgs/pkgs/applications/networking/weather/meteo/default.nix

49 lines
1.0 KiB
Nix
Raw Normal View History

2018-08-20 13:31:18 -07:00
{ stdenv, fetchFromGitLab, vala, python3, pkgconfig, meson, ninja, gtk3
, json-glib, libsoup, webkitgtk, geocode-glib
, libappindicator, desktop-file-utils, appstream, wrapGAppsHook }:
2018-09-08 02:53:48 -07:00
stdenv.mkDerivation rec {
pname = "meteo";
version = "0.9.7";
2018-09-08 02:53:48 -07:00
src = fetchFromGitLab {
owner = "bitseater";
repo = pname;
rev = version;
sha256 = "014x3mg2dc58h1qwy2nrz3a5mzdnbzish8zgn3x6lj6szfz5c72n";
2018-09-08 02:53:48 -07:00
};
nativeBuildInputs = [
appstream
desktop-file-utils
meson
ninja
pkgconfig
python3
vala
wrapGAppsHook
];
buildInputs = [
2019-02-13 13:47:50 -08:00
geocode-glib
2018-09-08 02:53:48 -07:00
gtk3
json-glib
libappindicator
libsoup
webkitgtk
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
meta = with stdenv.lib; {
description = "Know the forecast of the next hours & days";
homepage = https://gitlab.com/bitseater/meteo;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.linux;
};
}