From e810c7f544d1c40166038639e98ae2172e58ee0d Mon Sep 17 00:00:00 2001 From: uniquepointer Date: Wed, 8 Dec 2021 12:10:24 -0500 Subject: [PATCH 1/2] your-editor: 1206 -> 1303 Co-authored-by: figsoda --- pkgs/applications/editors/your-editor/default.nix | 11 ++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix index dd3bde160c37..a867ece7e786 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/1303/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 a57a684905bc..aaefe9f4c442 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29567,7 +29567,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; From c8f0e7f79f357f240e6b66ea95902ee589bb1ddc Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 8 Dec 2021 20:55:14 -0500 Subject: [PATCH 2/2] your-editor: update changelog --- pkgs/applications/editors/your-editor/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix index a867ece7e786..4fd6ca0ad864 100644 --- a/pkgs/applications/editors/your-editor/default.nix +++ b/pkgs/applications/editors/your-editor/default.nix @@ -21,7 +21,7 @@ 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/1303/CHANGELOG.md"; + changelog = "https://github.com/your-editor/yed/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit ]; platforms = platforms.unix; maintainers = with maintainers; [ uniquepointer ];