mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitLab, vala, python3, pkgconfig, meson, ninja, gtk3
|
|
, json-glib, libsoup, webkitgtk, geocode-glib
|
|
, libappindicator, desktop-file-utils, appstream, wrapGAppsHook
|
|
, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "meteo";
|
|
version = "0.9.6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "bitseater";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1786s5637hc3dnnkf5vr2ngfiq73dyvx8187gx7qkh7cr8xrl50w";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
python3
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
geocode-glib
|
|
gtk3
|
|
hicolor-icon-theme
|
|
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;
|
|
};
|
|
}
|