Skip to content

Commit

Permalink
ip2unix: fix cross compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao committed Oct 28, 2024
1 parent 1864118 commit 86bf395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/ip2unix/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, meson, ninja, pkg-config, yaml-cpp, systemd
, python3Packages, asciidoc, libxslt, docbook_xml_dtd_45, docbook_xsl
, libxml2, docbook5
, libxml2, docbook5, mesonEmulatorHook
}:

stdenv.mkDerivation rec {
Expand All @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
meson ninja pkg-config asciidoc libxslt.bin docbook_xml_dtd_45 docbook_xsl
libxml2.bin docbook5 python3Packages.pytest python3Packages.pytest-timeout
systemd
];
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ mesonEmulatorHook ];

buildInputs = [ yaml-cpp ];

Expand Down

0 comments on commit 86bf395

Please sign in to comment.