mercurial: Pin to Python 2

This commit is contained in:
Aneesh Agrawal 2016-09-26 11:41:54 -04:00
parent 777a6cafd9
commit e6897a3fb4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pythonPackages, makeWrapper, docutils, unzip { stdenv, fetchurl, python2Packages, makeWrapper, docutils, unzip
, guiSupport ? false, tk ? null , guiSupport ? false, tk ? null
, ApplicationServices, cf-private }: , ApplicationServices, cf-private }:
@ -6,7 +6,7 @@ let
# if you bump version, update pkgs.tortoisehg too or ping maintainer # if you bump version, update pkgs.tortoisehg too or ping maintainer
version = "3.9.1"; version = "3.9.1";
name = "mercurial-${version}"; name = "mercurial-${version}";
inherit (pythonPackages) curses docutils hg-git dulwich python; inherit (python2Packages) curses docutils hg-git dulwich python;
in in
stdenv.mkDerivation { stdenv.mkDerivation {