Allow overriding dependencies in gradle.nix

This commit is contained in:
Tad Fisher
2024-05-24 14:24:41 -07:00
parent 4910251482
commit 799fb3debc
7 changed files with 137 additions and 438 deletions

View File

@@ -2,7 +2,6 @@
description = "Wrap Gradle builds with Nix";
inputs = {
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
};
@@ -13,7 +12,7 @@
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.default = pkgs.callPackage ./gradle2nix.nix {};
packages.default = pkgs.callPackage ./default.nix {};
apps.default = {
type = "app";