mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
12 lines
176 B
Nix
12 lines
176 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kholidays";
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
extraBuildInputs = [ qtdeclarative ];
|
|
}
|