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

Commits on Jul 3, 2017

  1. gogs: Fix cyclic dependency on darwin

    This fixes the "cycle detected in the references of" error when building
    on darwin. The fix is based on the solution in issue #18131.
    knedlsepp committed Jul 3, 2017
    Copy the full SHA
    7f7b74d View commit details
  2. Merge pull request #27104 from knedlsepp/fix-gogs-on-darwin

    gogs: Fix cyclic dependency on darwin
    LnL7 authored Jul 3, 2017
    Copy the full SHA
    2e2769f View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/applications/version-management/gogs/default.nix
4 changes: 3 additions & 1 deletion pkgs/applications/version-management/gogs/default.nix
Original file line number Diff line number Diff line change
@@ -26,7 +26,9 @@ buildGoPackage rec {

outputs = [ "bin" "out" "data" ];

postInstall = ''
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
install_name_tool -delete_rpath $out/lib $bin/bin/gogs
'' + ''
mkdir $data
cp -R $src/{public,templates} $data