Install postgresql extensions under $out/share/postgresql

This fixes extensions after #62271 moved files from `$out/share` to
`$out/share/postgresql`.
This commit is contained in:
Erlend Hamberg
2019-07-01 16:24:44 +02:00
parent 52d5b7a144
commit 80aadbec60
20 changed files with 33 additions and 33 deletions
@@ -17,8 +17,8 @@ stdenv.mkDerivation rec {
mkdir -p $out/{bin,lib,share/extension}
cp *.so $out/lib
cp *.sql $out/share/extension
cp *.control $out/share/extension
cp *.sql $out/share/postgresql/extension
cp *.control $out/share/postgresql/extension
'';
meta = with stdenv.lib; {