nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin/default.nix

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

43 lines
1015 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, intltool, xfce4-panel, libxfce4ui,
exo, gnutls, libgcrypt, gitUpdater }:
let
category = "panel-plugins";
in
2017-02-08 20:31:32 +03:00
stdenv.mkDerivation rec {
pname = "xfce4-mailwatch-plugin";
version = "1.3.0";
2017-02-08 20:31:32 +03:00
src = fetchurl {
2021-01-15 16:21:58 +03:00
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-IPkevv0ogLJ/Qh93MRWzdA9n3iv2D+rOOEG/0aCcvi4=";
2017-02-08 20:31:32 +03:00
};
nativeBuildInputs = [
intltool
2021-01-17 05:21:50 +03:00
pkg-config
];
buildInputs = [
libxfce4ui
xfce4-panel
exo
gnutls
libgcrypt
];
passthru.updateScript = gitUpdater {
url = "https://gitlab.xfce.org/panel-plugins/${pname}";
rev-prefix = "${pname}-";
};
2017-02-08 20:31:32 +03:00
meta = with lib; {
homepage = "https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin";
description = "Mail watcher plugin for Xfce panel";
license = licenses.gpl2Only;
2017-02-08 20:31:32 +03:00
platforms = platforms.linux;
2021-11-28 21:51:44 +03:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
2017-02-08 20:31:32 +03:00
};
}