25 lines
481 B
Nix
25 lines
481 B
Nix
{ 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;
|
|
};
|
|
}
|