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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 99ae2bdc94f2..a5449c7f32eb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23443,6 +23443,8 @@ in edbrowse = callPackage ../applications/editors/edbrowse { }; + oed = callPackage ../applications/editors/oed { }; + ekho = callPackage ../applications/audio/ekho { }; electron-cash = libsForQt5.callPackage ../applications/misc/electron-cash { };