Postgres icon

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