mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
timewarrior : fix manpages installation (#17667)
This commit is contained in:
parent
daf44055cd
commit
dcdcea9938
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/{bin,share}
|
||||
cp -rv doc/man $out/share/
|
||||
mkdir -p $out/{bin,share/man/man1}
|
||||
cp -rv doc/man/*.1 $out/share/man/man1
|
||||
cp src/timew $out/bin/
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue