Skip to content

Commit

Permalink
networkmanager: fix PPPD_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Nov 3, 2019
1 parent 0141bd3 commit e839313
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/tools/networking/network-manager/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, substituteAll, intltool, pkgconfig, dbus, dbus-glib
{ stdenv, fetchurl, substituteAll, intltool, pkgconfig, fetchpatch, dbus, dbus-glib
, gnome3, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables, python3, vala
, libgcrypt, dnsmasq, bluez5, readline, libselinux, audit
, gobject-introspection, modemmanager, openresolv, libndp, newt, libsoup
Expand Down Expand Up @@ -62,6 +62,13 @@ in stdenv.mkDerivation rec {
# Meson does not support using different directories during build and
# for installation like Autotools did with flags passed to make install.
./fix-install-paths.patch

# Fixes https://github.com/NixOS/nixpkgs/issues/72330
# Upstream MR: https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/323
(fetchpatch {
url = "https://gitlab.freedesktop.org/NetworkManager/NetworkManager/commit/ed03fcbd17a7f73faad2adf7bf21ae77ad93740d.patch";
sha256 = "1vv9c1i499900kjnisirby3jz9b99nwcm87r9x20xp4p73zpq2ry";
})
];

buildInputs = [
Expand Down

0 comments on commit e839313

Please sign in to comment.