1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/text/agrep/default.nix

31 lines
915 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "agrep-${version}";
version = "3.41.5";
src = fetchFromGitHub {
owner = "Wikinaut";
repo = "agrep";
# This repository has numbered versions, but not Git tags.
rev = "eef20411d605d9d17ead07a0ade75046f2728e21";
sha256 = "14addnwspdf2mxpqyrw8b84bb2257y43g5ccy4ipgrr91fmxq2sk";
};
2018-01-13 19:34:27 +00:00
# Related: https://github.com/Wikinaut/agrep/pull/11
prePatch = stdenv.lib.optionalString (stdenv.hostPlatform.isMusl || stdenv.isDarwin) ''
sed -i '1i#include <sys/stat.h>' checkfil.c newmgrep.c recursiv.c
'';
installPhase = ''
install -Dm 555 agrep -t "$out/bin"
install -Dm 444 docs/* -t "$out/doc"
'';
meta = {
description = "Approximate grep for fast fuzzy string searching";
homepage = https://www.tgries.de/agrep/;
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.linux;
};
}