nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 21 lines 464 B view raw
1{ callPackage 2, ... 3}: 4 5let 6 source = callPackage ./source.nix { }; 7 deps = callPackage ./deps.nix { }; 8in 9rec { 10 # resholve itself 11 resholve = callPackage ./resholve.nix { 12 inherit (source) rSrc version; 13 inherit (deps.oil) oildev; 14 inherit resholve-utils; 15 }; 16 # funcs to validate and phrase invocations of resholve 17 # and use those invocations to build packages 18 resholve-utils = callPackage ./resholve-utils.nix { 19 inherit resholve; 20 }; 21}