util-linux breaks services-flake on macos (#12)

This commit is contained in:
Shivaraj B H 2023-07-05 17:42:33 +05:30 committed by GitHub
parent 09a805f859
commit 9a9fc54749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,9 +100,7 @@ in
internal = true;
readOnly = true;
description = "The `pg_hba.conf` file.";
default = pkgs.runCommand "pg_hba.conf" { } ''
echo "${hbaConfString}" | ${pkgs.util-linux}/bin/column -t -s $'\t' > $out
'';
default = pkgs.writeText "pg_hba.conf" hbaConfString;
};
listen_addresses = lib.mkOption {