mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
purple-facebook: Remove unused mercurial dependency
Having python3 in the PATH and python2's setuptools and enum in PYTHONPATH breaks any python3 script. Having mercurial in buildInputs makes this condition true, breaking glib's python scripts, which after 2.58 use python3. Mercurial isn't actually needed in buildInputs, so removing mercurial is a simple fix.
This commit is contained in:
parent
52e61752ee
commit
f28ff4cf7f
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, fetchhg, pidgin, glib, json-glib, mercurial, autoreconfHook } :
|
||||
{ stdenv, fetchFromGitHub, fetchhg, pidgin, glib, json-glib, autoreconfHook }:
|
||||
|
||||
|
||||
let
|
||||
|
@ -53,7 +53,7 @@ in stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [pidgin glib json-glib mercurial];
|
||||
buildInputs = [ pidgin glib json-glib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
|
|
Loading…
Reference in a new issue