nixpkgs/pkgs/tools/system/psensor/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

34 lines
917 B
Nix

{ stdenv, lib, fetchurl, pkgconfig, lm_sensors, libgtop, libatasmart, gtk3
, libnotify, udisks2, libXNVCtrl, wrapGAppsHook
}:
stdenv.mkDerivation rec {
name = "psensor-${version}";
version = "1.2.0";
src = fetchurl {
url = "http://wpitchoune.net/psensor/files/psensor-${version}.tar.gz";
sha256 = "1smbidbby4rh14jnh9kn7y64qf486aqnmyxcgacjvkz27cqqnw4r";
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [
lm_sensors libgtop libatasmart gtk3 libnotify udisks2
];
preConfigure = ''
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libXNVCtrl}/include"
NIX_LDFLAGS="$NIX_LDFLAGS -L${libXNVCtrl}/lib"
'';
meta = with lib; {
description = "Graphical hardware monitoring application for Linux";
homepage = https://wpitchoune.net/psensor/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}