mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
12 lines
181 B
Nix
12 lines
181 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "qqc2-desktop-style";
|
|
|
|
extraNativeBuildInputs = [qttools];
|
|
extraBuildInputs = [qtdeclarative];
|
|
}
|