Postgres icon

Postgres 2.8.2,13-14-15-16-17

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.8.2,13-14-15-16-17",
  "src": {
    "url": "https://github.com/PostgresApp/PostgresApp/releases/download/v2.8.2/Postgres-2.8.2-13-14-15-16-17.dmg",
    "sha256": "9f27ba1f30916a45f2d801647de1f7dac6e4b4879403c225103258612eeb1105"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Postgres.app\" && cp -r \"Postgres.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "App wrapper for Postgres",
    "homepage": "https://postgresapp.com/"
  }
}