mksh: fix license
According to official documentation (http://www.mirbsd.org/TaC-mksh.txt), mksh licensing changes according to build-time configuration.
This commit is contained in:
parent
9e04298eff
commit
f7d1fb542f
1 changed files with 25 additions and 9 deletions
|
@ -1,4 +1,8 @@
|
||||||
{ lib, stdenv, fetchurl }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, installShellFiles
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mksh";
|
pname = "mksh";
|
||||||
|
@ -6,20 +10,30 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [
|
urls = [
|
||||||
"https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
"https://www.mirbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
|
||||||
"http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
|
"http://pub.allbsd.org/MirOS/dist/mir/mksh/${pname}-R${version}.tgz"
|
||||||
];
|
];
|
||||||
sha256 = "01n5ggw33bw4jv4d3148wlw9n4aj7vdn3ffnc66c9w9pldjidbkp";
|
hash = "sha256-d64WZaM38cSMYda5Yds+UhGbOOWIhNHIloSvMfh7xQY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
installShellFiles
|
||||||
|
];
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
buildPhase = "sh ./Build.sh -r";
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
sh ./Build.sh -r
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -D -m 755 mksh $out/bin/mksh
|
runHook preInstall
|
||||||
install -D -m 644 mksh.1 $out/share/man/man1/mksh.1
|
install -D mksh $out/bin/mksh
|
||||||
install -D -m 644 dot.mkshrc $out/share/mksh/mkshrc
|
install -D dot.mkshrc $out/share/mksh/mkshrc
|
||||||
|
installManPage mksh.1
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -32,7 +46,7 @@ stdenv.mkDerivation rec {
|
||||||
systems.
|
systems.
|
||||||
'';
|
'';
|
||||||
homepage = "https://www.mirbsd.org/mksh.htm";
|
homepage = "https://www.mirbsd.org/mksh.htm";
|
||||||
license = licenses.bsd3;
|
license = with licenses; [ miros isc unicode-dfs-2016 ];
|
||||||
maintainers = with maintainers; [ AndersonTorres joachifm ];
|
maintainers = with maintainers; [ AndersonTorres joachifm ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
@ -41,3 +55,5 @@ stdenv.mkDerivation rec {
|
||||||
shellPath = "/bin/mksh";
|
shellPath = "/bin/mksh";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
# TODO [ AndersonTorres ]: lksh
|
||||||
|
# TODO [ AndersonTorres ]: a more accurate licensing info
|
||||||
|
|
Loading…
Reference in a new issue