nixpkgs/pkgs/by-name/mk/mksh/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, installShellFiles
}:
2023-09-10 17:45:28 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "mksh";
2020-11-03 12:56:42 +00:00
version = "59c";
src = fetchurl {
urls = [
2023-09-10 17:45:28 +00:00
"http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${finalAttrs.version}.tgz"
"http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${finalAttrs.version}.tgz"
];
hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY=";
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
2023-09-10 17:45:28 +00:00
nativeBuildInputs = [
installShellFiles
];
2020-04-07 02:36:03 +00:00
dontConfigure = true;
buildPhase = ''
runHook preBuild
sh ./Build.sh -r
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -D mksh $out/bin/mksh
install -D dot.mkshrc $out/share/mksh/mkshrc
installManPage mksh.1
runHook postInstall
'';
2023-09-10 17:45:28 +00:00
passthru = {
shellPath = "/bin/mksh";
};
meta = {
2022-05-14 18:58:13 +00:00
homepage = "http://www.mirbsd.org/mksh.htm";
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.
'';
2023-09-10 17:45:28 +00:00
license = with lib.licenses; [ miros isc unicode-dfs-2016 ];
maintainers = with lib.maintainers; [ AndersonTorres joachifm ];
platforms = lib.platforms.unix;
2016-05-14 13:02:52 +00:00
};
2023-09-10 17:45:28 +00:00
})
# TODO [ AndersonTorres ]: lksh
# TODO [ AndersonTorres ]: a more accurate licensing info