1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/jool/cli.nix

27 lines
630 B
Nix
Raw Normal View History

2017-07-31 23:31:12 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libnl }:
let
2017-07-31 23:31:12 +01:00
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
name = "jool-cli-${sourceAttrs.version}";
src = sourceAttrs.src;
2017-07-31 23:31:12 +01:00
sourceRoot = "Jool-v${sourceAttrs.version}-src/usr";
buildInputs = [ autoreconfHook pkgconfig libnl ];
2016-10-03 16:58:38 +01: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 ];
};
}