mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 01:16:57 +01:00
Merge pull request #169684 from armeenm/rabbitmq-server-python3
rabbitmq-server: switch to python3
This commit is contained in:
commit
6294d1da4a
1 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
, fetchurl
|
||||
, erlang
|
||||
, elixir
|
||||
, python2
|
||||
, python3
|
||||
, libxml2
|
||||
, libxslt
|
||||
, xmlto
|
||||
|
@ -35,8 +35,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-c6GpB6CSCHiU9hTC9FkxyTc1UpNWxx5iP3y2dbTUfS0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync ];
|
||||
buildInputs = [ erlang elixir python2 libxml2 libxslt glibcLocales ]
|
||||
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync python3 ];
|
||||
buildInputs = [ erlang elixir libxml2 libxslt glibcLocales ]
|
||||
++ lib.optionals stdenv.isDarwin [ AppKit Carbon Cocoa ];
|
||||
|
||||
outputs = [ "out" "man" "doc" ];
|
||||
|
|
Loading…
Reference in a new issue