Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 781428a849e8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 63c295caeffc
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Aug 1, 2018

  1. xfce4-13.xfce4-netload-plugin: init at 1.3.1 (#44315)

    volth authored and xeji committed Aug 1, 2018
    Copy the full SHA
    63c295c View commit details
Showing with 13 additions and 0 deletions.
  1. +2 −0 pkgs/desktops/xfce4-13/default.nix
  2. +11 −0 pkgs/desktops/xfce4-13/xfce4-netload-plugin/default.nix
2 changes: 2 additions & 0 deletions pkgs/desktops/xfce4-13/default.nix
Original file line number Diff line number Diff line change
@@ -56,6 +56,8 @@ makeScope newScope (self: with self; {

xfce4-mixer = callPackage ./xfce4-mixer { };

xfce4-netload-plugin = callPackage ./xfce4-netload-plugin { };

xfce4-notifyd = callPackage ./xfce4-notifyd { };

xfce4-panel = callPackage ./xfce4-panel { };
11 changes: 11 additions & 0 deletions pkgs/desktops/xfce4-13/xfce4-netload-plugin/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:

mkXfceDerivation rec {
category = "panel-plugins";
pname = "xfce4-netload-plugin";
version = "1.3.1";
rev = "version-${version}";
sha256 = "0nm8advafw4jpc9p1qszyfqa56194sz51z216rdh4c6ilcrrpy1h";

buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
}