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-21 21:34:36 -03:00 committed by GitHub
parent ae709636d3
commit baedc7400d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

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;
};
}

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 { };