7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
14 lines
188 B
Nix
14 lines
188 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtmultimedia,
|
|
xorg,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kmousetool";
|
|
|
|
extraBuildInputs = [
|
|
qtmultimedia
|
|
xorg.libXt
|
|
];
|
|
meta.mainProgram = "kmousetool";
|
|
}
|