mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
11 lines
144 B
Nix
11 lines
144 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtwayland,
|
||
|
qtmultimedia,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "spectacle";
|
||
|
|
||
|
extraBuildInputs = [qtwayland qtmultimedia];
|
||
|
}
|