From 886d1e23da7192bfe750faf5e3cbe598ad338d01 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Fri, 13 Jul 2018 12:29:47 -0400 Subject: [PATCH] opengl: callPackages overrides inner overide functions This behaviour is suitable for initial declarations, but not for re-exporting overriden pacakges. The outer layer is about the wrapper and not something that we want independtly expose anyway. --- pkgs/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/all-packages.nix b/pkgs/all-packages.nix index f25d775..0e93184 100644 --- a/pkgs/all-packages.nix +++ b/pkgs/all-packages.nix @@ -20,7 +20,7 @@ self: super: pkgs: with pkgs; { #meraculous = callPackage ./meraculous.nix { }; - inherit (callPackages ./opengl/default.nix { inherit super; }) mesa_noglu; + inherit (callPackage ./opengl/default.nix { inherit super; }) mesa_noglu; inherit (callPackages ./octopus/octopus.nix { }) octopus72; octopus7 = octopus72;