tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cpufrequtils: add license + homepage
Markus Kowalewski
7 years ago
546bbb69
2c2d02fc
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
cpufrequtils
default.nix
+4
-2
pkgs/os-specific/linux/cpufrequtils/default.nix
···
21
22
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
23
24
-
meta = {
25
description = "Tools to display or change the CPU governor settings";
26
-
platforms = stdenv.lib.platforms.linux;
0
0
27
};
28
}
···
21
22
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
23
24
+
meta = with stdenv.lib; {
25
description = "Tools to display or change the CPU governor settings";
26
+
homepage = http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html;
27
+
license = licenses.gpl2;
28
+
platforms = platforms.linux;
29
};
30
}