build mercurial with cf-private

This commit is contained in:
Jude Taylor 2015-10-11 10:30:13 -07:00
parent ae49c91569
commit ec09587e5b
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, python, makeWrapper, docutils, unzip, hg-git, dulwich { stdenv, fetchurl, python, makeWrapper, docutils, unzip, hg-git, dulwich
, guiSupport ? false, tk ? null, hg-crecord ? null, curses , guiSupport ? false, tk ? null, hg-crecord ? null, curses
, ApplicationServices }: , ApplicationServices, cf-private }:
let let
version = "3.5.1"; version = "3.5.1";
@ -20,7 +20,8 @@ stdenv.mkDerivation {
buildInputs = [ python makeWrapper docutils unzip ]; buildInputs = [ python makeWrapper docutils unzip ];
propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin ApplicationServices; propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin
[ ApplicationServices cf-private ];
makeFlags = "PREFIX=$(out)"; makeFlags = "PREFIX=$(out)";

View File

@ -12047,6 +12047,7 @@ let
mercurial = callPackage ../applications/version-management/mercurial { mercurial = callPackage ../applications/version-management/mercurial {
inherit (pythonPackages) curses docutils hg-git dulwich; inherit (pythonPackages) curses docutils hg-git dulwich;
inherit (darwin.apple_sdk.frameworks) ApplicationServices; inherit (darwin.apple_sdk.frameworks) ApplicationServices;
inherit (darwin) cf-private;
guiSupport = false; # use mercurialFull to get hgk GUI guiSupport = false; # use mercurialFull to get hgk GUI
}; };