Replit icon

Replit 1.0.14

Software development and deployment platform

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    replit # Replit
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    replit # Replit
  ];
}

Package Definition

{
  "pname": "replit",
  "version": "1.0.14",
  "src": {
    "url": "https://github.com/replit/desktop/releases/download/v1.0.14/Replit.dmg",
    "sha256": "193c4282d69c0b49bc4d3780c4db102b2602bfb6d3f7cd7322957cde5ff6cb41"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Replit.app\" && cp -r \"Replit.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Software development and deployment platform",
    "homepage": "https://replit.com/"
  }
}