containerd: remove broken manual
`make man` build dependencies aren't included in the vendor directory
This commit is contained in:
parent
a4485fbc8f
commit
27c29776a4
1 changed files with 1 additions and 4 deletions
|
@ -12,8 +12,6 @@ buildGoModule rec {
|
|||
pname = "containerd";
|
||||
version = "1.6.0";
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "containerd";
|
||||
repo = "containerd";
|
||||
|
@ -32,14 +30,13 @@ buildGoModule rec {
|
|||
buildPhase = ''
|
||||
runHook preBuild
|
||||
patchShebangs .
|
||||
make binaries man "VERSION=v${version}" "REVISION=${src.rev}"
|
||||
make binaries "VERSION=v${version}" "REVISION=${src.rev}"
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm555 bin/* -t $out/bin
|
||||
installManPage man/*.[1-9]
|
||||
installShellCompletion --bash contrib/autocomplete/ctr
|
||||
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
|
||||
runHook postInstall
|
||||
|
|
Loading…
Reference in a new issue