netmask: init at 2.4.3
This commit is contained in:
parent
d0e4aef32a
commit
1785ac4a13
29
pkgs/tools/networking/netmask/default.nix
Normal file
29
pkgs/tools/networking/netmask/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{stdenv, fetchFromGitHub, automake, autoconf, texinfo}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec
|
||||||
|
{
|
||||||
|
name = "netmask-${version}";
|
||||||
|
version = "2.4.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tlby";
|
||||||
|
repo = "netmask";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1n6b9f60j7hfdbpbppgkhz3lr7pg963bxnfrq95i1d49xmx41f87";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ automake autoconf texinfo ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta =
|
||||||
|
{
|
||||||
|
homepage = https://github.com/tlby/netmask;
|
||||||
|
description = "An IP address formatting tool ";
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.jensbin ];
|
||||||
|
};
|
||||||
|
}
|
@ -2658,6 +2658,8 @@ with pkgs;
|
|||||||
|
|
||||||
ipcalc = callPackage ../tools/networking/ipcalc {};
|
ipcalc = callPackage ../tools/networking/ipcalc {};
|
||||||
|
|
||||||
|
netmask = callPackage ../tools/networking/netmask {};
|
||||||
|
|
||||||
ipv6calc = callPackage ../tools/networking/ipv6calc {};
|
ipv6calc = callPackage ../tools/networking/ipv6calc {};
|
||||||
|
|
||||||
ipxe = callPackage ../tools/misc/ipxe { };
|
ipxe = callPackage ../tools/misc/ipxe { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user