summary refs log tree commit diff
path: root/pkgs/os-specific/linux/jool/cli.nix
blob: 8fb37ed1c5b8cfc0e9cdf07bf297fec25efba50e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchzip, autoreconfHook, pkgconfig, libnl }:

let
  sourceAttrs = (import ./source.nix) { inherit fetchzip; };
in

stdenv.mkDerivation {
  name = "jool-cli-${sourceAttrs.version}";

  src = sourceAttrs.src;

  sourceRoot = "Jool-${sourceAttrs.version}.zip/usr";

  buildInputs = [ autoreconfHook pkgconfig libnl ];

  meta = with stdenv.lib; {
    homepage = https://www.jool.mx/;
    description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
    platforms = platforms.linux;
    maintainers = with maintainers; [ fpletz ];
  };
}