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

44 lines
1,000 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, intltool, xfce4-panel, libxfce4ui,
exo, gnutls, libgcrypt, xfce }:
let
category = "panel-plugins";
in
2017-02-08 18:31:32 +01:00
stdenv.mkDerivation rec {
pname = "xfce4-mailwatch-plugin";
version = "1.3.0";
2017-02-08 18:31:32 +01:00
src = fetchurl {
2021-01-15 14:21:58 +01:00
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-IPkevv0ogLJ/Qh93MRWzdA9n3iv2D+rOOEG/0aCcvi4=";
2017-02-08 18:31:32 +01:00
};
nativeBuildInputs = [
intltool
2021-01-17 03:21:50 +01:00
pkg-config
];
buildInputs = [
libxfce4ui
xfce4-panel
exo
gnutls
libgcrypt
];
passthru.updateScript = xfce.updateScript {
inherit pname version;
attrPath = "xfce.${pname}";
versionLister = xfce.archiveLister category pname;
};
2017-02-08 18:31:32 +01: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 18:31:32 +01:00
platforms = platforms.linux;
maintainers = [ ];
2017-02-08 18:31:32 +01:00
};
}