Postgres icon

Postgres 2.9,13-14-15-16-17-18

App wrapper for Postgres

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    postgres-unofficial # Postgres
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    postgres-unofficial # Postgres
  ];
}

Package Definition

{
  "pname": "postgres-unofficial",
  "version": "2.9,13-14-15-16-17-18",
  "src": {
    "url": "https://github.com/PostgresApp/PostgresApp/releases/download/v2.9/Postgres-2.9-13-14-15-16-17-18.dmg",
    "sha256": "370354cc51b6713fdbae343e9552b51adb6fa938d0144535ccae20a1331d827f"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Postgres.app\" && cp -r \"Postgres.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "App wrapper for Postgres",
    "homepage": "https://postgresapp.com/"
  }
}