pkgs.pkgconfig -> pkgs.pkg-config

master 3.6.0
lassulus 3 years ago
parent 0dfe1e1d87
commit 7b14238984
  1. 4
      pkgs/default.nix

@ -194,13 +194,13 @@ pkgs: oldpkgs: {
libraries ? {} libraries ? {}
}: text: pkgs.runCommand name { }: text: pkgs.runCommand name {
inherit text; inherit text;
buildInputs = [ pkgs.pkgconfig ] ++ attrValues libraries; buildInputs = [ pkgs.pkg-config ] ++ attrValues libraries;
passAsFile = [ "text" ]; passAsFile = [ "text" ];
} /* sh */ '' } /* sh */ ''
PATH=${makeBinPath [ PATH=${makeBinPath [
pkgs.binutils-unwrapped pkgs.binutils-unwrapped
pkgs.coreutils pkgs.coreutils
pkgs.pkgconfig pkgs.pkg-config
pkgs.stdenv.cc pkgs.stdenv.cc
]} ]}
exe=$out${destination} exe=$out${destination}

Loading…
Cancel
Save