File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
pkgs/servers/sql/postgresql/ext Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33stdenv . mkDerivation rec {
44 pname = "pg_partman" ;
5- version = "5.0.0 " ;
5+ version = "4.7.4 " ;
66
77 buildInputs = [ postgresql ] ;
88
99 src = fetchFromGitHub {
1010 owner = "pgpartman" ;
1111 repo = pname ;
1212 rev = "refs/tags/v${ version } " ;
13- sha256 = "sha256-T7+cPi8LIftWVwI9mi0LAwWCTxp/r6iyKT1wKO/Ztbk =" ;
13+ sha256 = "sha256-DdE/hqCrju678Xk3xXGVFhKQM3x9skQQKolNJ2/3gbs =" ;
1414 } ;
1515
1616 installPhase = ''
1717 mkdir -p $out/{lib,share/postgresql/extension}
1818
19- cp src/*${ postgresql . dlSuffix } $out/lib
19+ cp src/*.so $out/lib
2020 cp updates/* $out/share/postgresql/extension
2121 cp -r sql/* $out/share/postgresql/extension
2222 cp *.control $out/share/postgresql/extension
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
2525 meta = with lib ; {
2626 description = "Partition management extension for PostgreSQL" ;
2727 homepage = "https://github.com/pgpartman/pg_partman" ;
28- changelog = "https://github.com/pgpartman/pg_partman/blob /v${ version } /CHANGELOG.md " ;
28+ changelog = "https://github.com/pgpartman/pg_partman/raw /v${ version } /CHANGELOG.txt " ;
2929 maintainers = with maintainers ; [ ggpeti ] ;
3030 platforms = postgresql . meta . platforms ;
3131 license = licenses . postgresql ;
You can’t perform that action at this time.
0 commit comments