when added as packages in a shell, pkg-config doesn't find packages
jneem opened this issue · 1 comments
jneem commented
With the project.ncl
below, if I enter the shell and type pkg-config --cflags openssl
, it complains that "Package openssl was not found in the pkg-config search path."
let inputs = import "./nickel.lock.ncl" in
let organist = inputs.organist in
{
shells = organist.shells.Bash,
shells.build = {
packages = {},
},
shells.dev = {
packages.openssl = organist.import_nix "nixpkgs#openssl",
packages.pkg-config = organist.import_nix "nixpkgs#pkg-config",
},
}
| organist.OrganistExpression