mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
ncurses: split also man output (3-4 MB)
This commit is contained in:
parent
f014217a55
commit
ef3f961610
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = [ ./clang.patch ];
|
||||
|
||||
outputs = [ "dev" "lib" "out" ];
|
||||
outputs = [ "dev" "lib" "out" "man" ];
|
||||
setOutputFlags = false; # some aren't supported
|
||||
|
||||
configureFlags = [
|
||||
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||
"--enable-overwrite" # Needed for proper header installation
|
||||
"--enable-pc-files"
|
||||
"--enable-symlinks"
|
||||
"--libdir=$(lib)/lib" "--includedir=$(dev)/include" "--bindir=$(dev)/bin"
|
||||
"--libdir=$(lib)/lib" "--includedir=$(dev)/include" "--bindir=$(dev)/bin" "--mandir=$(man)/share/man"
|
||||
] ++ lib.optional unicode "--enable-widec";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig libtool ];
|
||||
|
|
Loading…
Reference in a new issue