about summary refs log tree commit diff
path: root/pkgs/tools/networking/subnetcalc
diff options
context:
space:
mode:
authorAtilaSaraiva <atilasaraiva@gmail.com>2022-04-24 12:31:20 -0300
committerAtilaSaraiva <atilasaraiva@gmail.com>2022-04-24 17:01:37 -0300
commitc60d862933db1847e09f3e57b4bd69dfb3bea7e3 (patch)
tree45a96249eddb387fabf2343931e46b00b1db3d6d /pkgs/tools/networking/subnetcalc
parent9cba3bc856e208cf2037d41ed2e087783db1ab35 (diff)
subnetcalc: init at 2.4.19
Diffstat (limited to 'pkgs/tools/networking/subnetcalc')
-rw-r--r--pkgs/tools/networking/subnetcalc/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/networking/subnetcalc/default.nix b/pkgs/tools/networking/subnetcalc/default.nix
new file mode 100644
index 0000000000000..db8c983be0967
--- /dev/null
+++ b/pkgs/tools/networking/subnetcalc/default.nix
@@ -0,0 +1,31 @@
+{ lib, stdenv, fetchFromGitHub, cmake, ninja }:
+
+stdenv.mkDerivation rec {
+  pname = "subnetcalc";
+  version = "2.4.19";
+
+  src = fetchFromGitHub {
+    owner = "dreibh";
+    repo = pname;
+    rev = "${pname}-${version}";
+    sha256 = "sha256-70OHHcdCsZBa95KQEEYhs6LfpjPg+ULOB+A+VrQVltU=";
+  };
+
+  nativeBuildInputs = [ cmake ninja ];
+
+  meta = with lib; {
+    description = "SubNetCalc is an IPv4/IPv6 subnet address calculator";
+    longDescription = ''
+      SubNetCalc is an IPv4/IPv6 subnet address calculator. For given IPv4 or
+      IPv6 address and netmask or prefix length, it calculates network address,
+      broadcast address, maximum number of hosts and host address range. Also,
+      it prints the addresses in binary format for better understandability.
+      Furthermore, it prints useful information on specific address types (e.g.
+      type, scope, interface ID, etc.).
+    '';
+    homepage = "https://www.uni-due.de/~be0001/subnetcalc/";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ atila ];
+    platforms = platforms.unix;
+  };
+}