nixpkgs/pkgs/os-specific/linux/jool/cli.nix

27 lines
615 B
Nix
Raw Normal View History

{ 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 ];
2016-10-03 15:58:38 +00:00
postPatch = ''
chmod u+w -R ../common
'';
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 ];
};
}