We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See 43f0f04#commitcomment-20773045
Basically, some applications don't have good .desktop files, so we may need to create them custom.
The text was updated successfully, but these errors were encountered:
I find myself using things like this:
app_src = input : pkgs.stdenv.mkDerivation rec { name="share"; exec="bin/main"; src = input; buildCommand = '' source $stdenv/setup cp -rL $src/. $out/ chmod +w -R $out/ substituteInPlace $out/share/applications/example.desktop \ --replace '@icon@' $out/share/example-appimage \ --replace '@out@' $out/bin \ --replace '@exec@' $out/${exec} mkdir -p $out/nix-support echo "file binary-dist $out/${exec}" > $out/nix-support/hydra-build-products echo $(basename ${exec})> $out/nix-support/hydra-release-name chmod -w -R $out/ ''; system = builtins.currentSystem; };
Sorry, something went wrong.
No branches or pull requests
See 43f0f04#commitcomment-20773045
Basically, some applications don't have good .desktop files, so we may need to create them custom.
The text was updated successfully, but these errors were encountered: