Postgres icon

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