trying to package mu editor

This commit is contained in:
Matt Nish-Lapidus 2025-01-09 16:48:17 -05:00
parent 72f0a97656
commit 9c2ca6bd55
5 changed files with 41 additions and 18 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, pkgs, fetchurl, lib, unzip, autoPatchelfHook, makeWrapper, appimageTools, ... }:
appimageTools.wrapType2 {
version = "latest";
pname = "mu-edit";
src = fetchurl {
url = "https://github.com/mu-editor/mu/releases/download/v1.2.0/MuEditor-Linux-1.2.0-x86_64.AppImage";
hash = "";
};
extraPkgs = pkgs: [ pkgs.libxcrypt.out ];
meta = with lib; {
description = "mu python editos";
homepage = "https://codewith.mu/";
downloadPage = "https://codewith.mu/en/download";
platforms = platforms.linux;
};
}