about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-04-05 07:16:05 -0400
committerShea Levy <shea@shealevy.com>2013-04-05 07:16:05 -0400
commitfad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96 (patch)
treed50412ed28ac19b33dd3bc02c3308c4b2eecc977 /pkgs/servers/sql
parent05e5f5d515b0766d3867b5eaf470a532b20e3c7f (diff)
downloadnixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar.gz
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar.bz2
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar.lz
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar.xz
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.tar.zst
nixlib-fad10ddb82c6d7b7ba5c28a3cbd19e2d9a207b96.zip
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 <shea@shealevy.com>
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/9.2.x.nix10
1 files 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" ];
+
+  installTargets = [ "install-world" ];
 
-  postInstall =
-    ''
-      mkdir -p $out/share/man
-      cp -rvd doc/src/sgml/man1 $out/share/man
-    '';
+  LC_ALL = "C";
 
   passthru = {
     inherit readline;