Postgres icon

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