Unverified Commit 7ab409bb authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

postgresqlPackages: enable strictDeps

parent 70de1c01
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -84,7 +84,9 @@ let
            ));
        };

      strictDeps = true;
      buildInputs = [ postgresql ] ++ prevAttrs.buildInputs or [ ];
      nativeBuildInputs = [ postgresql ] ++ prevAttrs.nativeBuildInputs or [ ];

      installFlags = [
        "DESTDIR=${placeholder "out"}"
+1 −3
Original line number Diff line number Diff line
@@ -15,9 +15,7 @@ buildPostgresqlExtension (finalAttrs: {

  inherit (pg-dump-anon) version src;

  nativeBuildInputs = [ postgresql ] ++ lib.optional jitSupport llvm;

  strictDeps = true;
  nativeBuildInputs = lib.optional jitSupport llvm;

  # Needs to be after postInstall, where removeNestedNixStore runs
  preFixup = ''
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ buildPostgresqlExtension rec {
  pname = "cstore_fdw";
  version = "1.7.0-unstable-2021-03-08";

  buildInputs = [ protobufc ];
  nativeBuildInputs = [ protobufc ];

  src = fetchFromGitHub {
+0 −3
Original line number Diff line number Diff line
@@ -23,12 +23,9 @@ buildPostgresqlExtension (finalAttrs: {
    hash = "sha256-Sa9ltW3KV/69OCxD3gRcp5owL0oW+z3fs4fRBHbSh30=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    cmake
    pkg-config
    postgresql
  ];

  buildInputs = [
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ buildPostgresqlExtension rec {
  };

  buildInputs = [ curl ];
  nativeBuildInputs = [ curl ];

  meta = with lib; {
    description = "HTTP client for PostgreSQL, retrieve a web page from inside the database";
Loading