mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
39 lines
798 B
Nix
39 lines
798 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, ncurses
|
|
, perl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openvi";
|
|
version = "7.5.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnsonjh";
|
|
repo = "OpenVi";
|
|
rev = version;
|
|
hash = "sha256-ukNgTtVrYkL7Bf7O7ERyQ9TOR8ss/EHCTMbzHi3tkG4=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
homepage = "https://github.com/johnsonjh/OpenVi";
|
|
description = "Portable OpenBSD vi for UNIX systems";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ aleksana ];
|
|
mainProgram = "ovi";
|
|
};
|
|
}
|