Merge pull request #278703 from atorres1985-contrib/loksh

Loksh: reword

authored by Thiago Kenji Okada and committed by GitHub e9552a35 3602153c

+16 -14
+16 -12
pkgs/shells/loksh/default.nix pkgs/by-name/lo/loksh/package.nix
··· 13 14 src = fetchFromGitHub { 15 owner = "dimkr"; 16 - repo = finalAttrs.pname; 17 rev = finalAttrs.version; 18 fetchSubmodules = true; 19 - sha256 = "sha256-gQK9gq6MsKVyOikOW0sW/SbIM1K/3I8pn58P/SqzKys="; 20 }; 21 22 nativeBuildInputs = [ 23 meson ··· 33 34 postInstall = '' 35 mv $out/bin/ksh $out/bin/loksh 36 - mv $out/share/man/man1/ksh.1 $out/share/man/man1/loksh.1 37 - mv $out/share/man/man1/sh.1 $out/share/man/man1/loksh-sh.1 38 ''; 39 40 - meta = with lib; { 41 homepage = "https://github.com/dimkr/loksh"; 42 description = "Linux port of OpenBSD's ksh"; 43 longDescription = '' ··· 49 vulnerabilities and makes loksh a good fit for resource-constrained 50 systems. 51 ''; 52 - license = licenses.publicDomain; 53 - maintainers = with maintainers; [ cameronnemo ]; 54 - platforms = platforms.linux; 55 - }; 56 - 57 - passthru = { 58 - shellPath = "/bin/loksh"; 59 }; 60 })
··· 13 14 src = fetchFromGitHub { 15 owner = "dimkr"; 16 + repo = "loksh"; 17 rev = finalAttrs.version; 18 fetchSubmodules = true; 19 + hash = "sha256-gQK9gq6MsKVyOikOW0sW/SbIM1K/3I8pn58P/SqzKys="; 20 }; 21 + 22 + outputs = [ "out" "doc" "man" ]; 23 24 nativeBuildInputs = [ 25 meson ··· 35 36 postInstall = '' 37 mv $out/bin/ksh $out/bin/loksh 38 + pushd $man/share/man/man1/ 39 + mv ksh.1 loksh.1 40 + mv sh.1 loksh-sh.1 41 + popd 42 ''; 43 44 + passthru = { 45 + shellPath = "/bin/loksh"; 46 + }; 47 + 48 + meta = { 49 homepage = "https://github.com/dimkr/loksh"; 50 description = "Linux port of OpenBSD's ksh"; 51 longDescription = '' ··· 57 vulnerabilities and makes loksh a good fit for resource-constrained 58 systems. 59 ''; 60 + license = with lib.licenses; [ publicDomain ]; 61 + maintainers = with lib.maintainers; [ AndersonTorres cameronnemo ]; 62 + platforms = lib.platforms.linux; 63 }; 64 })
-2
pkgs/top-level/all-packages.nix
··· 15415 15416 oksh = callPackage ../shells/oksh { }; 15417 15418 - loksh = callPackage ../shells/loksh { }; 15419 - 15420 scponly = callPackage ../shells/scponly { }; 15421 15422 rush = callPackage ../shells/rush { };
··· 15415 15416 oksh = callPackage ../shells/oksh { }; 15417 15418 scponly = callPackage ../shells/scponly { }; 15419 15420 rush = callPackage ../shells/rush { };