mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
51 lines
915 B
Nix
51 lines
915 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkg-config
|
||
|
, ncurses
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "loksh";
|
||
|
version = "6.9";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "dimkr";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
fetchSubmodules = true;
|
||
|
sha256 = "0x33plxqhh5202hgqidgccz5hpg8d2q71ylgnm437g60mfi9z0px";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
ncurses
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
mv $out/bin/ksh $out/bin/loksh
|
||
|
mv $out/share/man/man1/ksh.1 $out/share/man/man1/loksh.1
|
||
|
mv $out/share/man/man1/sh.1 $out/share/man/man1/loksh-sh.1
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
shellPath = "/bin/loksh";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Linux port of OpenBSD's ksh";
|
||
|
homepage = "https://github.com/dimkr/loksh";
|
||
|
license = licenses.publicDomain;
|
||
|
maintainers = with maintainers; [ cameronnemo ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|
||
|
|