mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
9 lines
209 B
Nix
9 lines
209 B
Nix
{ mkDerivation, extra-cmake-modules, qtbase, qttools }:
|
|
|
|
mkDerivation {
|
|
pname = "kconfig";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|