9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
29 lines
763 B
Nix
29 lines
763 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnl, iptables }:
|
|
|
|
let
|
|
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jool-cli-${sourceAttrs.version}";
|
|
|
|
src = sourceAttrs.src;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ libnl iptables ];
|
|
|
|
makeFlags = [ "-C" "src/usr" ];
|
|
|
|
prePatch = ''
|
|
sed -e 's%^XTABLES_SO_DIR = .*%XTABLES_SO_DIR = '"$out"'/lib/xtables%g' -i src/usr/iptables/Makefile
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.jool.mx/";
|
|
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|