Skip to content

Commit

Permalink
agrep: init at 3.41.5
Browse files Browse the repository at this point in the history
In category `tools`, subcategory `text`, add a package definition for
the program [`agrep`] [1] — "Approximate `grep` for fast fuzzy string
searching".

I have tested this patch per nixpkgs manual section 11.1 ("Making
patches").

[1]: <https://www.tgries.de/agrep/>

(cherry picked from commit 0033f60)
  • Loading branch information
8573 authored and rbvermaa committed Jan 19, 2017
1 parent 55516d8 commit cff9154
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/text/agrep/default.nix
@@ -0,0 +1,26 @@
{ 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";
};

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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -377,6 +377,8 @@ in

afl = callPackage ../tools/security/afl { };

agrep = callPackage ../tools/text/agrep { };

aha = callPackage ../tools/text/aha { };

ahcpd = callPackage ../tools/networking/ahcpd { };
Expand Down

0 comments on commit cff9154

Please sign in to comment.