mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Better propagated/native/ buildInputs separation
svn path=/nixpkgs/trunk/; revision=29270
This commit is contained in:
parent
f887ecef57
commit
5aed28d802
1 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus, dbus_glib
|
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib
|
||||||
, udev, libnl1, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables, libtasn1
|
, udev, libnl1, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables
|
||||||
, libgcrypt, dnsmasq, avahi }:
|
, libgcrypt, dnsmasq, avahi }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
|
||||||
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
|
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
|
||||||
"--with-crypto=gnutls" "--disable-more-warnings" ];
|
"--with-crypto=gnutls" "--disable-more-warnings" ];
|
||||||
|
|
||||||
buildInputs = [ intltool wirelesstools pkgconfig dbus udev libnl1
|
buildInputs = [ wirelesstools udev libnl1 libuuid polkit ppp ];
|
||||||
libuuid polkit gnutls ppp libtasn1 libgcrypt ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ dbus_glib ];
|
propagatedBuildInputs = [ dbus_glib gnutls libgcrypt ];
|
||||||
|
|
||||||
|
buildNativeInputs = [ intltool pkgconfig ];
|
||||||
|
|
||||||
patches = [ ./nixos-purity.patch ];
|
patches = [ ./nixos-purity.patch ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue