mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
systemd: python module split out since v223
This commit is contained in:
parent
2ee0e45172
commit
2eb8c3e491
@ -3,14 +3,11 @@
|
|||||||
, glib, kbd, libxslt, coreutils, libgcrypt
|
, glib, kbd, libxslt, coreutils, libgcrypt
|
||||||
, kexectools, libmicrohttpd, linuxHeaders, libseccomp
|
, kexectools, libmicrohttpd, linuxHeaders, libseccomp
|
||||||
, autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
|
, autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
|
||||||
, pythonPackages ? null, pythonSupport ? false
|
|
||||||
, enableKDbus ? false
|
, enableKDbus ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
assert pythonSupport -> pythonPackages != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "228";
|
version = "228";
|
||||||
name = "systemd-${version}";
|
name = "systemd-${version}";
|
||||||
@ -32,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
by generating an autoconf'd tarball, but that's probably not
|
by generating an autoconf'd tarball, but that's probably not
|
||||||
worth it. */
|
worth it. */
|
||||||
autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
|
autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
|
||||||
] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml];
|
];
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
[ "--localstatedir=/var"
|
[ "--localstatedir=/var"
|
||||||
|
Loading…
Reference in New Issue
Block a user