nixpkgs/pkgs/tools/networking/netmask/default.nix

25 lines
604 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, texinfo }:
2017-08-31 18:27:00 +00:00
2017-08-31 19:14:35 +00:00
stdenv.mkDerivation rec {
pname = "netmask";
version = "2.4.4";
2017-08-31 18:27:00 +00:00
src = fetchFromGitHub {
owner = "tlby";
repo = "netmask";
rev = "v${version}";
sha256 = "1269bmdvl534wr0bamd7cqbnr76pnb14yn8ly4qsfg29kh7hrds6";
2017-08-31 18:27:00 +00:00
};
2017-08-31 19:14:35 +00:00
buildInputs = [ texinfo ];
nativeBuildInputs = [ autoreconfHook ];
2017-08-31 18:27:00 +00:00
meta = with lib; {
homepage = "https://github.com/tlby/netmask";
2017-08-31 18:27:00 +00:00
description = "An IP address formatting tool ";
2017-08-31 19:14:35 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.jensbin ];
2017-08-31 18:27:00 +00:00
};
}