mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 07:48:58 +00:00
thinkfan: install manual, README and examples
READMEs usually just waste those precious kilobytes, but both the manual page and --help output refer to this one quite a bit.
This commit is contained in:
parent
b1bf11881a
commit
d6e4c1b750
|
@ -18,14 +18,17 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin;
|
||||
mv thinkfan $out/bin/;
|
||||
install -Dm755 {.,$out/bin}/thinkfan
|
||||
|
||||
cd $sourceRoot
|
||||
install -Dm644 {.,$out/share/doc/thinkfan}/README
|
||||
cp -R examples $out/share/doc/thinkfan
|
||||
install -Dm644 {.,$out/share/man/man1}/thinkfan.1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
homepage = "http://thinkfan.sourceforge.net/";
|
||||
homepage = http://thinkfan.sourceforge.net/;
|
||||
maintainers = with stdenv.lib.maintainers; [ iElectric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue