Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d4f45ae39398
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c09d4ae6a8e3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 17, 2017

  1. Unverified

    The committer email address is not verified.
    Copy the full SHA
    8506fc3 View commit details

Commits on Jun 24, 2017

  1. Merge pull request #26729 from igsha/languagetool

    languagetool: fix arguments passing
    Mic92 authored Jun 24, 2017

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    c09d4ae View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/tools/text/languagetool/default.nix
2 changes: 1 addition & 1 deletion pkgs/tools/text/languagetool/default.nix
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
for lt in languagetool{,-commandline,-server};do
cat > $out/bin/$lt <<EXE
#!${stdenv.shell}
${jdk}/bin/java -cp $out/share/ -jar $out/share/$lt.jar $@
${jdk}/bin/java -cp $out/share/ -jar $out/share/$lt.jar "\$@"
EXE
chmod +x $out/bin/$lt
done