mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
13 lines
244 B
Nix
13 lines
244 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
let
|
|
scope = pkgs.callPackage ./nix { };
|
|
in
|
|
scope.gradle2nix.overrideAttrs (attrs: {
|
|
passthru = (attrs.passthru or { }) // {
|
|
inherit (scope) buildGradlePackage buildMavenRepo gradleSetupHook;
|
|
};
|
|
})
|