tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lm-sensors: add documentation
Peter Hoeg
2 years ago
6a237805
941ae310
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
lm-sensors
default.nix
+4
-1
pkgs/os-specific/linux/lm-sensors/default.nix
···
48
48
49
49
# Making regexp to patch-out installing of .so symlinks from Makefile is
50
50
# complicated, it is easier to remove them post-install.
51
51
-
postInstall = lib.optionalString stdenv.hostPlatform.isStatic ''
51
51
+
postInstall = ''
52
52
+
mkdir -p $out/share/doc/${pname}
53
53
+
cp -r configs doc/* $out/share/doc/${pname}
54
54
+
'' + lib.optionalString stdenv.hostPlatform.isStatic ''
52
55
rm $out/lib/*.so*
53
56
'';
54
57