mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Revert "neard: fix build"
It breaks at runtime since it still depends on PyGTK. https://github.com/NixOS/nixpkgs/pull/148193 is the proper fix.
This commit is contained in:
parent
0c008f9c0d
commit
341032407f
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user