mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
09d441d21c
Also track upstream .nix changes over same window.
22 lines
464 B
Nix
22 lines
464 B
Nix
{ callPackage
|
|
, ...
|
|
}:
|
|
|
|
let
|
|
source = callPackage ./source.nix { };
|
|
deps = callPackage ./deps.nix { };
|
|
in
|
|
rec {
|
|
# resholve itself
|
|
resholve = callPackage ./resholve.nix {
|
|
inherit (source) rSrc version;
|
|
inherit (deps.oil) oildev;
|
|
inherit resholve-utils;
|
|
};
|
|
# funcs to validate and phrase invocations of resholve
|
|
# and use those invocations to build packages
|
|
resholve-utils = callPackage ./resholve-utils.nix {
|
|
inherit resholve;
|
|
};
|
|
}
|