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: 9ec6bcba221e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7b20f79df38b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 15, 2020

  1. system-syzygy: Fix invalid desktopFile arguments

    Fixes this build failure:
    
    Running desktop-file validation
    /nix/store/vadj03624kv6h963c7fjwdz1hg403aa9-system-syzygy.desktop/share/applications/system-syzygy.desktop: error: value "%out%/bin/syzygy" for key "Exec" in group "Desktop Entry" contains an invalid field code "%o"
    /nix/store/vadj03624kv6h963c7fjwdz1hg403aa9-system-syzygy.desktop/share/applications/system-syzygy.desktop: error: value "%out%/bin/syzygy" for key "Exec" in group "Desktop Entry" contains an invalid field code "%/"
    
    Signed-off-by: Anders Kaseorg <andersk@mit.edu>
    andersk committed Apr 15, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    1844d4a View commit details

Commits on Apr 16, 2020

  1. Merge pull request #85284 from andersk/system-syzygy

    system-syzygy: Fix invalid desktopFile arguments
    worldofpeace authored Apr 16, 2020
    Copy the full SHA
    7b20f79 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/games/system-syzygy/default.nix
2 changes: 1 addition & 1 deletion pkgs/games/system-syzygy/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
let
desktopFile = makeDesktopItem {
name = "system-syzygy";
exec = "%out%/bin/syzygy";
exec = "@out@/bin/syzygy";
comment = "A puzzle game";
desktopName = "System Syzygy";
categories = "Game;";