diff options
| author | Jan Tojnar <jtojnar@gmail.com> | 2021-12-05 03:53:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-05 03:53:25 +0100 |
| commit | 1b9a09cbf6a38915b5f888a7aee01fb4b4dc9feb (patch) | |
| tree | fc941296a3131c4fde430c5068cee0d47341d6d2 | |
| parent | Merge pull request #148660 from NixOS/backport-148193-to-staging-21.11 (diff) | |
| parent | Revert "neard: fix build" (diff) | |
| download | nixpkgs-1b9a09cbf6a38915b5f888a7aee01fb4b4dc9feb.tar.gz | |
Merge pull request #148662 from NixOS/backport-148658-to-staging-21.11
[Backport staging-21.11] Revert "neard: fix build"
| -rw-r--r-- | pkgs/servers/neard/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/neard/default.nix b/pkgs/servers/neard/default.nix index 9e9ccb9700ee..77c6f8839f71 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, python3Packages }: +{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python2Packages }: stdenv.mkDerivation rec { pname = "neard"; @@ -9,9 +9,9 @@ stdenv.mkDerivation rec { sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil"; }; - nativeBuildInputs = [ autoreconfHook pkg-config python3Packages.wrapPython ]; - buildInputs = [ systemd glib dbus libnl ] ++ (with python3Packages; [ python ]); - pythonPath = with python3Packages; [ pygobject3 dbus-python ]; + nativeBuildInputs = [ autoreconfHook pkg-config python2Packages.wrapPython ]; + buildInputs = [ systemd glib dbus libnl ] ++ (with python2Packages; [ python ]); + pythonPath = with python2Packages; [ pygobject2 dbus-python pygtk ]; strictDeps = true; |
