Skip to content

Commit

Permalink
mercurial: don't propagate frameworks
Browse files Browse the repository at this point in the history
(cherry picked from commit b3facac)
  • Loading branch information
LnL7 committed Dec 30, 2017
1 parent b74a6ce commit 9c580ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/version-management/mercurial/default.nix
Expand Up @@ -18,12 +18,12 @@ in python2Packages.buildPythonApplication {

inherit python; # pass it so that the same version can be used in hg2git

buildInputs = [ makeWrapper docutils unzip ];
buildInputs = [ makeWrapper docutils unzip ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices ];

propagatedBuildInputs = [ hg-git dulwich ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices cf-private ];
propagatedBuildInputs = [ hg-git dulwich ];

makeFlags = "PREFIX=$(out)";
makeFlags = [ "PREFIX=$(out)" ];

postInstall = (stdenv.lib.optionalString guiSupport
''
Expand Down

0 comments on commit 9c580ce

Please sign in to comment.