summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-11-28 18:55:03 -0300
committerGitHub <noreply@github.com>2021-11-28 18:55:03 -0300
commita80798e6a2869f252d9af21397ea59e3f709ca8a (patch)
treea8ea01caf64440d8d022bc337eba416b9d405b00
parentparquet-tools: fix tests for arrow-cpp 6.0.1 (diff)
parentneard: fix build (diff)
downloadnixpkgs-a80798e6a2869f252d9af21397ea59e3f709ca8a.tar.gz
Merge pull request #147774 from NixOS/backport-147756-to-release-21.11
[Backport release-21.11] neard: fix build
-rw-r--r--pkgs/servers/neard/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/neard/default.nix b/pkgs/servers/neard/default.nix
index 77c6f8839f71..9e9ccb9700ee 100644
--- a/pkgs/servers/neard/default.nix
+++ b/pkgs/servers/neard/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python2Packages }:
+{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python3Packages }:
stdenv.mkDerivation rec {
pname = "neard";
@@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil";
};
- nativeBuildInputs = [ autoreconfHook pkg-config python2Packages.wrapPython ];
- buildInputs = [ systemd glib dbus libnl ] ++ (with python2Packages; [ python ]);
- pythonPath = with python2Packages; [ pygobject2 dbus-python pygtk ];
+ nativeBuildInputs = [ autoreconfHook pkg-config python3Packages.wrapPython ];
+ buildInputs = [ systemd glib dbus libnl ] ++ (with python3Packages; [ python ]);
+ pythonPath = with python3Packages; [ pygobject3 dbus-python ];
strictDeps = true;