mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ce77225e21
This is the thing you want to look at.
12 lines
180 B
Nix
12 lines
180 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kconfig";
|
|
|
|
extraNativeBuildInputs = [qttools];
|
|
extraPropagatedBuildInputs = [qtdeclarative];
|
|
}
|