mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
15 lines
251 B
Nix
15 lines
251 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qttools,
|
|
kirigami,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "qqc2-desktop-style";
|
|
|
|
extraNativeBuildInputs = [qttools];
|
|
extraBuildInputs = [qtdeclarative kirigami.unwrapped];
|
|
|
|
excludeDependencies = ["kirigami"];
|
|
}
|