Skip to content

Commit

Permalink
ip2unix: fix cross compilation (#351904)
Browse files Browse the repository at this point in the history
  • Loading branch information
uninsane authored Nov 18, 2024
2 parents 1a516ee + ba0d80d commit f18f448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/by-name/ip/ip2unix/package.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 f18f448

Please sign in to comment.