mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
16 lines
351 B
Nix
16 lines
351 B
Nix
{
|
|
lib,
|
|
gradle,
|
|
newScope,
|
|
}:
|
|
|
|
lib.makeScope newScope (
|
|
self: with self; {
|
|
inherit gradle;
|
|
buildGradlePackage = callPackage ./build-gradle-package.nix { };
|
|
buildMavenRepo = callPackage ./build-maven-repo.nix { };
|
|
gradleSetupHook = callPackage ./gradle-setup-hook.nix { };
|
|
gradle2nix = callPackage ./gradle2nix.nix { };
|
|
}
|
|
)
|