mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
78 lines
1.9 KiB
Nix
78 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
getopt,
|
|
ip2location-c,
|
|
openssl,
|
|
perl,
|
|
libmaxminddb ? null,
|
|
geolite-legacy ? null,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipv6calc";
|
|
version = "4.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pbiering";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-2agZ/EqLbFdYh7qGDGX938TeCGZr1mUw4mQLy+O2+ug=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libmaxminddb
|
|
geolite-legacy
|
|
getopt
|
|
ip2location-c
|
|
openssl
|
|
perl
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs *.sh */*.sh
|
|
for i in {,databases/}lib/Makefile.in; do
|
|
substituteInPlace $i --replace "/sbin/ldconfig" "ldconfig"
|
|
done
|
|
'';
|
|
|
|
configureFlags =
|
|
[
|
|
"--prefix=${placeholder "out"}"
|
|
"--libdir=${placeholder "out"}/lib"
|
|
"--datadir=${placeholder "out"}/share"
|
|
"--disable-bundled-getopt"
|
|
"--disable-bundled-md5"
|
|
"--disable-dynamic-load"
|
|
"--enable-shared"
|
|
]
|
|
++ lib.optionals (libmaxminddb != null) [
|
|
"--enable-mmdb"
|
|
]
|
|
++ lib.optionals (geolite-legacy != null) [
|
|
"--with-geoip-db=${geolite-legacy}/share/GeoIP"
|
|
]
|
|
++ lib.optionals (ip2location-c != null) [
|
|
"--enable-ip2location"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Calculate/manipulate (not only) IPv6 addresses";
|
|
longDescription = ''
|
|
ipv6calc is a small utility to manipulate (not only) IPv6 addresses and
|
|
is able to do other tricky things. Intentions were convering a given
|
|
IPv6 address into compressed format, convering a given IPv6 address into
|
|
the same format like shown in /proc/net/if_inet6 and (because it was not
|
|
difficult) migrating the Perl program ip6_int into.
|
|
Now only one utiltity is needed to do a lot.
|
|
'';
|
|
homepage = "http://www.deepspace6.net/projects/ipv6calc.html";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|