We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Library packages for R (and presumably similarly structured ones) are not registered correctly inside the devshell.
To Reproduce
Steps to reproduce the behavior:
devshell.toml
[devshell] packages = [ "R", "rPackages.extrafont" ]
nix develop
R
loadlibrary("extrafont")
Result: Error in library("extrafont") : there is no package called ‘extrafont’
Error in library("extrafont") : there is no package called ‘extrafont’
Expected behavior
Should work the same as in nix-shell -p R -p rPackages.extrafont, where you get Registering fonts with R instead.
nix-shell -p R -p rPackages.extrafont
Registering fonts with R
System information
Inputs: ├───devshell: github:numtide/devshell/12e914740a25ea1891ec619bb53cf5e6ca922e40 │ ├───flake-utils: github:numtide/flake-utils/4022d587cbbfd70fe950c1e2083a02621806a725 │ │ └───systems: github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e │ └───nixpkgs: github:NixOS/nixpkgs/63143ac2c9186be6d9da6035fa22620018c85932 ├───flake-compat: github:edolstra/flake-compat/0f9255e01c2351cc7d116c072cb317785dd33b33 ├───flake-utils: github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a │ └───systems: github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e └───nixpkgs: path:/nix/store/gig8j85kj7ybjy3ksn6k3aich8j2k59y-source?lastModified=0&narHash=sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY%3D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Library packages for R (and presumably similarly structured ones) are not registered correctly inside the devshell.
To Reproduce
Steps to reproduce the behavior:
devshell.toml
:nix develop
thenR
, tryloadlibrary("extrafont")
.Result:
Error in library("extrafont") : there is no package called ‘extrafont’
Expected behavior
Should work the same as in
nix-shell -p R -p rPackages.extrafont
, where you getRegistering fonts with R
instead.System information
The text was updated successfully, but these errors were encountered: