depot/third_party/nixpkgs/pkgs/applications/networking/firehol/iprange.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

19 lines
518 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "iprange";
version = "1.0.4";
src = fetchurl {
url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71";
};
meta = with lib; {
description = "manage IP ranges";
mainProgram = "iprange";
homepage = "https://github.com/firehol/iprange";
license = licenses.gpl2;
maintainers = with maintainers; [ oxzi ];
};
}