1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

guile-avahi: fix cross

This commit is contained in:
Weijia Wang 2023-10-24 11:55:02 +02:00
parent 5655c7f0be
commit fe69b53fa7

View file

@ -3,6 +3,7 @@
, fetchgit
, avahi
, gmp
, buildPackages
, autoreconfHook
, pkg-config
, texinfo
@ -20,6 +21,7 @@ stdenv.mkDerivation rec {
};
strictDeps = true;
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
buildInputs = [ guile ];
propagatedBuildInputs = [ avahi gmp ];