removing mu edit

This commit is contained in:
Matt Nish-Lapidus 2025-01-10 12:34:38 -05:00
parent 9b943e484f
commit 5cd5ed3f84
2 changed files with 1 additions and 26 deletions

View file

@ -25,7 +25,7 @@
guix
uv
thonny
just
yt-dlp

View file

@ -1,25 +0,0 @@
{ pkgs, python3Packages, fetchurl, lib, ... }:
python3Packages.buildPythonApplication rec {
pname = "mu-edit";
version = "latest";
src = fetchurl {
url = "https://github.com/mu-editor/mu.git";
sha256 = "";
};
build-system = with python3Packages; [
setuptools
];
# dependencies = with python3Packages; [
# ];
meta = with lib; {
homepage = "https://github.com/mu-editor";
description = "mu editor";
platforms = platforms.linux;
};
}