about summary refs log tree commit diff
path: root/pkgs/applications/networking/firehol
diff options
context:
space:
mode:
authorgeistesk <github.jyf300hj@0x21.biz>2017-09-09 00:29:12 +0200
committergeistesk <github.jyf300hj@0x21.biz>2017-09-09 00:29:12 +0200
commit5e25459144320f867fccc64f63f1f16b4db10c24 (patch)
tree0bc66deedb8a640e83a901dd79fadec79fd1dc0a /pkgs/applications/networking/firehol
parent5d1a8ecd916893ac377311de4abd5d7043646280 (diff)
iprange: init at 1.0.3
Diffstat (limited to 'pkgs/applications/networking/firehol')
-rw-r--r--pkgs/applications/networking/firehol/iprange.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/networking/firehol/iprange.nix b/pkgs/applications/networking/firehol/iprange.nix
new file mode 100644
index 0000000000000..d1f3ad6968790
--- /dev/null
+++ b/pkgs/applications/networking/firehol/iprange.nix
@@ -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 ];
+  };
+}