1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/misc/resholve/default.nix

19 lines
336 B
Nix
Raw Normal View History

{ callPackage
, ...
}:
let
source = callPackage ./source.nix { };
deps = callPackage ./deps.nix { };
in
rec {
resholve = callPackage ./resholve.nix {
inherit (source) rSrc;
inherit (source) version;
inherit (deps.oil) oildev;
};
resholvePackage = callPackage ./resholve-package.nix {
inherit resholve;
};
}