* PostgreSQL 9.1: install the manpages.

svn path=/nixpkgs/trunk/; revision=32476
This commit is contained in:
Eelco Dolstra 2012-02-22 17:27:06 +00:00
parent 476ece2de0
commit 2ceb07c28f

View File

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