tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xfce4-mailwatch-plugin: init at 1.2.0
Matthias Beyer
9 years ago
12c62d9c
17f14c89
+28
-2
2 changed files
expand all
collapse all
unified
split
pkgs
desktops
xfce
default.nix
panel-plugins
xfce4-mailwatch-plugin.nix
+3
-2
pkgs/desktops/xfce/default.nix
···
32
thunar = callPackage ./core/thunar.nix { };
33
thunarx-2-dev = thunar-build; # Plugins need only the `thunarx-2` part of the package. Awaiting multiple outputs.
34
thunar_volman = callPackage ./core/thunar-volman.nix { }; # ToDo: probably inside Thunar now
35
-
thunar-archive-plugin
36
= callPackage ./thunar-plugins/archive { };
37
-
thunar-dropbox-plugin
38
= callPackage ./thunar-plugins/dropbox { };
39
tumbler = callPackage ./core/tumbler.nix { };
40
xfce4panel = callPackage ./core/xfce4-panel.nix { }; # ToDo: impure plugins from /run/current-system/sw/lib/xfce4
···
89
xfce4-hardware-monitor-plugin = callPackage ./panel-plugins/xfce4-hardware-monitor-plugin.nix { };
90
xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
91
xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
0
92
xfce4-sensors-plugin = callPackage ./panel-plugins/xfce4-sensors-plugin.nix { };
93
xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
94
xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
···
32
thunar = callPackage ./core/thunar.nix { };
33
thunarx-2-dev = thunar-build; # Plugins need only the `thunarx-2` part of the package. Awaiting multiple outputs.
34
thunar_volman = callPackage ./core/thunar-volman.nix { }; # ToDo: probably inside Thunar now
35
+
thunar-archive-plugin
36
= callPackage ./thunar-plugins/archive { };
37
+
thunar-dropbox-plugin
38
= callPackage ./thunar-plugins/dropbox { };
39
tumbler = callPackage ./core/tumbler.nix { };
40
xfce4panel = callPackage ./core/xfce4-panel.nix { }; # ToDo: impure plugins from /run/current-system/sw/lib/xfce4
···
89
xfce4-hardware-monitor-plugin = callPackage ./panel-plugins/xfce4-hardware-monitor-plugin.nix { };
90
xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
91
xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
92
+
xfce4_mailwatch_plugin = callPackage ./panel-plugins/xfce4-mailwatch-plugin.nix { };
93
xfce4-sensors-plugin = callPackage ./panel-plugins/xfce4-sensors-plugin.nix { };
94
xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
95
xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
+25
pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui,
2
+
libxfcegui4, xfconf, gtk, exo}:
3
+
4
+
with stdenv.lib;
5
+
stdenv.mkDerivation rec {
6
+
p_name = "xfce4-mailwatch-plugin";
7
+
ver_maj = "1.2";
8
+
ver_min = "0";
9
+
10
+
src = fetchurl {
11
+
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
12
+
sha256 = "1bfw3smwivr9mzdyq768biqrl4aq94zqi3xjzq6kqnd8561cqjk2";
13
+
};
14
+
name = "${p_name}-${ver_maj}.${ver_min}";
15
+
16
+
buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel
17
+
libxfcegui4 xfconf gtk exo ];
18
+
19
+
meta = {
20
+
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
21
+
description = "Mailwatch plugin for Xfce panel";
22
+
platforms = platforms.linux;
23
+
maintainers = [ maintainers.matthiasbeyer ];
24
+
};
25
+
}