about summary refs log tree commit diff
path: root/pkgs/applications/networking/firehol/iprange.nix
blob: d1f3ad6968790ee95f5b30fbcdee260b01bd09e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "iprange-${version}";
  version = "1.0.3";

  src = fetchurl {
    url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
    sha256 = "0lwgl5ybrhsv43llq3kgdjpvgyfl43f3nxm0g8a8cd7zmn754bg2";
  };

  meta = with stdenv.lib; {
    description = "manage IP ranges";
    homepage = https://github.com/firehol/iprange;
    license = licenses.gpl2;
    maintainers = with maintainers; [ geistesk ];
  };
}