mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
10 lines
175 B
Nix
10 lines
175 B
Nix
with (import <nixpkgs> { });
|
|
let
|
|
buildGradle = callPackage ./gradle-env.nix { };
|
|
in
|
|
buildGradle {
|
|
envSpec = ./gradle-env.json;
|
|
src = ./.;
|
|
gradleFlags = [ "tasks" ];
|
|
}
|