summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-30 22:40:29 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-31 01:55:26 -0300
commit94c5d879ae1898d3a8f3308bd235f08fa16ea8ba (patch)
tree838f6fd7ea5a6585364beb0eae6a1550ceefb714 /pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix
parent63d5a1adcc4cef5f3b2febc18fa3b29f311da699 (diff)
xfce4-genmon-plugin: reorder
Diffstat (limited to 'pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix
new file mode 100644
index 000000000000..59796ad55b14
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin/default.nix
@@ -0,0 +1,41 @@
+{ lib, stdenv, fetchurl, pkg-config, intltool, libxfce4util, xfce4-panel, libxfce4ui, gtk3, xfce }:
+
+let
+ category = "panel-plugins";
+in
+
+stdenv.mkDerivation rec {
+ pname = "xfce4-genmon-plugin";
+ version = "4.0.2";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
+ sha256 = "1ai3pwgv61nv7i2dyrvncnc63r8kdjbkp40vp51vzak1dx924v15";
+ };
+
+ nativeBuildInputs = [
+ pkg-config
+ intltool
+ ];
+
+ buildInputs = [
+ libxfce4util
+ libxfce4ui
+ xfce4-panel
+ gtk3
+ ];
+
+ passthru.updateScript = xfce.updateScript {
+ inherit pname version;
+ attrPath = "xfce.${pname}";
+ versionLister = xfce.archiveLister category pname;
+ };
+
+ meta = with lib; {
+ homepage = "https://docs.xfce.org/panel-plugins/xfce4-genmon-plugin";
+ description = "Generic monitor plugin for the Xfce panel";
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}