diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix index dd3bde160c37..4fd6ca0ad864 100644 --- a/pkgs/applications/editors/your-editor/default.nix +++ b/pkgs/applications/editors/your-editor/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "your-editor"; - version = "1206"; + version = "1303"; src = fetchFromGitHub { - owner = "kammerdienerb"; + owner = "your-editor"; repo = "yed"; - rev = "6cdd99fe1359899b26d8967bd376fd5caa5451eb"; - sha256 = "0XECSolW/xPXd1v3sv9HbJMWuHGnwCOwmHoPNCUsE+w="; + rev = version; + sha256 = "BWy/icQs8hVtNeM/mCi6LOah1UG0elU/DgCmfaIPD64="; }; installPhase = '' @@ -21,8 +21,9 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Your-editor (yed) is a small and simple terminal editor core that is meant to be extended through a powerful plugin architecture"; homepage = "https://your-editor.org/"; + changelog = "https://github.com/your-editor/yed/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit ]; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = with maintainers; [ uniquepointer ]; mainProgram = "yed"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b91eac47b72a..44f8c097848c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29588,7 +29588,7 @@ with pkgs; yoshimi = callPackage ../applications/audio/yoshimi { }; - your-editor = callPackage ../applications/editors/your-editor { }; + your-editor = callPackage ../applications/editors/your-editor { stdenv = gccStdenv; }; youtube-dl = with python3Packages; toPythonApplication youtube-dl;