2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-09-08 23:29:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "iprange";
|
2017-10-21 13:09:33 +01:00
|
|
|
version = "1.0.4";
|
2017-09-08 23:29:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
|
2017-10-21 13:09:33 +01:00
|
|
|
sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71";
|
2017-09-08 23:29:12 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-08 23:29:12 +01:00
|
|
|
description = "manage IP ranges";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/firehol/iprange";
|
2017-09-08 23:29:12 +01:00
|
|
|
license = licenses.gpl2;
|
2020-08-15 14:25:59 +01:00
|
|
|
maintainers = with maintainers; [ oxzi ];
|
2017-09-08 23:29:12 +01:00
|
|
|
};
|
|
|
|
}
|