mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
543cd40ecc
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 | xargs -i nvim {}` and sorting the opened files by hand, avoiding generated packages list
26 lines
633 B
Nix
26 lines
633 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "netmask";
|
|
version = "2.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tlby";
|
|
repo = "netmask";
|
|
rev = "v${version}";
|
|
sha256 = "1269bmdvl534wr0bamd7cqbnr76pnb14yn8ly4qsfg29kh7hrds6";
|
|
};
|
|
|
|
buildInputs = [ texinfo ];
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tlby/netmask";
|
|
description = "IP address formatting tool";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jensbin ];
|
|
mainProgram = "netmask";
|
|
};
|
|
}
|