Skip to content

Commit

Permalink
Merge pull request NixOS#261080 from linuxissuper/add_buildinput/psensor
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin authored Oct 14, 2023
2 parents 08f197b + 0582e39 commit 32262e9
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions pkgs/tools/system/psensor/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
{ stdenv, lib, fetchurl, pkg-config, lm_sensors, libgtop, libatasmart, gtk3
, libnotify, udisks2, libXNVCtrl, wrapGAppsHook
{ stdenv
, lib
, fetchurl
, pkg-config
, lm_sensors
, libgtop
, libatasmart
, gtk3
, libnotify
, udisks2
, libXNVCtrl
, wrapGAppsHook
, libappindicator
}:

stdenv.mkDerivation rec {
Expand All @@ -15,7 +26,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config wrapGAppsHook ];

buildInputs = [
lm_sensors libgtop libatasmart gtk3 libnotify udisks2
lm_sensors
libgtop
libatasmart
gtk3
libnotify
udisks2
libappindicator
];

preConfigure = ''
Expand Down

0 comments on commit 32262e9

Please sign in to comment.