tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
neard: stay with python2
not tested with python3.
Frederik Rietdijk
4 years ago
c7d03061
56a031d2
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
servers
neard
default.nix
+6
-4
pkgs/servers/neard/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, pythonPackages }:
1
1
+
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python2Packages }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "neard-0.16";
···
8
8
sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil";
9
9
};
10
10
11
11
-
nativeBuildInputs = [ autoreconfHook pkg-config ];
12
12
-
buildInputs = [ systemd glib dbus libnl pythonPackages.python pythonPackages.wrapPython ];
13
13
-
pythonPath = [ pythonPackages.pygobject2 pythonPackages.dbus-python pythonPackages.pygtk ];
11
11
+
nativeBuildInputs = [ autoreconfHook pkg-config python2Packages.wrapPython ];
12
12
+
buildInputs = [ systemd glib dbus libnl ] ++ (with python2Packages; [ python ]);
13
13
+
pythonPath = with python2Packages; [ pygobject2 dbus-python pygtk ];
14
14
+
15
15
+
strictDeps = true;
14
16
15
17
configureFlags = [ "--disable-debug" "--enable-tools" "--enable-ese" "--with-systemdsystemunitdir=$out/lib/systemd/system" ];
16
18