about summary refs log tree commit diff
path: root/pkgs/applications/editors/oed
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2021-06-21 21:34:36 -0300
committerGitHub <noreply@github.com>2021-06-22 02:34:36 +0200
commitbaedc7400d8e914014b172f8e08b629a4bfca32f (patch)
treeae138e03d8e73ebcb1445827b871725045a31ec9 /pkgs/applications/editors/oed
parentae709636d337c744d72e910c619e2dcb8b8f299b (diff)
downloadnixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar.gz
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar.bz2
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar.lz
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar.xz
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.tar.zst
nixlib-baedc7400d8e914014b172f8e08b629a4bfca32f.zip
oed: init at 6.7 (#127690)
* oed: init at 6.7

oed is the portable OpenBSD implementation of the classical ed editor.

* Update pkgs/applications/editors/oed/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/editors/oed')
-rw-r--r--pkgs/applications/editors/oed/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/editors/oed/default.nix b/pkgs/applications/editors/oed/default.nix
new file mode 100644
index 000000000000..1039bfc4aa74
--- /dev/null
+++ b/pkgs/applications/editors/oed/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation rec {
+  pname = "oed";
+  version = "6.7";
+
+  src = fetchFromGitHub {
+    owner = "ibara";
+    repo = "oed";
+    rev = "oed-${version}";
+    hash = "sha256-Z8B1RIFve3UPj+9G/WJX0BNc2ynG/qtoGfoesarYGz8=";
+  };
+
+  meta = with lib; {
+    homepage = "https://github.com/ibara/oed";
+    description = "Portable ed editor from OpenBSD";
+    license = with licenses; [ bsd2 ];
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = platforms.unix;
+  };
+}