ce77225e21
This is the thing you want to look at.
14 lines
243 B
Nix
14 lines
243 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qttools,
|
|
qtdeclarative,
|
|
qt5compat,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kirigami";
|
|
|
|
extraNativeBuildInputs = [qtsvg qttools];
|
|
extraBuildInputs = [qtdeclarative];
|
|
extraPropagatedBuildInputs = [qt5compat];
|
|
}
|