mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
20 lines
264 B
Nix
20 lines
264 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwayland,
|
|
qttools,
|
|
jq,
|
|
wayland,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libkscreen";
|
|
|
|
extraNativeBuildInputs = [
|
|
qttools
|
|
qtwayland
|
|
jq
|
|
wayland
|
|
];
|
|
extraBuildInputs = [ qtwayland ];
|
|
meta.mainProgram = "kscreen-doctor";
|
|
}
|