24 lines
502 B
Nix
24 lines
502 B
Nix
|
|
{
|
||
|
|
symlinkJoin,
|
||
|
|
makeWrapper,
|
||
|
|
qq,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
symlinkJoin {
|
||
|
|
name = "QQ";
|
||
|
|
paths = [qq];
|
||
|
|
inherit (qq) meta;
|
||
|
|
buildInputs = [
|
||
|
|
makeWrapper
|
||
|
|
];
|
||
|
|
postBuild = ''
|
||
|
|
rm $out/share/applications/qq.desktop
|
||
|
|
cp ${qq}/share/applications/qq.desktop $out/share/applications/qq.desktop
|
||
|
|
substituteInPlace $out/share/applications/qq.desktop \
|
||
|
|
--replace-fail "${qq}" $out
|
||
|
|
wrapProgram $out/bin/qq \
|
||
|
|
--set NIXOS_OZONE_WL 1 \
|
||
|
|
--add-flags '--wayland-text-input-version=3'
|
||
|
|
'';
|
||
|
|
}
|