summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-06-04 11:36:36 +0000
committerGitHub <noreply@github.com>2019-06-04 11:36:36 +0000
commit63f23d51d18aca75f009c71567a7ffa07e47f80e (patch)
tree2431c760ee0e0d64a557bceee37a6e34d0c422b1
parent7ba247ccb12b601aa70286aaa2dd93f9fa948dd0 (diff)
parent6c4bceef05c9d2daead63babdca458f684595656 (diff)
Merge pull request #62646 from rail/skopeo-man
skopeo: fix man installation path
-rw-r--r--pkgs/development/tools/skopeo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix
index 66941ca281ef..6dfda2bbfe6c 100644
--- a/pkgs/development/tools/skopeo/default.nix
+++ b/pkgs/development/tools/skopeo/default.nix
@@ -44,7 +44,7 @@ buildGoPackage rec {
postBuild = ''
# depends on buildGoPackage not changing …
pushd ./go/src/${goPackagePath}
- make install-docs MANINSTALLDIR="$man"
+ make install-docs MANINSTALLDIR="$man/share/man"
popd
'';