Postgres icon

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