mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ncurses
|
|
, ninja
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "loksh";
|
|
version = "7.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dimkr";
|
|
repo = "loksh";
|
|
rev = finalAttrs.version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-gQK9gq6MsKVyOikOW0sW/SbIM1K/3I8pn58P/SqzKys=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
postInstall = ''
|
|
mv $out/bin/ksh $out/bin/loksh
|
|
pushd $man/share/man/man1/
|
|
mv ksh.1 loksh.1
|
|
mv sh.1 loksh-sh.1
|
|
popd
|
|
'';
|
|
|
|
passthru = {
|
|
shellPath = "/bin/loksh";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dimkr/loksh";
|
|
description = "Linux port of OpenBSD's ksh";
|
|
mainProgram = "loksh";
|
|
longDescription = ''
|
|
loksh is a Linux port of OpenBSD's ksh.
|
|
|
|
Unlike other ports of ksh, loksh targets only one platform, follows
|
|
upstream closely and keeps changes to a minimum. loksh does not add any
|
|
extra features; this reduces the risk of introducing security
|
|
vulnerabilities and makes loksh a good fit for resource-constrained
|
|
systems.
|
|
'';
|
|
license = with lib.licenses; [ publicDomain ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres cameronnemo ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|