build mercurial with cf-private

+4 -2
+3 -2
pkgs/applications/version-management/mercurial/default.nix
··· 1 1 { stdenv, fetchurl, python, makeWrapper, docutils, unzip, hg-git, dulwich 2 2 , guiSupport ? false, tk ? null, hg-crecord ? null, curses 3 - , ApplicationServices }: 3 + , ApplicationServices, cf-private }: 4 4 5 5 let 6 6 version = "3.5.1"; ··· 20 20 21 21 buildInputs = [ python makeWrapper docutils unzip ]; 22 22 23 - propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin ApplicationServices; 23 + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin 24 + [ ApplicationServices cf-private ]; 24 25 25 26 makeFlags = "PREFIX=$(out)"; 26 27
+1
pkgs/top-level/all-packages.nix
··· 12047 12047 mercurial = callPackage ../applications/version-management/mercurial { 12048 12048 inherit (pythonPackages) curses docutils hg-git dulwich; 12049 12049 inherit (darwin.apple_sdk.frameworks) ApplicationServices; 12050 + inherit (darwin) cf-private; 12050 12051 guiSupport = false; # use mercurialFull to get hgk GUI 12051 12052 }; 12052 12053