libndp: fix cross compilation

This commit is contained in:
Nick Cao 2021-12-12 16:33:10 +08:00
parent cbee9da7f8
commit dafc46b1e0
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "libndp";
@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-iP+2buLrUn8Ub1wC9cy8OLqX0rDVfrRr+6SIghqwwCs=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "http://libndp.org/";
description = "Library for Neighbor Discovery Protocol";