mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mksh-${version}";
|
|
version = "56c";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
|
"http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
|
];
|
|
sha256 = "0xzv5b83b8ccn3d4qvwz3gk83fi1d42kphax1527nni1472fp1nx";
|
|
};
|
|
|
|
buildPhase = ''sh ./Build.sh -r -c lto'';
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
homepage = https://www.mirbsd.org/mksh.htm;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ AndersonTorres joachifm ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/mksh";
|
|
};
|
|
}
|