summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/hel.nix b/hel.nix
index 92eee675..b1703583 100644
--- a/hel.nix
+++ b/hel.nix
@@ -59,13 +59,11 @@
59 nixpkgs.config.packageOverrides = pkgs: rec { 59 nixpkgs.config.packageOverrides = pkgs: rec {
60 libmbim = pkgs.stdenv.lib.overrideDerivation pkgs.libmbim (attrs: { 60 libmbim = pkgs.stdenv.lib.overrideDerivation pkgs.libmbim (attrs: {
61 patches = [ ./patches/attachment-0003.patch ]; 61 patches = [ ./patches/attachment-0003.patch ];
62 buildInputs = attrs.buildInputs ++ [ pkgs.automake114x pkgs.automake ]; 62 buildInputs = attrs.buildInputs ++ [ pkgs.automake ];
63 preConfigure = ''
64 pwd
65 '';
66 }); 63 });
67 libqmi = pkgs.stdenv.lib.overrideDerivation pkgs.libqmi (attrs: { 64 libqmi = pkgs.stdenv.lib.overrideDerivation pkgs.libqmi (attrs: {
68 patches = [ ./patches/attachment-0004.patch ./patches/attachment-0005.patch ]; 65 patches = [ ./patches/attachment-0004.patch ./patches/attachment-0005.patch ];
66 buildInputs = attrs.buildInputs ++ [ pkgs.automake ];
69 }); 67 });
70 }; 68 };
71 69