nixpkgs/pkgs/by-name/na/nawk/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, bison
, buildPackages
, installShellFiles
}:
2017-07-27 14:06:01 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "nawk";
2023-09-19 19:29:42 +00:00
version = "20230911";
2017-07-27 14:06:01 +00:00
src = fetchFromGitHub {
owner = "onetrueawk";
repo = "awk";
2023-09-19 19:29:42 +00:00
rev = "2ndEdition";
hash = "sha256-9SxeYsTFrsJ+Cg43QjQihi2Ij0qdJvTnyGGhUHJHjuU=";
2017-07-27 14:06:01 +00:00
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
bison
installShellFiles
];
outputs = [ "out" "man" ];
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
"HOSTCC=${if stdenv.buildPlatform.isDarwin then "clang" else "cc"}"
];
2017-07-27 14:06:01 +00:00
installPhase = ''
runHook preInstall
2017-07-27 14:06:01 +00:00
install -Dm755 a.out "$out/bin/nawk"
mv awk.1 nawk.1
installManPage nawk.1
runHook postInstall
2017-07-27 14:06:01 +00:00
'';
meta = {
2023-09-20 08:10:28 +00:00
homepage = "https://awk.dev";
2017-07-27 14:06:01 +00:00
description = "The one, true implementation of AWK";
longDescription = ''
2023-09-19 19:29:42 +00:00
This is the version of awk described in "The AWK Programming Language",
Second Edition, by Al Aho, Brian Kernighan, and Peter Weinberger
(Addison-Wesley, 2023, ISBN 0-13-826972-6).
2017-07-27 14:06:01 +00:00
'';
changelog = "https://github.com/onetrueawk/awk/blob/${finalAttrs.src.rev}/ChangeLog";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
mainProgram = "nawk";
maintainers = with lib.maintainers; [ AndersonTorres konimex ];
platforms = lib.platforms.all;
2017-07-27 14:06:01 +00:00
};
})