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 = {