mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
![Alyssa Ross](/assets/img/avatar_default.png)
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
13 lines
389 B
Nix
13 lines
389 B
Nix
{ lib, stdenv, qtModule, qtdeclarative, qtwebengine, CoreFoundation, WebKit }:
|
|
|
|
qtModule {
|
|
pname = "qtwebview";
|
|
propagatedBuildInputs = [ qtdeclarative qtwebengine ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
CoreFoundation
|
|
WebKit
|
|
];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
|
|
}
|