hugo: fix cross compilation
This commit is contained in:
parent
f802caee6a
commit
f412bce03a
1 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, buildPackages }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "hugo";
|
pname = "hugo";
|
||||||
|
@ -25,13 +25,13 @@ buildGoModule rec {
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=nixpkgs" ];
|
ldflags = [ "-s" "-w" "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=nixpkgs" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = let emulator = stdenv.hostPlatform.emulator buildPackages; in ''
|
||||||
$out/bin/hugo gen man
|
${emulator} $out/bin/hugo gen man
|
||||||
installManPage man/*
|
installManPage man/*
|
||||||
installShellCompletion --cmd hugo \
|
installShellCompletion --cmd hugo \
|
||||||
--bash <($out/bin/hugo completion bash) \
|
--bash <(${emulator} $out/bin/hugo completion bash) \
|
||||||
--fish <($out/bin/hugo completion fish) \
|
--fish <(${emulator} $out/bin/hugo completion fish) \
|
||||||
--zsh <($out/bin/hugo completion zsh)
|
--zsh <(${emulator} $out/bin/hugo completion zsh)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue