grepcidr: init at 2.0 (#38685)

This commit is contained in:
Tristan Helmich 2018-04-20 15:40:28 +02:00 committed by Robert Schütz
parent 7c1b8ac85f
commit 2d44db519e
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "grepcidr-${version}";
version = "2.0";
src = fetchurl {
url = "http://www.pc-tools.net/files/unix/${name}.tar.gz";
sha256 = "1yzpa1nigmmp4hir6377hrkpp0z6jnxgccaw2jbqgydbglvnm231";
};
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Filter IPv4 and IPv6 addresses matching CIDR patterns";
homepage = http://www.pc-tools.net/unix/grepcidr/;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.fadenb ];
};
}

View file

@ -15692,6 +15692,8 @@ with pkgs;
grass = callPackage ../applications/gis/grass { };
grepcidr = callPackage ../applications/search/grepcidr { };
grepm = callPackage ../applications/search/grepm { };
grip = callPackage ../applications/misc/grip {