-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dejavu-fonts-full downloads from binary cache but does not build on NixOS #66598
Comments
This might be related to #61422 |
OK, indeed #61422 is the solution. Before commit e9784b1, That meant that even if its dependencies like In conclusion: |
Using `pkgs.python27` instead of `previous.python27` was totally wrong, that stops overlays from working correctly. Not sure what I was thinking when I wrote that. Fixes `pkgs.fontforge` failing to link with weird glibc error via python as shown in NixOS/nixpkgs#66598.
Using `pkgs.python27` instead of `previous.python27` was totally wrong, that stops overlays from working correctly. Not sure what I was thinking when I wrote that. Fixes `pkgs.fontforge` failing to link with weird glibc error via python as shown in NixOS/nixpkgs#66598.
Using `pkgs.python27` instead of `previous.python27` was totally wrong, that stops overlays from working correctly. Not sure what I was thinking when I wrote that. Fixes `pkgs.fontforge` failing to link with weird glibc error via python as shown in NixOS/nixpkgs#66598.
Using `pkgs.python27` instead of `previous.python27` was totally wrong, that stops overlays from working correctly. Not sure what I was thinking when I wrote that. Fixes `pkgs.fontforge` failing to link with weird glibc error via python as shown in NixOS/nixpkgs#66598.
I found at least one package that is downloadable from
cache.nixos.org
but fails with a linker error when built in the NixOS sandbox:dejavu-fonts-full
downloads successfully from the cache, but building one of its dependencies (fontforge
) from source fails with a linker error.To reproduce
I've reproduced it on a from-scratch AWS machine with AMI ID
nixos-19.03.git.c7a57ae6b4e-x86_64-hvm-ebs (ami-04c7d80f45a20080f)
.Steps:
The above prints
copying path '/nix/store/h379maqxw7skwgryfxlk576dkfrfwjrn-dejavu-fonts-full-2.37' from 'https://cache.nixos.org'...
. Let's build it from source:This will fail with linker error:
(The
static-haskell-nix
clone isn't strictly necessary but I'm using it to easily get the.drv
in question.)What's going on?
Shouldn't all packages on
cache.nixos.org
also build from source on NixOS?The text was updated successfully, but these errors were encountered: