diff options
author | Alyssa Ross <hi@alyssa.is> | 2021-08-12 09:31:08 +0000 |
---|---|---|
committer | Alyssa Ross <hi@alyssa.is> | 2021-08-16 08:47:25 +0000 |
commit | cec682e0071148571e9ca7b8ecdab9477ea2215e (patch) | |
tree | 72f55f99f48203647f05c7f2dffbd71109768485 | |
parent | 769e648d243223613d008276bcac18a164302ba8 (diff) | |
download | nixpkgs-master.tar nixpkgs-master.tar.gz nixpkgs-master.tar.bz2 nixpkgs-master.tar.lz nixpkgs-master.tar.xz nixpkgs-master.tar.zst nixpkgs-master.zip |
This is already enabled in the original derivation, so overriding it to add it here just means we end up passing the option twice. Message-Id: <20210812093108.137327-1-hi@alyssa.is> Reviewed-by: Cole Helbling <cole.e.helbling@outlook.com>
-rw-r--r-- | pkgs/os-specific/linux/chromium-os/libqmi/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/chromium-os/libqmi/default.nix b/pkgs/os-specific/linux/chromium-os/libqmi/default.nix index b96b5224b57..7328642d0b4 100644 --- a/pkgs/os-specific/linux/chromium-os/libqmi/default.nix +++ b/pkgs/os-specific/linux/chromium-os/libqmi/default.nix @@ -15,7 +15,7 @@ libqmi.overrideAttrs ( # ModemManager tests fail with QRTR in Chromium OS 91. # Will hopefully be fixed in CrOS 92. - configureFlags = configureFlags ++ [ "--enable-gtk-doc" "--disable-qrtr" ]; + configureFlags = configureFlags ++ [ "--disable-qrtr" ]; passthru = passthru // { updateScript = ../update.py; |