nickel-lang/organist

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
jmou commented

I am still running into the same problem while trying to get started with Organist. My flake.lock is on the latest commit of the organist repo (19b1dfc) so it includes #174.