mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
build mercurial with cf-private
This commit is contained in:
parent
ae49c91569
commit
ec09587e5b
@ -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)";
|
||||||
|
|
||||||
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user