about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/systemd
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2015-12-13 16:31:36 +0000
committerRodney Lorrimar <dev@rodney.id.au>2015-12-18 09:44:22 +0000
commit2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad (patch)
treebff821b3bc40bc0f6378eb6f164dc00d067a9211 /pkgs/os-specific/linux/systemd
parent2ee0e45172a2955b23941ccfc20496e56076e320 (diff)
downloadnixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar.gz
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar.bz2
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar.lz
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar.xz
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.tar.zst
nixlib-2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad.zip
systemd: python module split out since v223
Diffstat (limited to 'pkgs/os-specific/linux/systemd')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 54c04a8b3f28..2e742b4d82d4 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -3,14 +3,11 @@
 , glib, kbd, libxslt, coreutils, libgcrypt
 , kexectools, libmicrohttpd, linuxHeaders, libseccomp
 , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
-, pythonPackages ? null, pythonSupport ? false
 , enableKDbus ? false
 }:
 
 assert stdenv.isLinux;
 
-assert pythonSupport -> pythonPackages != null;
-
 stdenv.mkDerivation rec {
   version = "228";
   name = "systemd-${version}";
@@ -32,7 +29,7 @@ stdenv.mkDerivation rec {
          by generating an autoconf'd tarball, but that's probably not
          worth it. */
       autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
-    ] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml];
+    ];
 
   configureFlags =
     [ "--localstatedir=/var"