nixpkgs/pkgs/tools/text/nawk/default.nix

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

41 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, bison, buildPackages }:
2017-07-27 14:06:01 +00:00
stdenv.mkDerivation rec {
pname = "nawk";
version = "unstable-2021-02-15";
2017-07-27 14:06:01 +00:00
src = fetchFromGitHub {
owner = "onetrueawk";
repo = "awk";
rev = "c0f4e97e4561ff42544e92512bbaf3d7d1f6a671";
sha256 = "kQCvItpSJnDJMDvlB8ruY+i0KdjmAphRDqCKw8f0m/8=";
2017-07-27 14:06:01 +00:00
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ bison ];
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"
install -Dm644 awk.1 "$out/share/man/man1/nawk.1"
runHook postInstall
2017-07-27 14:06:01 +00:00
'';
meta = {
description = "The one, true implementation of AWK";
longDescription = ''
This is the version of awk described in "The AWK Programming
Language", by Al Aho, Brian Kernighan, and Peter Weinberger
(Addison-Wesley, 1988, ISBN 0-201-07981-X).
'';
homepage = "https://www.cs.princeton.edu/~bwk/btl.mirror/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.konimex ];
platforms = lib.platforms.all;
2017-07-27 14:06:01 +00:00
};
}