Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
817 B
Nix
44 lines
817 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ncurses,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openvi";
|
|
version = "7.6.31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnsonjh";
|
|
repo = "OpenVi";
|
|
rev = version;
|
|
hash = "sha256-RqmulYHQFZmTHQAYgZmB8tAG6mSquNODmssfKB8YqDU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
perl
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
# command -p will yield command not found error
|
|
"PAWK=awk"
|
|
# silently fail the chown command
|
|
"IUSGR=$(USER)"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/johnsonjh/OpenVi";
|
|
description = "Portable OpenBSD vi for UNIX systems";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ aleksana ];
|
|
mainProgram = "ovi";
|
|
};
|
|
}
|