summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/search/grepcidr/default.nix
blob: bdc660db45fc57ecf8d21b637ef9b0b99b6d7a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "grepcidr";
  version = "2.0";

  src = fetchurl {
    url = "http://www.pc-tools.net/files/unix/${pname}-${version}.tar.gz";
    sha256 = "1yzpa1nigmmp4hir6377hrkpp0z6jnxgccaw2jbqgydbglvnm231";
  };

  installFlags = [ "PREFIX=$(out)" ];

  meta = with 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 ];
  };
}