summary refs log tree commit diff
path: root/pkgs/applications/editors/oed/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/oed/default.nix')
-rw-r--r--pkgs/applications/editors/oed/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/editors/oed/default.nix b/pkgs/applications/editors/oed/default.nix
new file mode 100644
index 00000000000..2281ca8c08b
--- /dev/null
+++ b/pkgs/applications/editors/oed/default.nix
@@ -0,0 +1,23 @@
+{ 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 ];
+    platforms = platforms.unix;
+  };
+}