1
0
Fork 1
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:
Vladimír Čunát 2015-10-13 19:04:34 +02:00
parent f014217a55
commit ef3f961610

View file

@ -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 ];