dogdns: install man pages

main
Maximilian Bosch 2 years ago
parent de5a223562
commit 4e9a5ef3bc
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 11
      pkgs/tools/networking/dogdns/default.nix

@ -5,6 +5,8 @@
, stdenv
, pkg-config
, openssl
, just
, pandoc
, Security
}:
@ -19,15 +21,22 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-y3T0vXg7631FZ4bzcbQjz3Buui/DFxh9LG8BZWwynp0=";
};
nativeBuildInputs = [ installShellFiles ]
nativeBuildInputs = [ installShellFiles just pandoc ]
++ lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ Security ];
outputs = [ "out" "man" ];
postBuild = ''
just man
'';
cargoSha256 = "sha256-agepQVJbqbjzFbEBKbM7BNxc8FlklOrCsTgCAOcuptc=";
postInstall = ''
installShellCompletion completions/dog.{bash,fish,zsh}
installManPage ./target/man/*.1
'';
meta = with lib; {

Loading…
Cancel
Save