2021-03-20 18:16:25 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2015-01-26 00:09:44 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mksh";
|
2020-11-03 12:56:42 +00:00
|
|
|
version = "59c";
|
2015-01-26 00:09:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
2021-03-20 18:16:25 +00:00
|
|
|
"https://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
|
|
|
|
"http://pub.allbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
|
2015-01-26 00:09:44 +00:00
|
|
|
];
|
2021-03-20 18:16:25 +00:00
|
|
|
hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY=";
|
2015-01-26 00:09:44 +00:00
|
|
|
};
|
|
|
|
|
2021-03-20 18:16:25 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
2020-04-07 03:36:03 +01:00
|
|
|
dontConfigure = true;
|
|
|
|
|
2021-03-20 18:16:25 +00:00
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
sh ./Build.sh -r
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
2015-01-26 00:09:44 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-03-20 18:16:25 +00:00
|
|
|
runHook preInstall
|
|
|
|
install -D mksh $out/bin/mksh
|
|
|
|
install -D dot.mkshrc $out/share/mksh/mkshrc
|
|
|
|
installManPage mksh.1
|
|
|
|
runHook postInstall
|
2015-01-26 00:09:44 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-26 00:09:44 +00:00
|
|
|
description = "MirBSD Korn Shell";
|
|
|
|
longDescription = ''
|
|
|
|
The MirBSD Korn Shell is a DFSG-free and OSD-compliant (and OSI
|
|
|
|
approved) successor to pdksh, developed as part of the MirOS
|
|
|
|
Project as native Bourne/POSIX/Korn shell for MirOS BSD, but
|
|
|
|
also to be readily available under other UNIX(R)-like operating
|
|
|
|
systems.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.mirbsd.org/mksh.htm";
|
2021-03-20 18:16:25 +00:00
|
|
|
license = with licenses; [ miros isc unicode-dfs-2016 ];
|
2018-01-16 21:59:13 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres joachifm ];
|
2015-01-26 00:09:44 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2016-05-14 14:02:52 +01:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/mksh";
|
|
|
|
};
|
2015-01-26 00:09:44 +00:00
|
|
|
}
|
2021-03-20 18:16:25 +00:00
|
|
|
# TODO [ AndersonTorres ]: lksh
|
|
|
|
# TODO [ AndersonTorres ]: a more accurate licensing info
|