biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / search / grepcidr / default.nix
blob231718c810eef248c3b63995a8102792c94351ca
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "grepcidr";
5   version = "2.0";
7   src = fetchurl {
8     url = "http://www.pc-tools.net/files/unix/${pname}-${version}.tar.gz";
9     sha256 = "1yzpa1nigmmp4hir6377hrkpp0z6jnxgccaw2jbqgydbglvnm231";
10   };
12   installFlags = [ "PREFIX=$(out)" ];
14   meta = with lib; {
15     description = "Filter IPv4 and IPv6 addresses matching CIDR patterns";
16     homepage = "http://www.pc-tools.net/unix/grepcidr/";
17     license = licenses.gpl3;
18     platforms = platforms.unix;
19     maintainers = [ maintainers.fadenb ];
20     mainProgram = "grepcidr";
21   };