File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 274
274
pg_regress = pg_regress ;
275
275
pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
276
276
postgresql_15 = pkgs . postgresql_15 ;
277
+
278
+ postgresql_15_src = pkgs . stdenv . mkDerivation {
279
+ pname = "postgresql-15-src" ;
280
+ version = pkgs . postgresql_15 . version ;
281
+
282
+ src = pkgs . postgresql_15 . src ;
283
+
284
+ nativeBuildInputs = [ pkgs . bzip2 ] ;
285
+
286
+ phases = [ "unpackPhase" "installPhase" ] ;
287
+
288
+ installPhase = ''
289
+ mkdir -p $out
290
+ cp -r . $out
291
+ '' ;
292
+
293
+ meta = with pkgs . lib ; {
294
+ description = "PostgreSQL 15 source files" ;
295
+ homepage = "https://www.postgresql.org/" ;
296
+ license = licenses . postgresql ;
297
+ platforms = platforms . all ;
298
+ } ;
299
+ } ;
277
300
# Start a version of the server.
278
301
start-server =
279
302
let
You can’t perform that action at this time.
0 commit comments