2025-01-10 08:10:23 -05:00
|
|
|
{ pkgs, python3Packages, fetchurl, lib, ... }:
|
2025-01-09 16:48:17 -05:00
|
|
|
|
2025-01-10 08:10:23 -05:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2025-01-09 16:48:17 -05:00
|
|
|
pname = "mu-edit";
|
2025-01-10 08:10:23 -05:00
|
|
|
version = "latest";
|
2025-01-09 16:48:17 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-10 08:10:23 -05:00
|
|
|
url = "https://github.com/mu-editor/mu.git";
|
|
|
|
sha256 = "";
|
2025-01-09 16:48:17 -05:00
|
|
|
};
|
|
|
|
|
2025-01-10 08:10:23 -05:00
|
|
|
build-system = with python3Packages; [
|
|
|
|
setuptools
|
2025-01-09 16:49:30 -05:00
|
|
|
];
|
2025-01-09 16:48:17 -05:00
|
|
|
|
2025-01-10 08:10:23 -05:00
|
|
|
# dependencies = with python3Packages; [
|
|
|
|
|
|
|
|
# ];
|
|
|
|
|
2025-01-09 16:48:17 -05:00
|
|
|
meta = with lib; {
|
2025-01-10 08:10:23 -05:00
|
|
|
homepage = "https://github.com/mu-editor";
|
|
|
|
description = "mu editor";
|
2025-01-09 16:48:17 -05:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|