Skip to content

Commit

Permalink
orbiton: modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
sikmir committed Dec 28, 2024
1 parent bd0c705 commit 75a7c85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/by-name/or/orbiton/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "xyproto";
repo = "orbiton";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-7h8U6Ye5Jyf0UmV/+6yHv9QBEtxYHlDBq+T09tmywnM=";
};

Expand Down Expand Up @@ -48,11 +48,11 @@ buildGoModule rec {
wrapProgram $out/bin/og --prefix PATH : $out/bin
'';

meta = with lib; {
meta = {
description = "Config-free text editor and IDE limited to VT100";
homepage = "https://orbiton.zip";
license = licenses.bsd3;
maintainers = with maintainers; [ sikmir ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sikmir ];
mainProgram = "o";
};
}

0 comments on commit 75a7c85

Please sign in to comment.