tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lm-sensors: add license
Markus Kowalewski
7 years ago
c8ff1aeb
bbb8d5c2
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
lm-sensors
default.nix
+3
-2
pkgs/os-specific/linux/lm-sensors/default.nix
···
27
27
${stdenv.lib.optionalString sensord "PROG_EXTRA=sensord"})
28
28
'';
29
29
30
30
-
meta = {
30
30
+
meta = with stdenv.lib; {
31
31
homepage = http://www.lm-sensors.org/;
32
32
description = "Tools for reading hardware sensors";
33
33
-
platforms = stdenv.lib.platforms.linux;
33
33
+
license = with licenses; [ gpl2 lgpl21 ];
34
34
+
platforms = platforms.linux;
34
35
};
35
36
}