mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
23 lines
564 B
Nix
23 lines
564 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|