summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-16 15:09:55 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-16 15:09:55 +0200
commit0d8310c6f128269c8ed21f3c4cbc916c421ea086 (patch)
treee9bf835e3bcd6f6493719fc89f001a2e07adf042
parentd5afb16180151ce613d22007ec30c4d32d704c79 (diff)
downloadnixos-0d8310c6f128269c8ed21f3c4cbc916c421ea086.tar
nixos-0d8310c6f128269c8ed21f3c4cbc916c421ea086.tar.gz
nixos-0d8310c6f128269c8ed21f3c4cbc916c421ea086.tar.bz2
nixos-0d8310c6f128269c8ed21f3c4cbc916c421ea086.tar.xz
nixos-0d8310c6f128269c8ed21f3c4cbc916c421ea086.zip
patch all the things
-rw-r--r--hel.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index 0e2a00fb..53b91817 100644
--- a/hel.nix
+++ b/hel.nix
@@ -58,7 +58,10 @@
58 58
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 ./patches/attachment-0004.patch ./patches/attachment-0005.patch ]; 61 patches = [ ./patches/attachment-0003.patch ./patches/attachment-0005.patch ];
62 });
63 libqmi = pkgs.stdenv.lib.overrideDerivation pkgs.libqmi (attrs: {
64 patches = [ ./patches/attachment-0004.patch ./patches/attachment-0005.patch ];
62 }); 65 });
63 }; 66 };
64 67