about summary refs log tree commit diff
path: root/pkgs/applications/editors/your-editor
diff options
context:
space:
mode:
authoruniquepointer <uniquepointer@mailbox.org>2021-12-08 12:10:24 -0500
committeruniquepointer <uniquepointer@mailbox.org>2021-12-08 16:55:53 -0500
commite810c7f544d1c40166038639e98ae2172e58ee0d (patch)
treeccb5d57fd6dc6cbc916e9423efea389491ff3a5c /pkgs/applications/editors/your-editor
parent97ef966bc45fa37b50dbc942419fe50896fb3666 (diff)
downloadnixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar.gz
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar.bz2
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar.lz
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar.xz
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.tar.zst
nixlib-e810c7f544d1c40166038639e98ae2172e58ee0d.zip
your-editor: 1206 -> 1303
Co-authored-by: figsoda <figsoda@pm.me>
Diffstat (limited to 'pkgs/applications/editors/your-editor')
-rw-r--r--pkgs/applications/editors/your-editor/default.nix11
1 files changed, 6 insertions, 5 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";
   };