lm-sensors: add documentation

+4 -1
+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 - postInstall = lib.optionalString stdenv.hostPlatform.isStatic '' 51 + postInstall = '' 52 + mkdir -p $out/share/doc/${pname} 53 + cp -r configs doc/* $out/share/doc/${pname} 54 + '' + lib.optionalString stdenv.hostPlatform.isStatic '' 52 55 rm $out/lib/*.so* 53 56 ''; 54 57