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>
This commit is contained in:
Anderson Torres
2021-06-22 02:34:36 +02:00
committed by GitHub
co-authored by Sandro
parent ae709636d3
commit baedc7400d
2 changed files with 26 additions and 0 deletions
+24
View File
@@ -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;
};
}
+2
View File
@@ -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 { };