From 2ceb07c28f8f6ae2416a4362e22c727dff82d388 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 22 Feb 2012 17:27:06 +0000 Subject: [PATCH] * PostgreSQL 9.1: install the manpages. svn path=/nixpkgs/trunk/; revision=32476 --- pkgs/servers/sql/postgresql/9.1.x.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/9.1.x.nix b/pkgs/servers/sql/postgresql/9.1.x.nix index 6bc98c2851c..161c3dc2ccf 100644 --- a/pkgs/servers/sql/postgresql/9.1.x.nix +++ b/pkgs/servers/sql/postgresql/9.1.x.nix @@ -16,9 +16,15 @@ stdenv.mkDerivation rec { LC_ALL = "C"; + postInstall = + '' + mkdir -p $out/share/man + cp -rvd doc/src/sgml/man1 $out/share/man + ''; + passthru = { inherit readline; - psqlSchema = "9.0"; + psqlSchema = "9.1"; }; meta = {