Created
August 14, 2025 19:20
-
-
Save adithyaov/1f4ddb0616730c2f5b16a857651209af to your computer and use it in GitHub Desktop.
Flake providing Postgres 14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "Flake providing Postgres 14"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/branch-off-24.11"; | |
| }; | |
| outputs = { self, nixpkgs }: | |
| let | |
| system = "x86_64-linux"; # change if needed | |
| pkgs = import nixpkgs { inherit system; }; | |
| in | |
| { | |
| packages.postgres14 = pkgs.postgresql_14; | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment