linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / agrep / default.nix
blob9fe158b426aecb4785e3ba205170f678bf8cb1fa
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "agrep";
5   version = "3.41.5";
7   src = fetchFromGitHub {
8     owner = "Wikinaut";
9     repo = "agrep";
10     # This repository has numbered versions, but not Git tags.
11     rev = "eef20411d605d9d17ead07a0ade75046f2728e21";
12     sha256 = "14addnwspdf2mxpqyrw8b84bb2257y43g5ccy4ipgrr91fmxq2sk";
13   };
15   # Related: https://github.com/Wikinaut/agrep/pull/11
16   prePatch = lib.optionalString (stdenv.hostPlatform.isMusl || stdenv.isDarwin) ''
17     sed -i '1i#include <sys/stat.h>' checkfil.c newmgrep.c recursiv.c
18   '';
19   installPhase = ''
20     install -Dm 555 agrep -t "$out/bin"
21     install -Dm 444 docs/* -t "$out/doc"
22   '';
24   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
26   meta = with lib; {
27     description = "Approximate grep for fast fuzzy string searching";
28     homepage = "https://www.tgries.de/agrep/";
29     license = licenses.isc;
30     platforms = with platforms; linux ++ darwin;
31   };