2018-08-20 21:31:18 +01:00
|
|
|
{ stdenv, fetchFromGitLab, vala, python3, pkgconfig, meson, ninja, gtk3
|
2019-06-16 20:59:06 +01:00
|
|
|
, json-glib, libsoup, webkitgtk, geocode-glib
|
2019-09-12 15:25:05 +01:00
|
|
|
, libappindicator, desktop-file-utils, appstream, wrapGAppsHook }:
|
2018-09-08 10:53:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "meteo";
|
2019-11-20 10:29:03 +00:00
|
|
|
version = "0.9.8";
|
2018-09-08 10:53:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "bitseater";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-11-20 10:29:03 +00:00
|
|
|
sha256 = "1ll5fja0dqxcr6hrh2dk4hgw9gf8ms9bcp1ifznd21byxzyhdlr0";
|
2018-09-08 10:53:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
appstream
|
|
|
|
desktop-file-utils
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
python3
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-02-13 21:47:50 +00:00
|
|
|
geocode-glib
|
2018-09-08 10:53:48 +01: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";
|
2019-11-20 10:29:03 +00:00
|
|
|
homepage = https://gitlab.com/bitseater/meteo;
|
|
|
|
license = licenses.gpl3Plus;
|
2018-09-08 10:53:48 +01:00
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
2019-11-20 10:29:03 +00:00
|
|
|
platforms = platforms.linux;
|
2018-09-08 10:53:48 +01:00
|
|
|
};
|
|
|
|
}
|