Mu icon

Mu 1.2.0

Small, simple editor for beginner Python programmers

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    mu-editor # Mu
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    mu-editor # Mu
  ];
}

Package Definition

{
  "pname": "mu-editor",
  "version": "1.2.0",
  "src": {
    "url": "https://github.com/mu-editor/mu/releases/download/v1.2.0/MuEditor-osx-1.2.0.dmg",
    "sha256": "306bef4ebfafd1dcf928bc260d5d57e64efbccb537b27f5818a9fc12437726b6"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Mu Editor.app\" && cp -r \"Mu Editor.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Small, simple editor for beginner Python programmers",
    "homepage": "https://codewith.mu/"
  }
}