about summary refs log tree commit diff
path: root/pkgs/applications/editors/your-editor
diff options
context:
space:
mode:
authoruniquepointer <uniquepointer@mailbox.org>2021-10-25 16:31:07 -0500
committeruniquepointer <uniquepointer@mailbox.org>2021-10-25 18:04:22 -0500
commitfc25fa882eda1666b96166002e8380d9139e42fb (patch)
treef1b038315946dc24267fff2df11d6d743c4dbc57 /pkgs/applications/editors/your-editor
parent2e4300bf8b7df72e95803de6fa1aea9537c3c9c7 (diff)
downloadnixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar.gz
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar.bz2
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar.lz
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar.xz
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.tar.zst
nixlib-fc25fa882eda1666b96166002e8380d9139e42fb.zip
your-editor: init at 1203
Diffstat (limited to 'pkgs/applications/editors/your-editor')
-rw-r--r--pkgs/applications/editors/your-editor/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix
new file mode 100644
index 000000000000..d9025c13b095
--- /dev/null
+++ b/pkgs/applications/editors/your-editor/default.nix
@@ -0,0 +1,36 @@
+{ pkgs, stdenv, fetchFromGitHub, lib, ... }:
+
+pkgs.stdenv.mkDerivation rec {
+  pname = "your-editor";
+  version = "1203";
+
+  rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
+  src = fetchFromGitHub {
+    owner = "kammerdienerb";
+    repo = "yed";
+    rev = "608418f";
+    sha256 = "KqK2lcDTn91aCFJIDg+h+QsTrl7745So5aiKCxPkeh4=";
+  };
+
+  buildInputs = [
+  ];
+
+  configurePhase = ''
+    '';
+
+  buildPhase = ''
+    '';
+
+  installPhase = ''
+     patchShebangs install.sh
+    ./install.sh -p $out
+  '';
+
+  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/";
+    license = with licenses; [ mit ];
+    platforms = platforms.linux;
+    maintainers = [ uniquepointer ];
+  };
+}