mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
iprange: init at 1.0.3
This commit is contained in:
parent
5d1a8ecd91
commit
5e25459144
2 changed files with 20 additions and 0 deletions
18
pkgs/applications/networking/firehol/iprange.nix
Normal file
18
pkgs/applications/networking/firehol/iprange.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -1982,6 +1982,8 @@ with pkgs;
|
|||
|
||||
finger_bsd = callPackage ../tools/networking/bsd-finger { };
|
||||
|
||||
iprange = callPackage ../applications/networking/firehol/iprange.nix {};
|
||||
|
||||
fio = callPackage ../tools/system/fio { };
|
||||
|
||||
flamerobin = callPackage ../applications/misc/flamerobin { };
|
||||
|
|
Loading…
Reference in a new issue