nixpkgs/pkgs/os-specific/linux/jool/cli.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

28 lines
657 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libnl }:
let
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
name = "jool-cli-${sourceAttrs.version}";
src = sourceAttrs.src;
sourceRoot = "Jool-v${sourceAttrs.version}-src/usr";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libnl ];
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 ];
};
}