DEVELOPMENT ENVIRONMENT

~liljamo/canwa

485944c47994e562fb5ac3ce2a1b78d15f211026 — Jonni Liljamo 10 days ago 70ea5c0
fix(nix): pkg-config and openssl in package inputs
1 files changed, 6 insertions(+), 0 deletions(-)

M nix/default.nix
M nix/default.nix => nix/default.nix +6 -0
@@ 3,6 3,9 @@
  rustPlatform,
  # nativeBuildInputs
  mold,
  pkg-config,
  # libs
  openssl,
}: let
  manifest = (lib.importTOML ../Cargo.toml).package;
in


@@ 16,8 19,11 @@ in

    nativeBuildInputs = [
      mold
      pkg-config
    ];

    buildInputs = [openssl];

    meta = {
      description = manifest.description;
      license = lib.licenses.agpl3Plus;