From fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 5 Apr 2013 07:16:05 -0400 Subject: [PATCH] postgresql-9.2.x: Build the world This builds the man pages as well as contributed program like pg_upgrade Signed-off-by: Shea Levy --- pkgs/servers/sql/postgresql/9.2.x.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/sql/postgresql/9.2.x.nix b/pkgs/servers/sql/postgresql/9.2.x.nix index 89de740b3032..1bf3de527a3e 100644 --- a/pkgs/servers/sql/postgresql/9.2.x.nix +++ b/pkgs/servers/sql/postgresql/9.2.x.nix @@ -14,13 +14,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - LC_ALL = "C"; + makeFlags = [ "world" ]; - postInstall = - '' - mkdir -p $out/share/man - cp -rvd doc/src/sgml/man1 $out/share/man - ''; + installTargets = [ "install-world" ]; + + LC_ALL = "C"; passthru = { inherit readline;