mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
samba: fix cross compilation
This commit is contained in:
parent
627dda7f87
commit
aa3928fad4
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
python
|
||||
python3Packages.python
|
||||
wafHook
|
||||
pkg-config
|
||||
bison
|
||||
|
@ -223,7 +223,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
disallowedReferences =
|
||||
lib.optionals (buildPackages.python3Packages.python != python)
|
||||
lib.optionals (buildPackages.python3Packages.python != python3Packages.python)
|
||||
[ buildPackages.python3Packages.python ];
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue