From 34f77c012cd93fd50d6f84651441c559192f9e02 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Mon, 24 Aug 2020 10:15:29 -0500 Subject: [PATCH] librseq: install man pages, too Signed-off-by: Austin Seipp --- pkgs/development/libraries/librseq/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/librseq/default.nix b/pkgs/development/libraries/librseq/default.nix index b3029937f8ff1e..4fd8bb7e33a413 100644 --- a/pkgs/development/libraries/librseq/default.nix +++ b/pkgs/development/libraries/librseq/default.nix @@ -13,10 +13,12 @@ stdenv.mkDerivation rec { sha256 = "0vgillrxc1knq591gjj99x2ws6q1xpm5dmfrhsxisngfpcnjr10v"; }; - outputs = [ "out" "dev" ]; + outputs = [ "out" "dev" "man" ]; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ linuxHeaders ]; + installTargets = [ "install" "install-man" ]; + doCheck = true; separateDebugInfo = true; enableParallelBuilding = true;