depot/pkgs/development/libraries/kde-frameworks/kconfig.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
209 B
Nix
Raw Normal View History

{ mkDerivation, extra-cmake-modules, qtbase, qttools }:
mkDerivation {
pname = "kconfig";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qttools ];
propagatedBuildInputs = [ qtbase ];
}