3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, intltool, libxml2, libsoup, upower,
libxfce4ui, xfce4-panel, xfconf, hicolor-icon-theme, xfce }:
let
category = "panel-plugins";
in
2016-05-04 18:02:13 +01:00
stdenv.mkDerivation rec {
pname = "xfce4-weather-plugin";
version = "0.11.0";
2016-05-04 18:02:13 +01:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-4yQuqVHVG8D97R0CpPH2Yr7Bah+xDIVfcb2mVBoRU/w=";
2016-05-04 18:02:13 +01:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
intltool
];
2016-05-04 18:02:13 +01:00
buildInputs = [
libxml2
libsoup
upower
libxfce4ui
xfce4-panel
xfconf
hicolor-icon-theme
];
2016-05-04 18:02:13 +01:00
enableParallelBuilding = true;
2021-01-15 13:21:58 +00:00
2022-02-21 15:10:33 +00:00
passthru.updateScript = xfce.archiveUpdater { inherit category pname version; };
2016-05-04 18:02:13 +01:00
meta = with lib; {
homepage = "https://docs.xfce.org/panel-plugins/xfce4-weather-plugin";
2016-05-04 18:02:13 +01:00
description = "Weather plugin for the Xfce desktop environment";
license = licenses.gpl2Plus;
platforms = platforms.unix;
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
2016-05-04 18:02:13 +01:00
};
}