2022-04-27 09:35:20 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, buildPackages }:
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "oksh";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "7.3";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ibara";
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${version}";
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "sha256-uGiPbkIeKH9zu+xKJJLCYFnyejWLdq7bE59yub3f3KM=";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
postPatch = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
|
|
|
|
substituteInPlace configure --replace "./conftest" "echo"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--no-strip" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-01-09 10:05:03 +00:00
|
|
|
description = "Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh)";
|
|
|
|
homepage = "https://github.com/ibara/oksh";
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2021-06-01 10:57:12 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/oksh";
|
|
|
|
};
|
2021-01-09 10:05:03 +00:00
|
|
|
}
|