libliftoff: fix override mechanism by using callPackage
Before the change this override had no effect:
$ nix build --impure --expr 'with import ./. {}; libliftoff_0_4.override { stdenv = gcc14Stdenv; }'
After the change it applies new `gcc` and exposes the failure.
This commit is contained in:
@@ -22196,7 +22196,7 @@ with pkgs;
|
||||
|
||||
liblc3 = callPackage ../development/libraries/liblc3 { };
|
||||
|
||||
inherit (callPackages ../development/libraries/libliftoff { }) libliftoff_0_4 libliftoff_0_5;
|
||||
inherit (callPackage ../development/libraries/libliftoff { }) libliftoff_0_4 libliftoff_0_5;
|
||||
libliftoff = libliftoff_0_5;
|
||||
|
||||
liblqr1 = callPackage ../development/libraries/liblqr-1 {
|
||||
|
||||
Reference in New Issue
Block a user