about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-04-11 13:50:22 +0200
committerGitHub <noreply@github.com>2023-04-11 13:50:22 +0200
commit6d468c3a2e5cdf150672044a771fad89077bb8e5 (patch)
tree26c9ec727baee9d958d2448703394c2b7925a19f /pkgs
parent16e25152063ae2141f64024bdd275a701c73c69a (diff)
parent4ace88d63b14ef62f24d26c984775edc2ab1737c (diff)
Merge pull request #225731 from ivan/python38-meson
python38Packages.meson: fix build with libxcrypt
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/build-managers/meson/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/meson/default.nix b/pkgs/development/tools/build-managers/meson/default.nix
index 23e11a324337c..8ddc38beb5ec9 100644
--- a/pkgs/development/tools/build-managers/meson/default.nix
+++ b/pkgs/development/tools/build-managers/meson/default.nix
@@ -12,6 +12,7 @@
 , OpenGL
 , AppKit
 , Cocoa
+, libxcrypt
 }:
 
 python3.pkgs.buildPythonApplication rec {
@@ -120,6 +121,10 @@ python3.pkgs.buildPythonApplication rec {
       --replace "python3 -c " "${python3.interpreter} -c "
   '';
 
+  buildInputs = lib.optionals (python3.pythonOlder "3.9") [
+    libxcrypt
+  ];
+
   nativeBuildInputs = [ installShellFiles ];
 
   postInstall = ''