4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, meson, ninja, fetchFromGitHub, which, python, fetchpatch
|
|
, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ksh";
|
|
version = "2020.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "att";
|
|
repo = "ast";
|
|
rev = version;
|
|
sha256 = "0cdxz0nhpq03gb9rd76fn0x1yzs2c8q289b7vcxnzlsrz1imz65j";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/att/ast/commit/11983a71f5e29df578b7e2184400728b4e3f451d.patch";
|
|
sha256 = "1n9558c4v2qpgpjb1vafs29n3qn3z0770wr1ayc0xjf5z5j4g3kv";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ meson ninja which python ];
|
|
|
|
buildInputs = [ libiconv ];
|
|
|
|
meta = with lib; {
|
|
description = "KornShell Command And Programming Language";
|
|
longDescription = ''
|
|
The KornShell language was designed and developed by David G. Korn at
|
|
AT&T Bell Laboratories. It is an interactive command language that
|
|
provides access to the UNIX system and to many other systems, on the
|
|
many different computers and workstations on which it is implemented.
|
|
'';
|
|
homepage = "https://github.com/att/ast";
|
|
license = licenses.cpl10;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/ksh";
|
|
};
|
|
}
|