trying to package mu editor

This commit is contained in:
Matt Nish-Lapidus 2025-01-10 08:10:23 -05:00
parent 9687a29f97
commit 9b943e484f
5 changed files with 24 additions and 19 deletions

View file

@ -1,22 +1,25 @@
{ pkgs, fetchurl, lib, appimageTools, ... }:
{ pkgs, python3Packages, fetchurl, lib, ... }:
appimageTools.wrapType2 {
version = "latest";
python3Packages.buildPythonApplication rec {
pname = "mu-edit";
version = "latest";
src = fetchurl {
url = "https://github.com/mu-editor/mu/releases/download/v1.2.0/MuEditor-Linux-1.2.0-x86_64.AppImage";
hash = "";
url = "https://github.com/mu-editor/mu.git";
sha256 = "";
};
extraPkgs = pkgs: [
pkgs.libxcrypt.out
build-system = with python3Packages; [
setuptools
];
# dependencies = with python3Packages; [
# ];
meta = with lib; {
description = "mu python editos";
homepage = "https://codewith.mu/";
downloadPage = "https://codewith.mu/en/download";
homepage = "https://github.com/mu-editor";
description = "mu editor";
platforms = platforms.linux;
};
}