mksh: fix URL

This commit is contained in:
AndersonTorres 2022-05-14 15:58:13 -03:00
parent 23fcb9a8e2
commit d99becc893

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
src = fetchurl { src = fetchurl {
urls = [ urls = [
"https://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz" "http://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
"http://pub.allbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz" "http://pub.allbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
]; ];
hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY="; hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY=";
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
homepage = "http://www.mirbsd.org/mksh.htm";
description = "MirBSD Korn Shell"; description = "MirBSD Korn Shell";
longDescription = '' longDescription = ''
The MirBSD Korn Shell is a DFSG-free and OSD-compliant (and OSI The MirBSD Korn Shell is a DFSG-free and OSD-compliant (and OSI
@ -45,7 +46,6 @@ stdenv.mkDerivation rec {
also to be readily available under other UNIX(R)-like operating also to be readily available under other UNIX(R)-like operating
systems. systems.
''; '';
homepage = "https://www.mirbsd.org/mksh.htm";
license = with licenses; [ miros isc unicode-dfs-2016 ]; license = with licenses; [ miros isc unicode-dfs-2016 ];
maintainers = with maintainers; [ AndersonTorres joachifm ]; maintainers = with maintainers; [ AndersonTorres joachifm ];
platforms = platforms.unix; platforms = platforms.unix;