2017-04-22 16:25:09 +01:00
|
|
|
{ stdenv, fetchurl }:
|
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-05-06 02:48:36 +01:00
|
|
|
version = "59";
|
2015-01-26 00:09:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
2018-06-28 19:43:35 +01:00
|
|
|
"https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
2015-07-15 01:24:06 +01:00
|
|
|
"http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
2015-01-26 00:09:44 +00:00
|
|
|
];
|
2020-05-06 02:48:36 +01:00
|
|
|
sha256 = "1flhsdfksvv9gmfkgjwgdia1irv53g9abmq3y22s5a5ycyx2hajr";
|
2015-01-26 00:09:44 +00:00
|
|
|
};
|
|
|
|
|
2020-04-07 03:36:03 +01:00
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
buildPhase = ''sh ./Build.sh -r'';
|
2015-01-26 00:09:44 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D -m 755 mksh $out/bin/mksh
|
|
|
|
install -D -m 644 mksh.1 $out/share/man/man1/mksh.1
|
|
|
|
install -D -m 644 dot.mkshrc $out/share/mksh/mkshrc
|
|
|
|
'';
|
|
|
|
|
2015-07-15 01:24:06 +01:00
|
|
|
meta = with stdenv.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";
|
2017-04-22 16:25:09 +01:00
|
|
|
license = licenses.bsd3;
|
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
|
|
|
}
|