3
0
Fork 0
forked from mirrors/nixpkgs

nixos/slurm: Add man pages to wrapedSlurm

The nixos module adds a new derivation to
systemPackages to make sure that the binaries
get the generated config file. This derivation
did not contain the man pages so far.
Activating the module now makes the man pages
available in the system environment.
This commit is contained in:
Markus Kowalewski 2018-06-01 22:02:16 +02:00
parent 995d2ec928
commit b7e91f096a
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -204,6 +204,9 @@ in
EOT
chmod +x "$wrappername"
done
mkdir -p $out/share
ln -s ${getBin cfg.package}/share/man $out/share/man
'';
};