Make super available in all-*.nix for override* use
This commit is contained in:
@@ -86,7 +86,7 @@ let
|
|||||||
# This matches what is done in nixpkgs (see pkgs/top-level/stage.nix).
|
# This matches what is done in nixpkgs (see pkgs/top-level/stage.nix).
|
||||||
#
|
#
|
||||||
knot = path: self: super:
|
knot = path: self: super:
|
||||||
let res = import path res self; in res;
|
let res = import path res super self; in res;
|
||||||
in
|
in
|
||||||
map knot [
|
map knot [
|
||||||
./temporary/all-temporary.nix
|
./temporary/all-temporary.nix
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
self: pkgs: with pkgs; {
|
# self - next package set (after our additions)
|
||||||
|
# super - prior package set (before our additions)
|
||||||
|
# pkgs - final package set (after everyone's additions)
|
||||||
|
#
|
||||||
|
self: super: pkgs: with pkgs; {
|
||||||
|
|
||||||
cryptominisat = callPackage ./cryptominisat.nix { };
|
cryptominisat = callPackage ./cryptominisat.nix { };
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
# Temporary stuff (e.g., upstream bug fixes that haven't landed)
|
# Temporary stuff (e.g., upstream bug fixes that haven't landed)
|
||||||
|
#
|
||||||
|
# self - next package set (after our additions)
|
||||||
|
# super - prior package set (before our additions)
|
||||||
|
# pkgs - final package set (after everyone's additions)
|
||||||
|
#
|
||||||
|
|
||||||
self: pkgs: with pkgs; {
|
self: super: pkgs: with pkgs; {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user