From 5e72b0799722357e0cd5370081740fdd8beac2b3 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Thu, 9 Dec 2021 18:34:36 -0800 Subject: [PATCH] python3Packages.Nuitka: fix libuuid reference --- pkgs/development/python-modules/nuitka/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/nuitka/default.nix b/pkgs/development/python-modules/nuitka/default.nix index 548565ff1d35..127f1fcbedf6 100644 --- a/pkgs/development/python-modules/nuitka/default.nix +++ b/pkgs/development/python-modules/nuitka/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { postPatch = '' patchShebangs tests/run-tests '' + lib.optionalString stdenv.isLinux '' - substituteInPlace nuitka/plugins/standard/ImplicitImports.py --replace 'locateDLL("uuid")' '"${pkgs.util-linux.out}/lib/libuuid.so"' + substituteInPlace nuitka/plugins/standard/ImplicitImports.py --replace 'locateDLL("uuid")' '"${lib.getLib pkgs.util-linux}/lib/libuuid.so"' ''; # We do not want any wrappers here.