Postgres icon

Postgres 2.9.5,14-15-16-17-18

App wrapper for Postgres

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    postgres-app # Postgres
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    postgres-app # Postgres
  ];
}

Package Definition

{
  "pname": "postgres-app",
  "version": "2.9.5,14-15-16-17-18",
  "src": {
    "url": "https://github.com/PostgresApp/PostgresApp/releases/download/v2.9.5/Postgres-2.9.5-14-15-16-17-18.dmg",
    "sha256": "40c459d6e4a0af62545d52e7ad48a69b1b20aa0d9f2941590aa9a92cf7d1ffaa"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Postgres.app\" && cp -r \"Postgres.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "App wrapper for Postgres",
    "homepage": "https://postgresapp.com/"
  }
}