summary refs log blame commit diff
path: root/pkgs/os-specific/linux/jool/cli.nix
blob: b1bce496614a14f90a4c699b0eade160268c9104 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                              

   
                                                                   






                                           
                                                    

                                   
                                 
 

                                                                                                        

     
                    
                                      

                                                                                   
                            


                                               
{ 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 ];
  };
}