inlyne: install .desktop file (#429131)

This commit is contained in:
Aleksana
2025-11-12 14:45:48 +00:00
committed by GitHub

View File

@@ -50,12 +50,16 @@ rustPlatform.buildRustPackage rec {
"--skip=watcher::tests::the_gauntlet"
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd inlyne \
--bash completions/inlyne.bash \
--fish completions/inlyne.fish \
--zsh completions/_inlyne
'';
postInstall =
lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd inlyne \
--bash completions/inlyne.bash \
--fish completions/inlyne.fish \
--zsh completions/_inlyne
''
+ ''
install -Dm444 assets/inlyne.desktop -t $out/share/applications
'';
postFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
patchelf $out/bin/inlyne \