libnl: python is optional
This commit is contained in:
parent
45229e4410
commit
e9e4ca6b4a
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, file, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkg-config
|
{ stdenv, file, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkg-config
|
||||||
, pythonSupport ? false, swig ? null, python}:
|
, pythonSupport ? false, swig ? null, python ? null}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libnl";
|
pname = "libnl";
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
postBuild = lib.optionalString (pythonSupport) ''
|
postBuild = lib.optionalString (pythonSupport) ''
|
||||||
cd python
|
cd python
|
||||||
${python}/bin/python setup.py install --prefix=../pythonlib
|
${python.interpreter} setup.py install --prefix=../pythonlib
|
||||||
cd -
|
cd -
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue